UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

17 lines (16 loc) 1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Barcode = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__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" }))); }); exports.Barcode.displayName = 'Barcode'; exports.BarcodeDimensions = { height: 24, width: 24 };