@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
26 lines (23 loc) • 1.49 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 SvgIconTwitter = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
viewBox: "0 0 21 17",
"aria-hidden": "true"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M18.558 4.546c.262 5.771-4.076 12.206-11.757 12.206-2.336 0-4.51-.678-6.341-1.843a8.371 8.371 0 006.124-1.699 4.135 4.135 0 01-3.863-2.85 4.189 4.189 0 001.867-.07C2.599 9.894 1.226 8.116 1.27 6.215a4.141 4.141 0 001.873.514 4.09 4.09 0 01-1.28-5.479 11.775 11.775 0 008.526 4.288C9.785 2.97 11.748.5 14.419.5c1.189 0 2.264.498 3.019 1.296a8.32 8.32 0 002.627-.995 4.118 4.118 0 01-1.818 2.27 8.34 8.34 0 002.375-.646 8.403 8.403 0 01-2.064 2.121z"
}));
};
SvgIconTwitter.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 SvgIconTwitter;