type Props = { color: string; }; const Circle = ({color}: Props) => { return ` `; }; export default Circle;