@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.
20 lines • 660 B
JavaScript
import { Box, badgeClasses, Badge as MuiBadge, styled } from '@mui/material';
export const SettingsList = styled(Box)(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(1),
}));
export const Badge = styled(MuiBadge)(({ theme }) => ({
display: 'flex',
alignItems: 'center',
gap: theme.spacing(1.25),
[`.${badgeClasses.badge}`]: {
width: 10,
height: 10,
// the following removes MUI styling so we can position the badge with flex
position: 'relative',
transform: 'translateX(0)',
borderRadius: '50%',
},
}));
//# sourceMappingURL=SettingCard.style.js.map