@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 662 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M1.99974 13.0001L1.9996 11.0002L18.1715 11.0002L14.2218 7.05044L15.636 5.63623L22 12.0002L15.636 18.3642L14.2218 16.9499L18.1716 13.0002L1.99974 13.0001Z"/>
</Svg>);
};
Icon.displayName = 'ArrowRightLongLine';
/**
* Remix Icon: Arrow Right Long Line
* @see {@link https://remixicon.com/icon/arrow-right-long-line Remix Icon Docs}
*/
export const ArrowRightLongLine = memo(Icon);