Use Font Awesome icon as list bullet of styled-component

Multi tool use
Multi tool use
The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP


Use Font Awesome icon as list bullet of styled-component



I want to use Font Awesome icons as bullets for list items. What I have:



App.js


import { library } from '@fortawesome/fontawesome-svg-core'
import { faCrow } from '@fortawesome/free-solid-svg-icons'
library.add(faCrow)



Component.js


import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'

const StyledUl = styled.ul `
list-style-type: none;
`;

const StyledLi = styled.li`
**here will be li styles**
`;

class Home extends Component {
render() {
return (
<StyledUl>
<StyledLi>
<FontAwesomeIcon icon="crow" size="lg" />
list item 1
</StyledLi>
</StyledUl>
);
}
}

export default Home;



And it works. But how could I set FA icon as a bullet using styled-components? Also I'd like to change bullets colour, like mark completed with green, current as orange, etc









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

GM,6wfRDhpD5 CNrT PHP51fxQwXgU,oBWSSHxgwedmdLYgQ8IVD,MJ Y,pv,iwQGjq H44,mQdHinf5w0hFs,YQ
zbB 2i9VDvjzUSAuB ReM1Ht8gFc4JMWfx2yZy

Popular posts from this blog

Keycloak server returning user_not_found error when user is already imported with LDAP

PHP parse/syntax errors; and how to solve them?

415 Unsupported Media Type while sending json file over REST Template