@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 659 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="M22.0003 13.0001L22.0004 11.0002L5.82845 11.0002L9.77817 7.05044L8.36396 5.63623L2 12.0002L8.36396 18.3642L9.77817 16.9499L5.8284 13.0002L22.0003 13.0001Z"/>
</Svg>);
};
Icon.displayName = 'ArrowLeftLongLine';
/**
* Remix Icon: Arrow Left Long Line
* @see {@link https://remixicon.com/icon/arrow-left-long-line Remix Icon Docs}
*/
export const ArrowLeftLongLine = memo(Icon);