9 lines
356 B
TypeScript
9 lines
356 B
TypeScript
|
|
import React from 'react';
|
|
|
|
export const ArrowRightIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M14 5l7 7m0 0l-7 7m7-7H3" />
|
|
</svg>
|
|
);
|