amirmoghi3.ir/components/SpecialistBar/index.tsx

23 lines
454 B
TypeScript

export const LinearSpeacialistBar = ({ title, percent }) => {
return (
<div>
<span className="text-secondary text-sm opacity-75">
{title}
</span>
<div className="h-2 w-full bg-dark-primary rounded-md z-0">
</div>
<div className={`relative -top-[8px] h-2 rounded-md bg-gold z-10`} style={{ width: percent + "%" }}>
</div>
</div>
)
}