@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 633 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="M20 16H22V22H16V20H8V22H2V16H4V8H2V2H8V4H16V2H22V8H20V16ZM18 16V8H16V6H8V8H6V16H8V18H16V16H18ZM4 4V6H6V4H4ZM4 18V20H6V18H4ZM18 4V6H20V4H18ZM18 18V20H20V18H18Z"/>
</Svg>);
};
Icon.displayName = 'Shape2Line';
/**
* Remix Icon: Shape 2 Line
* @see {@link https://remixicon.com/icon/shape-2-line Remix Icon Docs}
*/
export const Shape2Line = memo(Icon);