Files
bewell-in-ua/components/shared/store/stars.tsx
2025-03-11 02:54:09 +02:00

18 lines
616 B
TypeScript

import {Star} from 'lucide-react'
const startStroke = 1.5
const color = '#ffd139'
const size = 16
export default function RateStars() {
return (
<div className='bw-rating absolute bottom-1 left-3 inline-flex h-[32px] items-center gap-1'>
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} fill={color} />
<Star size={size} strokeWidth={startStroke} color={color} />
<Star size={size} strokeWidth={startStroke} color={color} />
</div>
)
}