@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.21 kB
JavaScript
import * as React from "react";
function CardReceiveIcon({
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: "M20 2.25a.75.75 0 0 1 .75.75v2.19l.72-.72a.75.75 0 1 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V3a.75.75 0 0 1 .75-.75m.938 16.5A5.5 5.5 0 0 1 16.5 21h-9a5.5 5.5 0 0 1-4.438-2.25zm.778-1.5H2.284A5.5 5.5 0 0 1 2 15.5v-7A5.5 5.5 0 0 1 7.5 3H12a3 3 0 0 1 3 3v.5a3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 1 3.5 3.5v2c0 .612-.1 1.2-.284 1.75M7.89 9.494c.476.546.474 1.467-.005 2.012a.75.75 0 1 0 1.127.99c.974-1.11.979-2.875.01-3.988a.75.75 0 0 0-1.132.986m-2.453.707a.49.49 0 0 1-.001.598.75.75 0 1 0 1.127.99c.631-.72.634-1.851.006-2.573a.75.75 0 0 0-1.132.985",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(CardReceiveIcon);
export default ForwardRef;