How can I change the color of an UIkit icon. I am using react components. Specifically, I want to change the color of the divider icon: https://getuikit.com/docs/divider
I have tried most of the answer in this question: Can I change the color of Font Awesome's icon color? None of them worked.
I also tried wrapping it in tags or
<i style={{color: 'rgba(0, 0, 0, 1)'}} className="uk-divider-icon"></i>
<div style={{color: 'rgba(0, 0, 0, 1)'}} className="uk-divider-icon"></div>
I want to change the color of the icon itself not background or other css, as these are easy to change using style
.
Thanks.