25 lines
966 B
TypeScript
25 lines
966 B
TypeScript
import { forwardRef } from 'react';
|
|
import type { IconProps } from './types';
|
|
|
|
export const ArrowNarrowRight = forwardRef<SVGSVGElement, IconProps>(function ArrowNarrowRight(
|
|
{ color = 'currentColor', ...props },
|
|
forwardedRef,
|
|
) {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
{...props}
|
|
ref={forwardedRef}
|
|
>
|
|
<path
|
|
d="M14.7071 5.29289C14.3166 4.90237 13.6834 4.90237 13.2929 5.29289C12.9024 5.68342 12.9024 6.31658 13.2929 6.70711L17.5858 11H4C3.44772 11 3 11.4477 3 12C3 12.5523 3.44772 13 4 13H17.5858L13.2929 17.2929C12.9024 17.6834 12.9024 18.3166 13.2929 18.7071C13.6834 19.0976 14.3166 19.0976 14.7071 18.7071L20.7071 12.7071C21.0976 12.3166 21.0976 11.6834 20.7071 11.2929L14.7071 5.29289Z"
|
|
fill={color}
|
|
/>
|
|
</svg>
|
|
);
|
|
});
|