@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 793 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const GalleryView2 = /* @__PURE__ */ memo(function GalleryView2(_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 1v6a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm1 6V5h5v4zm-1 4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm1 6v-4h5v4zm9-15a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1zm2 1v4h5V5zm-1 8a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm1 6v-4h5v4z"/>
</Svg>);
});
/**
* Remix Icon: Gallery View 2
* @see {@link https://remixicon.com/icon/gallery-view-2 Remix Icon Docs}
*/
export { GalleryView2 };