styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 877 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Barcode = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M11 7h1v10h-1zm6 0h2v10h-2zm-4 0h3v10h-3zM9 7h1v10H9zM5 7h3v10H5z", key: "k0" }),
React.createElement("path", { d: "M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zM8 17H5V7h3v10zm2 0H9V7h1v10zm2 0h-1V7h1v10zm4 0h-3V7h3v10zm3 0h-2V7h2v10z", key: "k1" })));
});
Barcode.displayName = 'Barcode';
export var BarcodeDimensions = { height: 24, width: 24 };