Files
plaidware-wms-web/src/assets/icons/X-close-icon.js
Llewellyn Dsouza b2a9081307 Added: Icons
2022-01-08 00:15:11 +05:30

20 lines
444 B
JavaScript

const XIcon = ({ width = 18, height = 18, color = '#ffffff', ...props }) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
viewBox="0 0 14 14"
fill="none"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...props}
>
<line x1="13" y1="1" x2="1" y2="13"></line>
<line x1="1" y1="1" x2="13" y2="13"></line>
</svg>
);
export default XIcon;