@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.
21 lines • 854 B
JavaScript
import { styled, switchClasses } from '@mui/material';
import { Switch } from '../Switch.js';
export const InfoMessageSwitch = styled(Switch)(({ theme }) => ({
[`.${switchClasses.switchBase}`]: {
[`&.${switchClasses.checked}`]: {
[`& + .${switchClasses.track}`]: {
backgroundColor: theme.vars.palette.info.main,
...theme.applyStyles('dark', {
backgroundColor: `rgba(${theme.vars.palette.info.mainChannel} / 0.84)`,
}),
},
},
[`&.Mui-focusVisible .${switchClasses.thumb}`]: {
color: theme.vars.palette.info.main,
...theme.applyStyles('dark', {
color: `rgba(${theme.vars.palette.info.mainChannel} / 0.84)`,
}),
},
},
}));
//# sourceMappingURL=GasRefuelMessage.style.js.map