import { type FC } from 'react' type Props = { color: string } const StatusCircle: FC = (props: Props) => { return (
) } export default StatusCircle