mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-22 20:09:21 +01:00
20 lines
310 B
JavaScript
20 lines
310 B
JavaScript
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;
|