summaryrefslogtreecommitdiffstats
path: root/src/components/Icons/Arrow/Arrow.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Icons/Arrow/Arrow.tsx')
-rw-r--r--src/components/Icons/Arrow/Arrow.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/Icons/Arrow/Arrow.tsx b/src/components/Icons/Arrow/Arrow.tsx
new file mode 100644
index 0000000..61edfca
--- /dev/null
+++ b/src/components/Icons/Arrow/Arrow.tsx
@@ -0,0 +1,18 @@
+import styles from './Arrow.module.scss';
+
+const ArrowIcon = () => {
+ return (
+ <svg
+ className={styles.icon}
+ viewBox="0 0 64.644997 23.476001"
+ xmlns="http://www.w3.org/2000/svg"
+ >
+ <path
+ d="m 0,15.45 40.008,-0.018 v 8.044 L 64.645,11.715 39.845,0 V 8.044 L 0,8.186 Z"
+ id="path2"
+ />
+ </svg>
+ );
+};
+
+export default ArrowIcon;