mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-19 21:39:22 +01:00
30 lines
373 B
Vue
30 lines
373 B
Vue
|
|
<script setup>
|
||
|
|
import {
|
||
|
|
CakeSlice,
|
||
|
|
Candy,
|
||
|
|
Apple,
|
||
|
|
Cookie,
|
||
|
|
Martini,
|
||
|
|
IceCream2,
|
||
|
|
Sandwich,
|
||
|
|
Wine,
|
||
|
|
Dessert,
|
||
|
|
} from "lucide-vue-next";
|
||
|
|
|
||
|
|
import "./icon.css";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="grid">
|
||
|
|
<CakeSlice />
|
||
|
|
<Candy />
|
||
|
|
<Apple />
|
||
|
|
<Cookie />
|
||
|
|
<Martini />
|
||
|
|
<IceCream2 />
|
||
|
|
<Sandwich />
|
||
|
|
<Wine />
|
||
|
|
<Dessert />
|
||
|
|
</div>
|
||
|
|
</template>
|