Skip to content

Commit 31a6430

Browse files
committed
New chevron icons
1 parent f02823e commit 31a6430

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export function ChevronExtraSmallDown({ className }: { className?: string }) {
2+
return (
3+
<svg className={className} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
4+
<path
5+
d="M15 6L9.75926 12.1142C9.36016 12.5798 8.63984 12.5798 8.24074 12.1142L3 6"
6+
stroke="currentColor"
7+
strokeWidth="2"
8+
strokeMiterlimit="1.00244"
9+
strokeLinecap="round"
10+
/>
11+
</svg>
12+
);
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export function ChevronExtraSmallUp({ className }: { className?: string }) {
2+
return (
3+
<svg className={className} viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
4+
<path
5+
d="M3 12L8.24074 5.8858C8.63984 5.42019 9.36016 5.42019 9.75926 5.8858L15 12"
6+
stroke="currentColor"
7+
strokeWidth="2"
8+
strokeMiterlimit="1.00244"
9+
strokeLinecap="round"
10+
/>
11+
</svg>
12+
);
13+
}

0 commit comments

Comments
 (0)