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.22 kB
const React = require("react"); function MessageQuestionIcon({ 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: "M2 9.5A5.5 5.5 0 0 1 7.5 4h9A5.5 5.5 0 0 1 22 9.5v5a5.5 5.5 0 0 1-5.5 5.5H3a1 1 0 0 1-1-1zm7.25.38c0-1.557 1.431-2.63 2.944-2.63h.103a2.7 2.7 0 0 1 .944.17c.773.288 1.311.897 1.465 1.623.156.736-.103 1.507-.744 2.04l-.657.546-.16.129-.012.01-.118.095a.4.4 0 0 0-.078.079c-.005.008-.065.1-.065.534a.75.75 0 0 1-1.5 0c0-.534.065-.972.301-1.342.115-.18.249-.31.364-.408.045-.039.135-.111.209-.17l.1-.081.657-.546c.228-.189.272-.402.236-.575-.039-.181-.187-.404-.524-.53a1.2 1.2 0 0 0-.418-.074h-.103c-.91 0-1.444.61-1.444 1.13a.75.75 0 1 1-1.5 0M12 14a1 1 0 1 0 0 2 1 1 0 0 0 0-2", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(MessageQuestionIcon); module.exports = ForwardRef;