import clsx from 'clsx'; import { FeatureId } from '@/portainer/feature-flags/enums'; import { Tooltip } from '@@/Tip/Tooltip'; import styles from './SwitchField.module.css'; import { Switch } from './Switch'; export interface Props { label: string; checked: boolean; onChange(value: boolean): void; name?: string; tooltip?: string; labelClass?: string; switchClass?: string; fieldClass?: string; dataCy?: string; disabled?: boolean; featureId?: FeatureId; switchValues?: { on: string; off: string; }; } export function SwitchField({ tooltip, checked, label, name, labelClass, fieldClass, dataCy, disabled, onChange, featureId, switchValues, switchClass, }: Props) { const toggleName = name ? `toggle_${name}` : ''; return ( ); }