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.01 kB
const React = require("react"); function CardIcon({ title, titleId, ...props }, svgRef) { return /*#__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: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M2 8.5A5.5 5.5 0 0 1 7.5 3h9A5.5 5.5 0 0 1 22 8.5v7a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 15.5z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M4 16h16M4 16h16M3 16h18" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M16.457 11.001c.722-.83.719-2.173-.007-3M14.004 10.294A1.24 1.24 0 0 0 14 8.708" })); } const ForwardRef = React.forwardRef(CardIcon); module.exports = ForwardRef;