Repository URL to install this package:
Version:
0.9.6 ▾
|
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const react_1 = __importDefault(require("react"));
const Vector_1 = __importDefault(require("atoms/Vector"));
const wording = {
description: 'Barcode is a machine readable code in the form of numbers and a pattern of parallel thick and thin combination of lines. It is printed on each commodity and used especially for stock control',
title: 'Barcode Icon',
vectorClassName: 'barcode',
};
class BarcodeIcon extends react_1.default.PureComponent {
render() {
return (react_1.default.createElement(Vector_1.default, Object.assign({}, this.props, wording),
react_1.default.createElement("g", null,
react_1.default.createElement("path", { d: "M1 0h2v22H1z" }),
react_1.default.createElement("path", { d: "M9 0h2v22H9z" }),
react_1.default.createElement("path", { d: "M12 0h2v22h-2z" }),
react_1.default.createElement("path", { d: "M4 0h3v22H4z" }),
react_1.default.createElement("path", { d: "M15 0h5v22h-5z" }),
react_1.default.createElement("path", { d: "M21 0h3v22h-3z" }))));
}
}
BarcodeIcon.defaultProps = {
width: '27px',
height: '25px',
viewBox: '-1 -1 27 25',
fill: '#000000',
};
exports.BarcodeIcon = BarcodeIcon;
exports.default = BarcodeIcon;
//# sourceMappingURL=BarcodeIcon.js.map