To change the fill color of React icons (e.g., from libraries like react-icons), here’s a solution based on common scenarios:
1. Inline Style
Most React icon libraries render SVG elements, which accept a style prop to override the fill color.
import { FaHeart } from 'react-icons/fa';
const MyComponent = () => (
<FaHeart style={{ fill: 'red' }} size={24} />
);
2. CSS Class
If the icon library applies a className, use CSS to target the SVG’s fill property.
import { FaHeart } from 'react-icons/fa';
const MyComponent = () => (
<FaHeart className="custom-icon" size={24} />
);
.custom-icon {
fill: blue;
}