UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 459 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgLayoutMasonryFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M22 9.999V20a1 1 0 01-1 1h-8V9.999h9zm-11 6V21H3a1 1 0 01-1-1v-4.001h9zM11 3v10.999H2V4a1 1 0 011-1h8zm10 0a1 1 0 011 1v3.999h-9V3h8z" /> </Svg> ); } export default SvgLayoutMasonryFill;