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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | interface IconProps {
height?: number;
width?: number;
fill?: string;
path_fill?: string;
}
export const SwitchIcon = ({
width = 24,
height = 24,
fill = "#9C9AA3",
}: IconProps) => {
return (
<svg
width={width}
height={height}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect
x="15"
y="12.5"
width="3.33333"
height="3.33333"
rx="1.66667"
transform="rotate(90 15 12.5)"
stroke={fill}
strokeWidth="1.2"
/>
<rect
x="5"
y="6.66675"
width="3.33333"
height="3.33333"
rx="1.66667"
transform="rotate(-90 5 6.66675)"
stroke={fill}
strokeWidth="1.2"
/>
<path
d="M6.66669 6.66675V10.1667C6.66669 12.0524 6.66669 12.9952 7.25247 13.581C7.83826 14.1667 8.78107 14.1667 10.6667 14.1667H11.6667"
stroke={fill}
strokeWidth="1.2"
/>
</svg>
);
};
|