14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
export function ArrowRightIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.5"
|
|
d="M14 5.75 20.25 12 14 18.25M19.5 12H3.75"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|