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