@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 393 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLayoutGridFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M22 12.999V20a1 1 0 0 1-1 1h-8v-8.001h9Zm-11 0V21H3a1 1 0 0 1-1-1v-7.001h9ZM11 3v7.999H2V4a1 1 0 0 1 1-1h8Zm10 0a1 1 0 0 1 1 1v6.999h-9V3h8Z" />
</Svg>
);
export default SvgLayoutGridFill;