@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
27 lines (24 loc) • 1.39 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 SvgIconRefresh = props => {
return /*#__PURE__*/React.createElement("svg", _extends({
"aria-hidden": "true",
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
width: "1em",
height: "1em"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15.324 4.445a8.25 8.25 0 00-5.808-.324 8.237 8.237 0 00-5.762 8.41l-2.488.164A10.733 10.733 0 0117.098 2.551L19.484 0l.637 7.074-7.492.25zm-.094 17.813c-1.05.328-2.14.496-3.222.496-1.766 0-3.52-.457-5.102-1.309L4.516 24l-.633-7.074 7.488-.25-2.691 2.879a8.25 8.25 0 0011.566-8.086l2.484-.164a10.729 10.729 0 01-7.5 10.953z",
fillRule: "evenodd"
}));
};
SvgIconRefresh.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 SvgIconRefresh;