@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 743 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="M2 3.00012L2.00008 5.00012L4.00004 5.00004L4.00004 19L2 19.0001L2.00008 21.0001L8.00004 21V19H6.00004L6.00004 5.00004L8 5.00012L8.00008 3.00012L2 3.00012ZM10.2 18H12.3541L13.5541 15H18.4459L19.6459 18H21.8L17 6H15L10.2 18ZM16 8.88517L17.6459 13H14.3541L16 8.88517Z"/>
</Svg>);
};
Icon.displayName = 'LineHeight2';
/**
* Remix Icon: Line Height 2
* @see {@link https://remixicon.com/icon/line-height-2 Remix Icon Docs}
*/
export const LineHeight2 = memo(Icon);