UNPKG

@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.

13 lines 488 B
import { IconButton as MuiIconButton, styled } from '@mui/material'; import { getContrastAlphaColor } from '../../utils/colors.js'; export const CardIconButton = styled(MuiIconButton)(({ theme }) => { return { padding: theme.spacing(0.5), backgroundColor: getContrastAlphaColor(theme, 0.04), '&:hover': { backgroundColor: getContrastAlphaColor(theme, 0.08), }, fontSize: '1rem', }; }); //# sourceMappingURL=CardIconButton.js.map