@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 612 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="M7.82843 10.9999H20V12.9999H7.82843L13.1924 18.3638L11.7782 19.778L4 11.9999L11.7782 4.22168L13.1924 5.63589L7.82843 10.9999Z"/>
</Svg>);
};
Icon.displayName = 'ArrowLeftLine';
/**
* Remix Icon: Arrow Left Line
* @see {@link https://remixicon.com/icon/arrow-left-line Remix Icon Docs}
*/
export const ArrowLeftLine = memo(Icon);