mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-18 13:27:44 +01:00
22 lines
347 B
JavaScript
22 lines
347 B
JavaScript
import { File } from "lucide-react";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="app">
|
|
<File size={48}>
|
|
<text
|
|
x={7.5}
|
|
y={19}
|
|
fontSize={8}
|
|
fontFamily="Verdana,sans-serif"
|
|
strokeWidth={1}
|
|
>
|
|
JS
|
|
</text>
|
|
</File>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|