import { useTheme } from '@mui/material/styles'; import { Cloud } from '@mui/icons-material'; interface IEnvironmentIcon { enabled: boolean; className?: string; } const EnvironmentIcon = ({ enabled, className }: IEnvironmentIcon) => { const theme = useTheme(); const title = enabled ? 'Environment enabled' : 'Environment disabled'; const container = { backgroundColor: enabled ? theme.palette.primary.light : theme.palette.grey[600], borderRadius: '50%', width: '28px', height: '28px', minWidth: '28px', display: 'flex', alignItems: 'center', justifyContent: 'center', marginRight: '0.5rem', }; const icon = { fill: '#fff', width: '17px', height: '17px', }; return (