@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.32 kB
JavaScript
const React = require("react");
function Message24HIcon({
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-1zm6.5.25c-.362 0-.75.337-.75.86a.75.75 0 0 1-1.5 0c0-1.25.961-2.36 2.25-2.36s2.25 1.11 2.25 2.36c0 1.307-.912 2.004-1.556 2.479l-.09.066c-.56.412-.955.702-1.169 1.095H10a.75.75 0 0 1 0 1.5H7.621a1.3 1.3 0 0 1-1.232-1.672v-.003c.32-1.04 1.164-1.65 1.754-2.077l.162-.117c.672-.495.945-.788.945-1.271 0-.523-.388-.86-.75-.86m7.424-1.45a1.295 1.295 0 0 0-1.458.564l-.004.007a169 169 0 0 0-2.037 3.487l-.001.004c-.232.41-.232.928 0 1.338.236.42.683.677 1.164.677h1.77V15a.75.75 0 0 0 1.5 0v-.623H17a.75.75 0 0 0 0-1.5h-.142V9.555a1.3 1.3 0 0 0-.934-1.255m-.566 1.994v2.583h-1.501c.476-.833.996-1.734 1.5-2.583",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(Message24HIcon);
module.exports = ForwardRef;