mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-20 01:29:20 +01:00
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
import { h } from "preact";
|
|
import { FolderLock } from "lucide-preact";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="app">
|
|
<FolderLock strokeWidth={1} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App; |