forked from acmucsd/acm-frontend-takehome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeftArrowIcon.tsx
14 lines (14 loc) · 1.31 KB
/
LeftArrowIcon.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default function LeftArrowIcon() {
return (
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M11 16.5L11.9831 15.5423L8.14688 11.6875L16.5 11.6875L16.5 10.3125L8.14688 10.3125L11.9831 6.48106L11 5.5L5.5 11L11 16.5Z"
fill="#C4C4C4"
/>
<path
d="M11 1.375C12.9036 1.375 14.7645 1.93949 16.3474 2.9971C17.9302 4.05471 19.1638 5.55793 19.8923 7.31667C20.6208 9.07541 20.8114 11.0107 20.4401 12.8777C20.0687 14.7448 19.152 16.4598 17.8059 17.8059C16.4598 19.152 14.7448 20.0687 12.8777 20.4401C11.0107 20.8114 9.07541 20.6208 7.31667 19.8923C5.55793 19.1638 4.05471 17.9302 2.9971 16.3474C1.93949 14.7645 1.375 12.9036 1.375 11C1.37791 8.44818 2.3929 6.00171 4.19731 4.19731C6.00172 2.3929 8.44818 1.37791 11 1.375ZM11 19.25C12.6317 19.25 14.2267 18.7661 15.5835 17.8596C16.9402 16.9531 17.9976 15.6646 18.622 14.1571C19.2464 12.6496 19.4098 10.9908 19.0915 9.3905C18.7731 7.79016 17.9874 6.32015 16.8336 5.16637C15.6798 4.01258 14.2098 3.22685 12.6095 2.90852C11.0091 2.59019 9.35035 2.75357 7.84286 3.37799C6.33537 4.00241 5.0469 5.05983 4.14037 6.41654C3.23385 7.77325 2.75 9.3683 2.75 11C2.75254 13.1872 3.62256 15.2842 5.16918 16.8308C6.7158 18.3774 8.81274 19.2474 11 19.25Z"
fill="#C4C4C4"
/>
</svg>
);
}