We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12d71b1 commit e907e1eCopy full SHA for e907e1e
1 file changed
src/features/common/assets/arrow-head-icon.component.tsx
@@ -0,0 +1,21 @@
1
+import React from "react";
2
+
3
+export const ArrowHeadIconComponent: React.FC = () => {
4
+ return (
5
+ <svg
6
+ width="16"
7
+ height="16"
8
+ viewBox="0 0 16 16"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ >
12
+ <path
13
+ d="M6 4L10 8L6 12"
14
+ stroke="currentColor"
15
+ stroke-width="1.5"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ ></path>
19
+ </svg>
20
+ );
21
+};
0 commit comments