UNPKG

@astraicons/react

Version:

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

34 lines 1.22 kB
const React = require("react"); const { forwardRef } = require("react"); const CardActionIcon = ({ 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", strokeLinejoin: "round", d: "M9.803 9.33c.841-.152 1.491-.968 1.453-1.823M8.66 7.71a.96.96 0 0 0 .768-.964", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "square", d: "m4.6 9.859 10.913 8.743", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { d: "m16.05 19.371 4.184-5.361a3.49 3.49 0 0 0-.542-4.908l-6.657-5.335a3.49 3.49 0 0 0-4.905.541l-4.364 5.45a3.49 3.49 0 0 0 .542 4.907l3.328 2.668 1.665 1.334 1.98 1.404a3.49 3.49 0 0 0 4.77-.7Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M5 21h14" })); const ForwardRef = forwardRef(CardActionIcon); module.exports = ForwardRef;