mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-22 11:29:24 +01:00
23 lines
379 B
JavaScript
23 lines
379 B
JavaScript
import { File } from "lucide-preact";
|
|
import { h } from "preact";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="app">
|
|
<File size={48}>
|
|
<text
|
|
x={7.5}
|
|
y={19}
|
|
font-size={8}
|
|
font-family="Verdana,sans-serif"
|
|
stroke-width={1}
|
|
>
|
|
JS
|
|
</text>
|
|
</File>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|