@astraicons/react
Version: 
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.03 kB
JavaScript
const React = require("react");
function CardSendIcon({
  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: "round",
    d: "M15 3H7.5A5.5 5.5 0 0 0 2 8.5v7A5.5 5.5 0 0 0 7.5 21h9a5.5 5.5 0 0 0 5.5-5.5V10"
  }), /*#__PURE__*/React.createElement("path", {
    strokeLinecap: "round",
    strokeLinejoin: "round",
    d: "m18 5 2-2 2 2M20 7V3M8.457 9c.722.83.719 2.174-.007 3M6.004 9.708c.382.439.38 1.149-.004 1.586"
  }), /*#__PURE__*/React.createElement("path", {
    strokeLinecap: "round",
    d: "M3 18h18"
  }));
}
const ForwardRef = React.forwardRef(CardSendIcon);
module.exports = ForwardRef;