We're using @emotion/styled to create some components. For example, I have a component called Flex that is a styled('div').
If I write:
<Canvas>
<Story name="Main">
{(args) => (
<Flex gap={3}>
<Square />
<Square />
<Square />
</Flex>
)}
</Story>
</Canvas>
I would expect the code that's displayed when you click Show code to be <Flex>...</Flex> but instead it's <Styled(div)>...</Styled(div)>. Is it possible for me to replace the code that's displayed?