Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 486x | interface IconProps {
height?: number;
width?: number;
fill?: string;
stroke?: string;
}
const StepperIcon = ({
width = 32,
height = 32,
fill = "#D1D1D0",
stroke = "#575353",
}: IconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="32" height="32" rx="16" fill={fill} />
<path
d="M14.2321 20.5L10.75 16.65M22 12.25C19.5612 14.8402 17.9838 16.5155 15.8828 18.7469"
stroke={stroke}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default StepperIcon;
|