mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-17 06:37:41 +01:00
32 lines
432 B
JavaScript
32 lines
432 B
JavaScript
import {
|
|
CakeSlice,
|
|
Candy,
|
|
Apple,
|
|
Cookie,
|
|
Martini,
|
|
IceCream2,
|
|
Sandwich,
|
|
Wine,
|
|
Dessert,
|
|
} from "lucide-preact";
|
|
import { h } from "preact";
|
|
import "./icon.css";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="grid">
|
|
<CakeSlice />
|
|
<Candy />
|
|
<Apple />
|
|
<Cookie />
|
|
<Martini />
|
|
<IceCream2 />
|
|
<Sandwich />
|
|
<Wine />
|
|
<Dessert />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|