@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
36 lines • 1.64 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 Flow = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 256 256"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", null, /*#__PURE__*/React.createElement("g", {
transform: "scale(2.56)"
}, /*#__PURE__*/React.createElement("circle", {
fill: "#00EF8B",
cx: "50",
cy: "50",
r: "50"
}), /*#__PURE__*/React.createElement("rect", {
x: "57.8",
y: "42.2",
fill: "#FFFFFF",
width: "14.1",
height: "14.1"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFFFFF",
d: "M43.7,61.6c0,2.9-2.4,5.3-5.3,5.3s-5.3-2.4-5.3-5.3c0-2.9,2.4-5.3,5.3-5.3c0,0,0,0,0,0h5.3V42.2 h-5.3C27.7,42.2,19,50.9,19,61.6S27.7,81,38.4,81s19.4-8.7,19.4-19.4l0,0v-5.3H43.7V61.6z"
}), /*#__PURE__*/React.createElement("path", {
fill: "#FFFFFF",
d: "M63.1,35.1H79V21H63.1c-10.7,0-19.4,8.7-19.4,19.4v1.8h14.1v-1.8C57.8,37.5,60.2,35.1,63.1,35.1 z"
}), /*#__PURE__*/React.createElement("polygon", {
fill: "#16FF99",
points: "57.8,42.2 57.8,42.2 43.7,42.2 43.7,56.3 57.8,56.3"
})))));
});
export default Flow;