UNPKG

@astraicons/react

Version:

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

25 lines 908 B
import * as React from "react"; import { forwardRef } from "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.305v-2.3a4 4 0 0 0-3.998-4.001h-3.2M21 13.805v3.02a4.18 4.18 0 0 1-4.181 4.179h-3.02M3.001 9.3V7a4 4 0 0 1 4.002-3.998h2.3M3 13.8V17a4 4 0 0 0 4 4.002h3.2" }), /*#__PURE__*/React.createElement("path", { d: "M5.998 7v10M7 7v10M14 7v10M10.002 7v10M11 7v10M18 7v10M17 7v10" })); const ForwardRef = forwardRef(BarcodeIcon); export default ForwardRef;