UNPKG

@astraicons/react

Version:

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

32 lines 1.06 kB
import * as React from "react"; import { forwardRef } from "react"; const CardIcon = ({ 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: "M3 8.889C3 6.189 5.216 4 7.95 4h8.1C18.784 4 21 6.189 21 8.889v6.222c0 2.7-2.216 4.889-4.95 4.889h-8.1C5.216 20 3 17.811 3 15.111z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M4 16h16", opacity: 0.4 }), /*#__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", opacity: 0.4 })); const ForwardRef = forwardRef(CardIcon); export default ForwardRef;