@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
32 lines • 1.01 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 React from 'react';
import { Polygon36x36 } from "../Polygon";
import USDCoin from "./USDCoin";
const PUSDC = /*#__PURE__*/React.forwardRef(({
iconRef,
style = {},
...props
}, ref) => {
return /*#__PURE__*/React.createElement("g", _extends({
style: {
position: 'relative',
...style
}
}, props, {
ref: iconRef || ref
}), /*#__PURE__*/React.createElement(USDCoin, {
style: {
width: '100%',
height: '100%'
}
}), /*#__PURE__*/React.createElement(Polygon36x36, {
style: {
position: 'absolute',
bottom: 0,
right: 0,
width: '40%',
height: '40%'
}
}));
});
export default PUSDC;