i'm new to styled-components and i want to use <IconContext.Provider> from react icons this is my react component:
<myComp>
<AiFillPlusCircle />
</myComp>
and this is my styled components code:
import { IconContext } from 'react-icons';
export const myComp= styled(IconContext.Provider)`
color: rgb(71, 71, 71) !important;
vertical-align: middle !important;
font-size: 1.7rem !important;
`;
but it doesn't work!
When you wrap some component with
styled
hoc, it just passesclassName
prop to your component.IconContext.Provider
expects onlyvalue
prop. This prop is object and can containstyle
,attr
orclassName
values. You can just passstyle
attribute to configure it like this:However, if you would like to use styled-components, it could be possible like this: