mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 14:47:41 +01:00
13 lines
192 B
JavaScript
13 lines
192 B
JavaScript
|
|
import { Beer } from "lucide-react";
|
||
|
|
import "./icon.css";
|
||
|
|
|
||
|
|
function App() {
|
||
|
|
return (
|
||
|
|
<div className="app">
|
||
|
|
<Beer className="my-beer-icon" />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default App;
|