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.

12 lines (11 loc) 440 B
import { ListItemButton as MuiListItemButton } from '@mui/material'; import { styled } from '@mui/material/styles'; import { getContrastAlphaColor } from '../utils'; export const ListItemButton = styled(MuiListItemButton)(({ theme }) => ({ borderRadius: theme.shape.borderRadius, paddingLeft: theme.spacing(1.5), height: 56, '&:hover': { backgroundColor: getContrastAlphaColor(theme.palette.mode, '4%'), }, }));