@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.16 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const CardActionIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.545 3.84a4.24 4.24 0 0 1 5.96-.659l6.656 5.336a4.24 4.24 0 0 1 .661 5.958l-3.42 4.385L4.111 8.126zm2.12 4.755c.47-.085.858-.571.837-1.05A.75.75 0 1 1 12 7.476c.055 1.229-.858 2.375-2.069 2.594a.75.75 0 0 1-.266-1.476M8.52 6.975a.2.2 0 0 0 .106-.073.2.2 0 0 0 .046-.119.75.75 0 1 1 1.499-.067A1.71 1.71 0 0 1 8.788 8.45a.75.75 0 0 1-.267-1.477",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
d: "m3.174 9.297 13.298 10.74a4 4 0 0 1-.202.213H19a.75.75 0 0 1 0 1.5H5a.75.75 0 0 1 0-1.5h5.237l-1.388-.985-5.01-4.015a4.24 4.24 0 0 1-.665-5.953"
}));
const ForwardRef = forwardRef(CardActionIcon);
export default ForwardRef;