UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

26 lines 944 B
const React = require("react"); const { forwardRef } = require("react"); const BarcodeIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21.001 9.304v-2.3a4 4 0 0 0-3.998-4h-.8l-2.4-.001M21 13.804v3.02a4.18 4.18 0 0 1-4.181 4.18l-3.02-.001M3.001 9.3V7a4 4 0 0 1 4.002-3.999h2.3M3 13.8V17a4 4 0 0 0 4 4.002h3.2" }), /*#__PURE__*/React.createElement("path", { d: "M5.998 7v10M7 7v10M14 7v10M10.002 7v10M11 7v10M18 7v10M16.998 7v10", opacity: 0.4 })); const ForwardRef = forwardRef(BarcodeIcon); module.exports = ForwardRef;