UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 1.34 kB
const React = require("react"); function DollarSendIcon({ 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", { d: "M22.53 4.22a.75.75 0 0 1-1.06 1.06l-.72-.72v2.19a.75.75 0 0 1-1.5 0V4.56l-.72.72a.75.75 0 1 1-1.06-1.06l2-2a.75.75 0 0 1 .528-.22h.004a.75.75 0 0 1 .528.22z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M21.672 10.21a10 10 0 1 1-7.269-7.167c.462.114.734.57.723 1.046-.088 4.052 3.28 5.261 5.586 5.4.441.027.848.294.96.722M12.75 7.75a.75.75 0 0 0-1.5 0V8H11a2.75 2.75 0 0 0 0 5.5h.25V16h-.313a1.25 1.25 0 0 1-1.21-.937.75.75 0 1 0-1.453.374 2.75 2.75 0 0 0 2.663 2.063h.313v.25a.75.75 0 0 0 1.5 0v-.25H13a2.75 2.75 0 1 0 0-5.5h-.25V9.5h.313a1.25 1.25 0 0 1 1.21.937.75.75 0 1 0 1.453-.374A2.75 2.75 0 0 0 13.063 8h-.313zM11 9.5h.25V12H11a1.25 1.25 0 0 1 0-2.5m1.75 6.5v-2.5H13a1.25 1.25 0 1 1 0 2.5z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(DollarSendIcon); module.exports = ForwardRef;