UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 398 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFullscreenFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M16 3h6v6h-2V5h-4V3zM2 3h6v2H4v4H2V3zm18 16v-4h2v6h-6v-2h4zM4 19h4v2H2v-6h2v4z" /> </Svg> ); } export default SvgFullscreenFill;