blob: 5c49a583274c0c768332bd2f73e26582074df894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
type direction =
| Left
| Right;
[@react.component]
let make = (~direction: direction=Right) => {
<svg
className={Cx.make([
"w-3 h-3 ms-2",
switch (direction) {
| Left => "transform -rotate-180"
| Right => ""
},
])}
ariaHidden=true
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 14 10">
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M1 5h12m0 0L9 1m4 4L9 9"
/>
</svg>;
};
|