@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
26 lines (23 loc) • 1.37 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 SvgIconQuestionmark = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
xmlns: "http://www.w3.org/2000/svg",
"aria-hidden": "true",
width: "1em",
height: "1em",
viewBox: "0 0 16 16"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 0a8 8 0 100 16A8 8 0 008 0zm0 12.17a.84.84 0 01-.83-.84.83.83 0 111.67 0c0 .46-.38.84-.84.84zm1.3-3.96c-.6.65-.62 1.01-.62 1.46H7.35c0-.99.01-1.42.95-2.32.38-.36.69-.65.64-1.21-.04-.54-.48-.82-.9-.82-.48 0-1.03.35-1.03 1.35H5.67c0-1.6.94-2.64 2.4-2.64.68 0 1.29.23 1.7.64.37.38.57.91.56 1.53-.01.92-.57 1.53-1.02 2.01z"
}));
};
SvgIconQuestionmark.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 SvgIconQuestionmark;