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.

54 lines (53 loc) 1.98 kB
import { Switch as MuiSwitch } from '@mui/material'; import { alpha, styled } from '@mui/material/styles'; import { switchClasses } from '@mui/material/Switch'; export const Switch = styled(MuiSwitch)(({ theme }) => ({ width: 42, height: 24, padding: 0, [`.${switchClasses.switchBase}`]: { padding: 0, margin: theme.spacing(0.25), transitionDuration: theme.transitions.duration.standard, [`&.${switchClasses.checked}`]: { transform: 'translateX(18px)', color: theme.palette.common.white, [`& + .${switchClasses.track}`]: { backgroundColor: theme.palette.primary.main, opacity: 1, border: 0, }, [`&.${switchClasses.disabled} + .${switchClasses.track}`]: { opacity: 0.5, }, }, [`&.Mui-focusVisible .${switchClasses.thumb}`]: { color: theme.palette.primary.main, border: '6px solid', borderColor: theme.palette.common.white, }, [`&.${switchClasses.disabled} .${switchClasses.thumb}`]: { color: theme.palette.mode === 'light' ? alpha(theme.palette.common.black, 0.12) : alpha(theme.palette.common.white, 0.12), }, [`&.${switchClasses.disabled} + .${switchClasses.track}`]: { opacity: theme.palette.mode === 'light' ? 0.7 : 0.3, }, }, [`.${switchClasses.thumb}`]: { boxSizing: 'border-box', width: 20, height: 20, }, [`.${switchClasses.track}`]: { borderRadius: 24 / 2, backgroundColor: theme.palette.mode === 'light' ? alpha(theme.palette.common.black, 0.16) : alpha(theme.palette.common.white, 0.16), opacity: 1, transition: theme.transitions.create(['background-color'], { duration: theme.transitions.duration.standard, }), }, }));