/ app / components / svg.tsx
svg.tsx
 1  // Feather icons by @colebemis
 2  // Licensed as MIT
 3  // Reuse allowed without attribution
 4  // https://github.com/feathericons/feather
 5  //
 6  // Brand & payment icons by @thewolfkit
 7  // Licensed as CC BY 4.0
 8  // Reuse allowed with attribution
 9  // https://thewolfkit.com
10  //
11  // Website by @username_ZAYDEK
12  // https://github.com/zaydek/feathericons.dev
13  
14  // https://feathericons.dev/?search=chevrons-right&iconset=feather&format=strict-tsx
15  export function ChevronsRight(props: JSX.IntrinsicElements["svg"]) {
16    return (
17      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" {...props}>
18        <polyline points="13 17 18 12 13 7" />
19        <polyline points="6 17 11 12 6 7" />
20      </svg>
21    );
22  }
23  
24  // https://feathericons.dev/?search=chevrons-left&iconset=feather&format=strict-tsx
25  export function ChevronsLeft(props: JSX.IntrinsicElements["svg"]) {
26    return (
27      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" {...props}>
28        <polyline points="11 17 6 12 11 7" />
29        <polyline points="18 17 13 12 18 7" />
30      </svg>
31    );
32  }