Files
lucide/docs/guide/vue/advanced/examples/filled-icon-example/App.vue
2025-10-20 20:25:34 +02:00

24 lines
518 B
Vue

<script setup>
import { Star, StarHalf } from "lucide-vue-next";
import "./icon.css";
</script>
<template>
<div class="app">
<div class="star-rating">
<div class="stars">
<Star
v-for="i in 5"
fill="#111"
strokeWidth="0"
/>
</div>
<div class="stars rating">
<Star fill="yellow" strokeWidth="0" />
<Star fill="yellow" strokeWidth="0" />
<StarHalf fill="yellow" strokeWidth="0" />
</div>
</div>
</div>
</template>