20 lines
407 B
TypeScript
20 lines
407 B
TypeScript
import { FC, SVGProps } from "react";
|
|
|
|
export const ArrowDownIcon: FC<SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg
|
|
{...props}
|
|
height="1em"
|
|
viewBox="0 0 18 10"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M16.5 1.25L9 8.75L1.5 1.25"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|