UNPKG

@astraicons/react

Version:

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

26 lines 1.08 kB
const React = require("react"); const { forwardRef } = require("react"); const ImportIcon = ({ 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", { d: "M3 11.5A2.5 2.5 0 0 1 5.5 9h1.577c.51 0 .923.413.923.923v.423a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-.423c0-.51.413-.923.923-.923H18.5a2.5 2.5 0 0 1 2.5 2.5v5a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m14 16-1.507 1.658a.667.667 0 0 1-.986 0L10 16M12 13.5V17M5 6.5V4.678C5 3.75 5.895 3 7 3h10c1.105 0 2 .751 2 1.678V6.5M4 9.5v-1a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1" })); const ForwardRef = forwardRef(ImportIcon); module.exports = ForwardRef;