geoview-core - v2.2.0
    Preparing search index...

    Variable SwitchConst

    Switch: (props: ExtendedSwitchProps) => Element = SwitchUI

    Type Declaration

      • (props: ExtendedSwitchProps): Element
      • Material-UI Switch component with integrated label using FormControlLabel.

        Wraps Material-UI's Switch with FormControlLabel for proper labeling and accessibility. Auto-generates unique IDs to associate labels with switch controls. All Material-UI Switch props are supported and passed through directly.

        Parameters

        • props: ExtendedSwitchProps

          Switch configuration (see ExtendedSwitchProps)

        Returns Element

        Switch component wrapped in FormControlLabel with label

        <Switch
        label="Enable notifications"
        checked={isEnabled}
        onChange={handleChange}
        />

        <Switch label="Disabled" disabled checked={false} />