Files
Frontend-Internal-Developer…/frontend/src/app/components/icons/switchIcons/unchecked.jsx
2026-03-02 11:58:06 +08:00

40 lines
753 B
JavaScript

import React from "react";
const UnCheckedIcon = ({
width = 20,
height = 20,
color = "white",
strokeWidth = 1.5,
viewBox = "0 0 28 28",
...props
}) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
viewBox={viewBox}
fill="none"
{...props}
>
<path
d="M20.7077 7.29199L7.29102 20.7087"
stroke={color}
strokeWidth={strokeWidth}
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M7.29102 7.29199L20.7077 20.7087"
stroke={color}
strokeWidth={strokeWidth}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default UnCheckedIcon;