UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 401 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgBarcodeFill(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M2 4h2v16H2V4zm4 0h2v16H6V4zm3 0h3v16H9V4zm4 0h2v16h-2V4zm3 0h2v16h-2V4zm3 0h3v16h-3V4z" /> </Svg> ); } export default SvgBarcodeFill;