@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 673 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M3 3a1 1 0 0 0-1 1v4h5.5V3zm6.5 0v5h5V3zm7 0v5H22V4a1 1 0 0 0-1-1zm5.5 7h-5.5v4H22zm0 6h-5.5v5H21a1 1 0 0 0 1-1zm-7.5 5v-5h-5v5zm-7 0v-5H2v4a1 1 0 0 0 1 1zM2 14h5.5v-4H2zm7.5-4h5v4h-5z"/>
</Svg>);
});
Icon.displayName = 'LayoutGrid2Fill';
/**
* Remix Icon: Layout Grid 2 Fill
* @see {@link https://remixicon.com/icon/layout-grid-2-fill Remix Icon Docs}
*/
export const LayoutGrid2Fill = Icon;