UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 389 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgQrScan2Fill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M15 3h6v6h-6V3zM9 3v6H3V3h6zm6 18v-6h6v6h-6zm-6 0H3v-6h6v6zM3 11h18v2H3v-2z" /> </Svg> ); } export default SvgQrScan2Fill;