@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
20 lines • 1.24 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 Fabric = /*#__PURE__*/React.forwardRef(({
iconRef,
...props
}, ref) => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 24 24"
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
fill: "#315FF3"
}), /*#__PURE__*/React.createElement("path", {
d: "M19.5889 6.01747H14.9184L14.2239 9.31237H17.2668L16.8557 11.3296H13.7998L13.6725 11.9473H16.7302L16.319 13.9646H13.2542L11.9939 20H6.73933L7.99625 13.9646H5L5.41127 11.9473H8.41621L8.54467 11.3296H5.53676L5.94783 9.31216H8.96503L9.54961 6.50437C9.86918 4.99708 11.08 4 12.5423 4H20L19.5889 6.01749L19.5889 6.01747Z",
fill: "white"
}));
});
export default Fabric;