react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 416 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBarcodeLine(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 0h1v16H6V4zm2 0h2v16H8V4zm3 0h2v16h-2V4zm3 0h2v16h-2V4zm3 0h1v16h-1V4zm2 0h3v16h-3V4z" />
</Svg>
);
}
export default SvgBarcodeLine;