@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 630 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="M6 6H18V18H6V6ZM6 2H8V5H6V2ZM6 19H8V22H6V19ZM2 6H5V8H2V6ZM2 16H5V18H2V16ZM19 6H22V8H19V6ZM19 16H22V18H19V16ZM16 2H18V5H16V2ZM16 19H18V22H16V19Z"/>
</Svg>);
};
Icon.displayName = 'Artboard2Fill';
/**
* Remix Icon: Artboard 2 Fill
* @see {@link https://remixicon.com/icon/artboard-2-fill Remix Icon Docs}
*/
export const Artboard2Fill = memo(Icon);