Added: Icons
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user