iconoir/packages/iconoir-react-native/src/Barcode.tsx
2022-01-09 10:00:00 +00:00

31 lines
661 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgBarcode(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
color="currentColor"
ref={svgRef}
{...props}
>
<Path
d="M5 19V5h1M12 19V5h1M9 5v14M16 5v14M19 5v14M6 5v14H5M13 5v14h-1"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
}
const ForwardRef = React.forwardRef(SvgBarcode);
export default ForwardRef;