UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 617 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const LayoutMasonryLine = /* @__PURE__ */ memo(function LayoutMasonryLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M22 20a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1zm-11-5H4v4h7zm9-4h-7v8h7zm-9-6H4v8h7zm9 0h-7v4h7z"/> </Svg>); }); /** * Remix Icon: Layout Masonry Line * @see {@link https://remixicon.com/icon/layout-masonry-line Remix Icon Docs} */ export { LayoutMasonryLine };