@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 941 B
JavaScript
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.111zM4 16h16"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M8.457 9c.722.83.719 2.174-.007 3M6.004 9.708c.382.439.38 1.149-.004 1.586"
}));
const ForwardRef = forwardRef(CardIcon);
export default ForwardRef;