UNPKG

@openocean.finance/widget

Version:

Openocean Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.

10 lines 388 B
import { jsx as _jsx } from "react/jsx-runtime"; import { styled } from '@mui/material/styles'; import { Card } from './Card/Card.js'; const StyledCard = styled(Card) ` // ... existing styles ... `; export const SelectTokenButton = ({ children, ...props }) => { return (_jsx(StyledCard, { as: "div", ...props, children: children })); }; //# sourceMappingURL=SelectTokenButton.js.map