UNPKG

@astraicons/react

Version:

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

23 lines 1.34 kB
import * as React from "react"; function SmsNotificationIcon({ 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: "M15.777 20H7.5A5.5 5.5 0 0 1 2 14.5V9.261c0-1.226.402-2.36 1.08-3.274l4.87 5.099-3.137 4.464a.75.75 0 1 0 1.227.863l2.966-4.221 1.108 1.16c.865.905 2.28.898 3.137-.014l.768-.82 2.736 3.896a.75.75 0 1 0 1.228-.862l-2.916-4.15.974-1.038.004-.004 1.553-1.681q.502.183 1.146.242c1.345.128 2.533 1.101 2.533 2.452V14.5a5.5 5.5 0 0 1-5.5 5.5m.595-12.205L14.945 9.34l-2.788 2.971a.645.645 0 0 1-.959.005L4.13 4.914A5.48 5.48 0 0 1 7.5 3.761h7.03c.532 0 .96.434.989.966.078 1.403.342 2.397.853 3.068M19.831 3c-1.197 0-2.168 1.022-2.168 2.284 0 1.26.97 2.283 2.168 2.283S22 6.545 22 5.284C22 4.022 21.029 3 19.83 3m-.723 2.284c0-.42.324-.762.723-.762.4 0 .723.341.723.762 0 .42-.323.76-.723.76s-.723-.34-.723-.76", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(SmsNotificationIcon); export default ForwardRef;