@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 676 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="M13.0001 10.9999L22.0002 10.9997L22.0002 12.9997L13.0001 12.9999L13.0001 21.9998L11.0001 21.9998L11.0001 12.9999L2.00004 13.0001L2 11.0001L11.0001 10.9999L11 2.00025L13 2.00024L13.0001 10.9999Z"/>
</Svg>);
};
Icon.displayName = 'AddLargeLine';
/**
* Remix Icon: Add Large Line
* @see {@link https://remixicon.com/icon/add-large-line Remix Icon Docs}
*/
export const AddLargeLine = memo(Icon);