Skip to content

Commit e907e1e

Browse files
committed
add arrow head icon
1 parent 12d71b1 commit e907e1e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)