export const withIdSource = ` import { withId, Button, type WithIdProps } from '@transferwise/components'; type DescribedButtonProps = { id?: string }; type DescribedButtonWithIdProps = WithIdProps; function DescribedButton({ id }: DescribedButtonWithIdProps) { return ( <>

Enter an amount in either GBP or PLN
This paragraph has id of {id}

); } export default withId(DescribedButton); `;