@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.08 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CardIcon = ({
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", {
d: "M21.505 16.75c-.71 2.32-2.89 4-5.455 4h-8.1c-2.566 0-4.744-1.68-5.455-4z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M16.05 3.25c3.139 0 5.7 2.516 5.7 5.639v6.222q-.001.07-.004.139H2.254q-.003-.069-.004-.139V8.89c0-3.123 2.561-5.639 5.7-5.639zM9.022 8.509a.75.75 0 0 0-1.13.984c.475.546.472 1.468-.006 2.013a.75.75 0 0 0 1.128.99c.973-1.109.978-2.874.008-3.987m-2.453.707a.75.75 0 1 0-1.13.985.49.49 0 0 1-.002.598.75.75 0 0 0 1.126.99 1.99 1.99 0 0 0 .006-2.573",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(CardIcon);
module.exports = ForwardRef;