import React from 'react' import { BulletIcon } from '@freesewing/react/components/Icon' const scores = [1, 2, 3, 4, 5] export const ControlScore = ({ control, color = 'base-content' }) => control ? (
{scores.map((score) => ( = score ? true : false} className="w-6 h-6 -ml-1" key={score} /> ))}
) : null