File tree Expand file tree Collapse file tree
apps/webapp/app/assets/icons Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments