We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ce3d6 commit d6c7056Copy full SHA for d6c7056
components/Cart/CartPage/CartItem.component.jsx
@@ -15,7 +15,29 @@ const CartItem = ({
15
return (
16
<tr className="bg-gray-100">
17
<td className="px-4 py-2 border">
18
- <SVGCloseX />
+ <span>
19
+ <svg
20
+ id="xsvg"
21
+ onClick={() => {
22
+ //setisExpanded(!isExpanded);
23
+ }}
24
+
25
+ xmlns="http://www.w3.org/2000/svg"
26
+ width="20"
27
+ height="20"
28
+ viewBox="0 0 20 20"
29
+ fill="none"
30
+ stroke="currentColor"
31
+ strokeWidth="2"
32
+ strokeLinecap="round"
33
+ strokeLinejoin="round"
34
+ className="feather feather-x"
35
+ >
36
+ <line x1="18" y1="6" x2="6" y2="18"></line>
37
+ <line x1="6" y1="6" x2="18" y2="18"></line>
38
+ </svg>
39
40
+ </span>
41
</td>
42
43
<img
0 commit comments