Capítulo 88 de 147
Learn how to combine multiple icons into a single icon nested SVG elements in your Preact application.
import { Scan, User } from "lucide-preact";
import { h } from "preact";
function App() {
return (
<div className="app">
<Scan size={48}>
<User
size={12}
x={6}
y={6}
absoluteStrokeWidth
/>
</Scan>
</div>
);
}
export default App;