@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
29 lines • 1.18 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : 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 SvgIcon from '@mui/material/SvgIcon';
import React from 'react';
const EOS = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 32 32"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("g", {
fill: "none",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("circle", {
cx: "16",
cy: "16",
r: "16",
fill: "#000",
fillRule: "nonzero"
}), /*#__PURE__*/React.createElement("path", {
stroke: "#FFF",
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: ".64",
d: "M10.886 11.61L16 27.667l-7.588-4.754 2.474-11.303L16 4.624v4.9L8.412 22.913h15.183L16.007 9.524v-4.9l5.113 6.986 2.475 11.303-7.588 4.754L21.12 11.61"
})));
});
export default EOS;