@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.3 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const CardSendIcon = ({
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: "M15.402 3.25A4 4 0 0 0 19 9c1.028 0 2.041-.362 2.75-1v7.111q-.001.07-.004.139H2.254q-.003-.069-.004-.139V8.89c0-3.123 2.561-5.639 5.7-5.639zm-6.38 5.259a.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"
}), /*#__PURE__*/React.createElement("path", {
d: "M18.22 7.082v-2.19l-.72.72a.75.75 0 1 1-1.06-1.06l2-2 .057-.052a.75.75 0 0 1 1.004.052l2 2a.75.75 0 1 1-1.06 1.06l-.72-.72v2.19a.75.75 0 1 1-1.5 0"
}));
const ForwardRef = forwardRef(CardSendIcon);
module.exports = ForwardRef;