Skip to content

Instantly share code, notes, and snippets.

@ZeldOcarina
Created January 20, 2023 13:44
Show Gist options
  • Save ZeldOcarina/db2d9b1934825bb1a4166f41e83169a3 to your computer and use it in GitHub Desktop.
Save ZeldOcarina/db2d9b1934825bb1a4166f41e83169a3 to your computer and use it in GitHub Desktop.
How to create a custom marker for an li with React Icons and Styled Components
styled.li`
&::marker {
color: var(--black);
// Use as a list symbol a React Icons icon
content: ${() => {
return css`
url("data:image/svg+xml;charset=UTF-8,${ReactDOMServer.renderToString(
<IoChevronForwardCircleOutline />
).replaceAll('"', "'")}")
`
}
};
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment