frontPanel/src/assets/icons/questionsPage/ArrowDownIcon.tsx

20 lines
407 B
TypeScript
Raw Normal View History

2023-09-25 13:43:15 +00:00
import { FC, SVGProps } from "react";
export const ArrowDownIcon: FC<SVGProps<SVGSVGElement>> = (props) => (
2023-12-31 02:53:25 +00:00
<svg
{...props}
height="1em"
viewBox="0 0 18 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
2023-09-25 13:43:15 +00:00
<path
d="M16.5 1.25L9 8.75L1.5 1.25"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);