Files
bewell-in-ua/components/shared/store/stars.tsx
2025-02-07 08:34:42 +02:00

17 lines
540 B
TypeScript

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