Switch
A control that indicates whether a setting is on or off.
View as MarkdownUsage guidelines
- Form controls must have an accessible name: It can be created using a
<label>element or theFieldcomponent. See Labeling a switch and the forms guide.
Anatomy
Import the component and assemble its parts:
import { Switch } from '@base-ui/react/switch';
<Switch.Root>
<Switch.Thumb />
</Switch.Root>Examples
Labeling a switch
An enclosing <label> is the simplest labeling pattern:
<label>
<Switch.Root />
Notifications
</label>Rendering as a native button
By default, <Switch.Root> renders a <span> element to support enclosing labels. Prefer rendering the switch as a native button when using sibling labels (htmlFor/id).
<div>
<label htmlFor="notifications-switch">Notifications</label>
<Switch.Root id="notifications-switch" nativeButton render={<button />}>
<Switch.Thumb />
</Switch.Root>
</div>Native buttons with wrapping labels are supported by using the render callback to avoid invalid HTML, so the hidden input is placed outside the label:
<Switch.Root
nativeButton
render={(buttonProps) => (
<label>
<button {...buttonProps} />
Notifications
</label>
)}
/>Form integration
Use Field to handle label associations and form integration:
<Form>
<Field.Root name="notifications">
<Field.Label>
<Switch.Root />
Notifications
</Field.Label>
</Field.Root>
</Form>API reference
Root
Represents the switch itself.
Renders a <span> element and a hidden <input> beside.
namestring—
- Name
- Description
Identifies the field when a form is submitted.
- Type
string | undefined
defaultCheckedbooleanfalse
- Name
- Description
Whether the switch is initially active.
To render a controlled switch, use the
checkedprop instead.- Type
boolean | undefined- Default
false
checkedboolean—
- Name
- Description
Whether the switch is currently active.
To render an uncontrolled switch, use the
defaultCheckedprop instead.- Type
boolean | undefined
onCheckedChangefunction—
- Name
- Description
Event handler called when the switch is activated or deactivated.
- Type
| (( checked: boolean, eventDetails: Switch.Root.ChangeEventDetails, ) => void) | undefined
valuestring—
- Name
- Description
The value submitted with the form when the switch is on. By default, switch submits the “on” value, matching native checkbox behavior.
- Type
string | undefined
formstring—
- Name
- Description
Identifies the form that owns the hidden input. Useful when the switch is rendered outside the form.
- Type
string | undefined
nativeButtonbooleanfalse
- Name
- Description
Whether the component renders a native
<button>element when replacing it via therenderprop. Set totrueif the rendered element is a native button.- Type
boolean | undefined- Default
false
uncheckedValuestring—
- Name
- Description
The value submitted with the form when the switch is off. By default, unchecked switches do not submit any value, matching native checkbox behavior.
- Type
string | undefined
disabledbooleanfalse
- Name
- Description
Whether the component should ignore user interaction.
- Type
boolean | undefined- Default
false
readOnlybooleanfalse
- Name
- Description
Whether the user should be unable to activate or deactivate the switch.
- Type
boolean | undefined- Default
false
requiredbooleanfalse
- Name
- Description
Whether the user must activate the switch before submitting a form.
- Type
boolean | undefined- Default
false
inputRefReact.Ref<HTMLInputElement>—
- Name
- Description
A ref to access the hidden
<input>element.- Type
React.Ref<HTMLInputElement> | undefined
idstring—
- Name
- Description
The id of the switch element.
- Type
string | undefined
classNamestring | function—
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: Switch.Root.State) => string | undefined) | undefined
styleReact.CSSProperties | function—
- Name
- Type
| React.CSSProperties | (( state: Switch.Root.State, ) => React.CSSProperties | undefined) | undefined
renderReactElement | function—
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: Switch.Root.State, ) => ReactElement) | undefined
data-checked
Present when the switch is checked.
data-unchecked
Present when the switch is not checked.
data-disabled
Present when the switch is disabled.
data-readonly
Present when the switch is readonly.
data-required
Present when the switch is required.
data-valid
Present when the switch is in valid state (when wrapped in Field.Root).
data-invalid
Present when the switch is in invalid state (when wrapped in Field.Root).
data-dirty
Present when the switch’s value has changed (when wrapped in Field.Root).
data-touched
Present when the switch has been touched (when wrapped in Field.Root).
data-filled
Present when the switch is active (when wrapped in Field.Root).
data-focused
Present when the switch is focused (when wrapped in Field.Root).
| Attribute | Description | |
|---|---|---|
data-checked | Present when the switch is checked. | |
data-unchecked | Present when the switch is not checked. | |
data-disabled | Present when the switch is disabled. | |
data-readonly | Present when the switch is readonly. | |
data-required | Present when the switch is required. | |
data-valid | Present when the switch is in valid state (when wrapped in Field.Root). | |
data-invalid | Present when the switch is in invalid state (when wrapped in Field.Root). | |
data-dirty | Present when the switch’s value has changed (when wrapped in Field.Root). | |
data-touched | Present when the switch has been touched (when wrapped in Field.Root). | |
data-filled | Present when the switch is active (when wrapped in Field.Root). | |
data-focused | Present when the switch is focused (when wrapped in Field.Root). | |
Switch.Root.StateHide
type SwitchRootState = {
/** Whether the switch is currently active. */
checked: boolean;
/** Whether the component should ignore user interaction. */
disabled: boolean;
/** Whether the user should be unable to activate or deactivate the switch. */
readOnly: boolean;
/** Whether the user must activate the switch before submitting a form. */
required: boolean;
/** Whether the field has been touched. */
touched: boolean;
/** Whether the field value has changed from its initial value. */
dirty: boolean;
/** Whether the field is valid. */
valid: boolean | null;
/** Whether the field has a value. */
filled: boolean;
/** Whether the field is focused. */
focused: boolean;
}Switch.Root.ChangeEventReasonHide
type SwitchRootChangeEventReason = 'none'Switch.Root.ChangeEventDetailsHide
type SwitchRootChangeEventDetails = {
/** The reason for the event. */
reason: 'none';
/** The native event associated with the custom event. */
event: Event;
/** Cancels Base UI from handling the event. */
cancel: () => void;
/** Allows the event to propagate in cases where Base UI will stop the propagation. */
allowPropagation: () => void;
/** Indicates whether the event has been canceled. */
isCanceled: boolean;
/** Indicates whether the event is allowed to propagate. */
isPropagationAllowed: boolean;
/** The element that triggered the event, if applicable. */
trigger: Element | undefined;
}Thumb
The movable part of the switch that indicates whether the switch is on or off.
Renders a <span>.
classNamestring | function—
- Name
- Description
CSS class applied to the element, or a function that returns a class based on the component’s state.
- Type
| string | ((state: Switch.Thumb.State) => string | undefined) | undefined
styleReact.CSSProperties | function—
- Name
- Type
| React.CSSProperties | (( state: Switch.Thumb.State, ) => React.CSSProperties | undefined) | undefined
renderReactElement | function—
- Name
- Description
Allows you to replace the component’s HTML element with a different tag, or compose it with another component.
Accepts a
ReactElementor a function that returns the element to render.- Type
| ReactElement | (( props: HTMLProps, state: Switch.Thumb.State, ) => ReactElement) | undefined
data-checked
Present when the switch is checked.
data-unchecked
Present when the switch is not checked.
data-disabled
Present when the switch is disabled.
data-readonly
Present when the switch is readonly.
data-required
Present when the switch is required.
data-valid
Present when the switch is in valid state (when wrapped in Field.Root).
data-invalid
Present when the switch is in invalid state (when wrapped in Field.Root).
data-dirty
Present when the switch’s value has changed (when wrapped in Field.Root).
data-touched
Present when the switch has been touched (when wrapped in Field.Root).
data-filled
Present when the switch is active (when wrapped in Field.Root).
data-focused
Present when the switch is focused (when wrapped in Field.Root).
| Attribute | Description | |
|---|---|---|
data-checked | Present when the switch is checked. | |
data-unchecked | Present when the switch is not checked. | |
data-disabled | Present when the switch is disabled. | |
data-readonly | Present when the switch is readonly. | |
data-required | Present when the switch is required. | |
data-valid | Present when the switch is in valid state (when wrapped in Field.Root). | |
data-invalid | Present when the switch is in invalid state (when wrapped in Field.Root). | |
data-dirty | Present when the switch’s value has changed (when wrapped in Field.Root). | |
data-touched | Present when the switch has been touched (when wrapped in Field.Root). | |
data-filled | Present when the switch is active (when wrapped in Field.Root). | |
data-focused | Present when the switch is focused (when wrapped in Field.Root). | |
Switch.Thumb.StateHide
type SwitchThumbState = {
/** Whether the switch is currently active. */
checked: boolean;
/** Whether the component should ignore user interaction. */
disabled: boolean;
/** Whether the user should be unable to activate or deactivate the switch. */
readOnly: boolean;
/** Whether the user must activate the switch before submitting a form. */
required: boolean;
/** Whether the field has been touched. */
touched: boolean;
/** Whether the field value has changed from its initial value. */
dirty: boolean;
/** Whether the field is valid. */
valid: boolean | null;
/** Whether the field has a value. */
filled: boolean;
/** Whether the field is focused. */
focused: boolean;
}