Added: Icons

This commit is contained in:
Llewellyn Dsouza
2022-01-08 00:15:11 +05:30
parent 25bf141987
commit b2a9081307
4 changed files with 31 additions and 8 deletions

View File

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