UNPKG

@astraicons/react

Version:

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

29 lines 882 B
const React = require("react"); const { forwardRef } = require("react"); const MessageIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("rect", { width: 18, height: 16, x: 3, y: 4, rx: 4.5 }), /*#__PURE__*/React.createElement("path", { d: "M8.197 12.2a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM13.199 12.2a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0ZM18.197 12.2a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0Z", opacity: 0.4 })); const ForwardRef = forwardRef(MessageIcon); module.exports = ForwardRef;