Import icons from the following icon packs as Styled Components: Bootstrap, Boxicons, Crypto Icons, Entypo, Eva Icons, Evil Icons, Feather, FluentUI System, Font Awesome, Foundation, Heroicons, Icomoon, Ionicons, Material Design, Octicons, Open Iconic, Remix, Simple Icons, Typicons, Zondicons
import styled from 'styled-components'
import {Zap} from '@styled-icons/octicons'
const RedZap = styled(Zap)`
color: red;
`
const App = () => <RedZap />