[Project card](https://github.com/buildo/react-components/projects/1?fullscreen=true#card-4435845) ## requirements FormattedText uses children for the content, making it difficult and ambiguous to type. Proposal: use a `content` or `value` prop so: ```tsx const content = 'foo \n bar'; // Before <FormattedText>{content}</FormattedText> // After <FormattedText content={content} /> ```