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

21 lines
544 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) => (
<svg {...props} height="1em" viewBox="0 0 11 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<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>
);