Capítulo 79 de 147
Learn how to adjust the color of icons in your Preact application using the color prop or by using parent elements text color value.
color propimport { h } from "preact";
import { Smile } from "lucide-preact";
function App() {
return (
<div className="app">
<Smile color="#3e9392" />
</div>
);
}
export default App;
color prop