13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
export const ChevronRightSvg = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="none"
|
|
stroke="currentColor"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="m9 6l6 6l-6 6"
|
|
/>
|
|
</svg>
|
|
);
|