@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
26 lines • 818 B
JavaScript
import { IconButton as MuiIconButton, styled } from '@mui/material';
import { getContrastAlphaColor } from '../../utils/colors.js';
import { ListItem as ListItemBase } from '../ListItem/ListItem.js';
export const ListItem = styled(ListItemBase)(() => ({
position: 'absolute',
top: 0,
left: 0,
}));
export const IconButton = styled(MuiIconButton)(({ theme }) => ({
lineHeight: 1,
fontSize: 12,
fontWeight: 400,
padding: theme.spacing(0.375, 0.375),
margin: theme.spacing(0, 0, 0, 0.25),
color: 'inherit',
backgroundColor: 'unset',
minWidth: 'unset',
borderRadius: theme.shape.borderRadiusTertiary,
'&:hover': {
backgroundColor: getContrastAlphaColor(theme, 0.04),
},
svg: {
fontSize: 14,
},
}));
//# sourceMappingURL=TokenList.style.js.map