vscode-inline-html
vscode-inline-html copied to clipboard
Add support for styled components
We often use this syntax:
const StyledDiv = styled.div`
color: red;
font-size: 20px;
`;
But this is the syntax highlighting I see:
It would be great to support that syntax out of the box for CSS strings while retaining support for CSS intellisense and Emmet, etc.:
styled.element`...`