@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 591 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Shape2Line = /* @__PURE__ */ memo(function Shape2Line(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20 16h2v6h-6v-2H8v2H2v-6h2V8H2V2h6v2h8V2h6v6h-2zm-2 0V8h-2V6H8v2H6v8h2v2h8v-2zM4 4v2h2V4zm0 14v2h2v-2zM18 4v2h2V4zm0 14v2h2v-2z"/>
</Svg>);
});
/**
* Remix Icon: Shape 2 Line
* @see {@link https://remixicon.com/icon/shape-2-line Remix Icon Docs}
*/
export { Shape2Line };