@delvicons/icons
Version:
DelvIcons - Comprehensive icon library with static and animated SVG icons for all frameworks
23 lines (21 loc) • 582 B
text/typescript
import React from 'react';
import { IconProps } from '../types';
export const ArrowRight: React.FC<IconProps> = ({
size = 24,
color = 'currentColor',
className = '',
animated = false,
...props
}) => (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="none"
className={`delv-icon delv-icon-arrow-right ${animated ? 'delv-animated' : ''} ${className}`}
{...props}
>
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m9 18 6-6-6-6"/>
</svg>
);
ArrowRight.displayName = 'ArrowRight';