UNPKG

@astraicons/react

Version:

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

30 lines 1.04 kB
const React = require("react"); const { forwardRef } = require("react"); const CardReceiveIcon = ({ 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: "M14.7 3.9H7.95A4.95 4.95 0 0 0 3 8.85v6.3a4.95 4.95 0 0 0 4.95 4.95h8.1A4.95 4.95 0 0 0 21 15.15V10.2" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m17 5 2 2 2-2M19 3v4M8.457 9c.722.83.719 2.174-.007 3M6.004 9.708c.382.439.38 1.149-.004 1.586" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M3.5 16h17" })); const ForwardRef = forwardRef(CardReceiveIcon); module.exports = ForwardRef;