@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
36 lines (33 loc) • 2.7 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 SvgIconSlack = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
"aria-hidden": "true",
viewBox: "0 0 512 512",
xmlns: "http://www.w3.org/2000/svg",
fillRule: "evenodd",
clipRule: "evenodd",
strokeLinejoin: "round",
strokeMiterlimit: 2,
width: "1em",
height: "1em"
}, props), /*#__PURE__*/React.createElement("g", {
fillRule: "nonzero"
}, /*#__PURE__*/React.createElement("path", {
d: "M107.57 323.544c0 29.603-24.182 53.785-53.785 53.785C24.183 377.329 0 353.147 0 323.544c0-29.602 24.183-53.785 53.785-53.785h53.785v53.785zM134.671 323.544c0-29.602 24.183-53.785 53.785-53.785 29.603 0 53.785 24.183 53.785 53.785v134.671c0 29.603-24.182 53.785-53.785 53.785-29.602 0-53.785-24.182-53.785-53.785V323.544zM188.456 107.57c-29.602 0-53.785-24.182-53.785-53.785C134.671 24.183 158.854 0 188.456 0c29.603 0 53.785 24.183 53.785 53.785v53.785h-53.785zM188.456 134.671c29.603 0 53.785 24.183 53.785 53.785 0 29.603-24.182 53.785-53.785 53.785H53.785C24.183 242.241 0 218.059 0 188.456c0-29.602 24.183-53.785 53.785-53.785h134.671z"
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M404.43 188.456c0-29.602 24.183-53.785 53.785-53.785 29.603 0 53.785 24.183 53.785 53.785 0 29.603-24.182 53.785-53.785 53.785H404.43v-53.785zM377.329 188.456c0 29.603-24.182 53.785-53.785 53.785-29.602 0-53.785-24.182-53.785-53.785V53.785C269.759 24.183 293.942 0 323.544 0c29.603 0 53.785 24.183 53.785 53.785v134.671z"
})), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("path", {
d: "M323.544 404.43c29.603 0 53.785 24.183 53.785 53.785 0 29.603-24.182 53.785-53.785 53.785-29.602 0-53.785-24.182-53.785-53.785V404.43h53.785zM323.544 377.329c-29.602 0-53.785-24.182-53.785-53.785 0-29.602 24.183-53.785 53.785-53.785h134.671c29.603 0 53.785 24.183 53.785 53.785 0 29.603-24.182 53.785-53.785 53.785H323.544z"
}))));
};
SvgIconSlack.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 SvgIconSlack;