@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 960 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.5 3A5.5 5.5 0 0 0 2 8.5v6.75h20V8.5A5.5 5.5 0 0 0 16.5 3zm14.357 13.75H2.143A5.5 5.5 0 0 0 7.5 21h9a5.5 5.5 0 0 0 5.357-4.25m-5.97-8.254c.478.545.48 1.466.004 2.012a.75.75 0 0 0 1.131.986c.97-1.113.965-2.879-.009-3.988a.75.75 0 1 0-1.127.99m-2.45.707a.49.49 0 0 1 .001.598.75.75 0 0 0 1.132.985 1.99 1.99 0 0 0-.006-2.573.75.75 0 1 0-1.127.99",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(CardIcon);
export default ForwardRef;