2023-09-11 06:15:28 +00:00
|
|
|
type Props = {
|
|
|
|
width?: string;
|
|
|
|
height?: string;
|
|
|
|
className?: string;
|
|
|
|
color?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const StateGroupUnstartedIcon: React.FC<Props> = ({
|
|
|
|
width = "20",
|
|
|
|
height = "20",
|
|
|
|
className,
|
|
|
|
color = "#3a3a3a",
|
|
|
|
}) => (
|
|
|
|
<svg
|
|
|
|
height={height}
|
|
|
|
width={width}
|
|
|
|
className={className}
|
|
|
|
viewBox="0 0 16 16"
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
>
|
2023-09-20 06:54:52 +00:00
|
|
|
<circle cx="8" cy="8" r="7.4" stroke={color} strokeWidth="1.2" />
|
2023-09-11 06:15:28 +00:00
|
|
|
</svg>
|
|
|
|
);
|