@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
33 lines (30 loc) • 1.79 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from "react";
import PropTypes from "prop-types";
const SvgIconMessage = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
"aria-hidden": "true",
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
viewBox: "0 0 34.8 33"
}, props), /*#__PURE__*/React.createElement("style", null, ".icon-message_svg__st1{fill-rule:evenodd;clip-rule:evenodd;fill:#fff}"), /*#__PURE__*/React.createElement("path", {
d: "M17.4.4C8 .4.4 7.2.4 15.7c0 3.1 1 6 2.8 8.4-.2 2.8-.9 6.7-2.8 8.6 0 0 5.8-.8 9.8-3.2 2.2.9 4.6 1.4 7.2 1.4 9.4 0 17-6.8 17-15.3S26.8.4 17.4.4",
fillRule: "evenodd",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("g", {
id: "icon-message_svg__dots"
}, /*#__PURE__*/React.createElement("path", {
className: "icon-message_svg__st1",
d: "M10.9 16.1c0 1.4-1.2 2.6-2.6 2.6s-2.6-1.2-2.6-2.6 1.2-2.6 2.6-2.6 2.6 1.1 2.6 2.6M20.5 16.1c0 1.4-1.2 2.6-2.6 2.6-1.4 0-2.6-1.2-2.6-2.6s1.2-2.6 2.6-2.6c1.4-.1 2.6 1.1 2.6 2.6M30.1 16.1c0 1.4-1.2 2.6-2.6 2.6s-2.6-1.2-2.6-2.6 1.2-2.6 2.6-2.6 2.6 1.1 2.6 2.6"
})));
};
SvgIconMessage.propTypes = process.env.NODE_ENV !== "production" ? {
title: PropTypes.string,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
className: PropTypes.string,
fill: PropTypes.string,
label: PropTypes.string
} : {};
export default SvgIconMessage;