@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
36 lines • 987 B
JavaScript
import * as React from "react";
function CardIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "square",
d: "M3 16h18",
opacity: 0.4
}), /*#__PURE__*/React.createElement("rect", {
width: 20,
height: 18,
x: 2,
y: 3,
rx: 5.5
}), /*#__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 = React.forwardRef(CardIcon);
export default ForwardRef;