Files

12 lines
202 B
JavaScript
Raw Permalink Normal View History

2025-11-19 23:24:08 +01:00
import { h } from "preact";
import { FolderLock } from "lucide-preact";
2025-11-04 17:35:43 +01:00
function App() {
return (
<div className="app">
<FolderLock strokeWidth={1} />
</div>
);
}
export default App;