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

27 lines
567 B
TypeScript
Raw Normal View History

2023-09-20 17:39:17 +00:00
import { FC, SVGProps } from "react";
export const DoubleArrowRight: FC<SVGProps<SVGSVGElement>> = (props) => (
2023-12-31 02:53:25 +00:00
<svg
{...props}
height="1em"
viewBox="0 0 11 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
2023-09-20 17:39:17 +00:00
<path
d="M1.5 1.5L5.5 6L1.5 10.5"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M5.5 1.5L9.5 6L5.5 10.5"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);