@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 601 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 2H7V7H2V2ZM2 17H7V22H2V17ZM17 2H22V7H17V2ZM17 17H22V22H17V17ZM8 4H16V6H8V4ZM4 8H6V16H4V8ZM18 8H20V16H18V8ZM8 18H16V20H8V18Z"/>
</Svg>);
};
Icon.displayName = 'Shape2Fill';
/**
* Remix Icon: Shape 2 Fill
* @see {@link https://remixicon.com/icon/shape-2-fill Remix Icon Docs}
*/
export const Shape2Fill = memo(Icon);