Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import * as React from 'react';
import { fromPropsToIdentifier } from '../deps';
import Vector from '../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',
    identifier: 'barcode',
};
/**
 * @todo would be nice to convert the fill vs stroke easily?
 */
class BarCodeIcon extends React.PureComponent {
    render() {
        const identifier = fromPropsToIdentifier(wording);
        return (React.createElement(Vector, Object.assign({ width: "44px", height: "39px", viewBox: "0 0 30 30" }, this.props, wording, { namespace: identifier }),
            React.createElement("g", { fill: "#535353" },
                React.createElement("path", { d: "M1 0h2v22H1z" }),
                React.createElement("path", { d: "M9 0h2v22H9z" }),
                React.createElement("path", { d: "M12 0h2v22h-2z" }),
                React.createElement("path", { d: "M4 0h3v22H4z" }),
                React.createElement("path", { d: "M15 0h5v22h-5z" }),
                React.createElement("path", { d: "M21 0h3v22h-3z" }))));
    }
}
export { BarCodeIcon };
export default BarCodeIcon;
//# sourceMappingURL=BarCodeIcon.js.map