27 lines
567 B
TypeScript
27 lines
567 B
TypeScript
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>
|
|
);
|