@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.
28 lines • 937 B
JavaScript
import { Box, styled, Typography } from '@mui/material';
import { PageContainer } from '../PageContainer.js';
export const TokenDetailsSheetContainer = styled(PageContainer)(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(2),
paddingTop: theme.spacing(3),
paddingBottom: theme.spacing(3),
}));
export const TokenDetailsSheetHeader = styled(Box)(({ theme }) => ({
display: 'flex',
flexDirection: 'row',
alignItems: 'flex-start',
justifyContent: 'space-between',
gap: theme.spacing(2),
}));
export const Label = styled(Typography)(({ theme }) => ({
fontWeight: 500,
fontSize: '12px',
lineHeight: '16px',
color: theme.vars.palette.text.secondary,
}));
export const MetricContainer = styled(Box)(({ theme }) => ({
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(1),
}));
//# sourceMappingURL=TokenDetailsSheetContent.style.js.map