I am using styled component library to style my website. I want to do changes in my imported react icon component. for example: if I am use normal CSS then I can easy make changes in
<i class="fab fa-facebook"></i>
by targeting <i> tag in CSS.
but in react I am using react-icon library and i used that icon as component. for example:
<FaGithub />
how can I make changes like font-size and line-height in that component without using inline CSS and using styled component.