aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Icons/Arrow/Arrow.tsx
blob: 61edfcaf6ae0d07d740e7eed8847aa8e0ba0d3b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;