I have a typescript file that builds css using Emotion.
Can I pass a custom React component to css psuedo-element content like this: This customReactComponent is an SvgImage wrapped as a ReactComponent.
&:after {
position: absolute;
content: '${(<CustomReactComponent />)}';
}
Is it possible?