mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-21 23:39:21 +01:00
24 lines
518 B
Vue
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>
|