@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 629 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="M14 10v4h-4v-4zm2 0h5v4h-5zm-2 11h-4v-5h4zm2 0v-5h5v4a1 1 0 0 1-1 1zM14 3v5h-4V3zm2 0h4a1 1 0 0 1 1 1v4h-5zm-8 7v4H3v-4zm0 11H4a1 1 0 0 1-1-1v-4h5zM8 3v5H3V4a1 1 0 0 1 1-1z"/>
</Svg>);
});
Icon.displayName = 'GridFill';
/**
* Remix Icon: Grid Fill
* @see {@link https://remixicon.com/icon/grid-fill Remix Icon Docs}
*/
export const GridFill = Icon;