Skip to content

Toggle button API

Cimpress UI exports three toggle-button-related components:

  • ToggleButton: displays a toggle button that has a visible label
  • ToggleIconButton: displays a toggle button that has no visible label (icon-only)
  • ToggleButtonGroup: container component that groups related toggle buttons together, providing a shared label, optional description, error handling, and state management.
import { ToggleButton, ToggleIconButton, ToggleButtonGroup } from '@cimpress-ui/react';

This component can be used in a controlled or uncontrolled way.

In the controlled way, this component doesn’t maintain its own internal state, and its value is provided by the parent component. Use the controlled way when you need to be able to change the state of this component in other parts of your application.

In the uncontrolled way, this component maintains its own internal state, and can optionally notify the parent component when its internal state changes. Use the uncontrolled way when you don’t need to change the state of this component in other parts of your application.

The toggle button state can be changed by pressing Enter or Space, similar to a native HTML checkbox.

ToggleButtonGroup is a single tab stop within the page’s tab order. Use the Tab key to navigate to the group, and the arrow keys to navigate between toggle buttons within the group.

ToggleButton and ToggleButtonGroup require a textual label to remain accessible to assistive technologies. ToggleIconButton should have an aria-label prop defined to identify the function of the button to assistive technologies. See our accessibility guide for more details.

The toggle button label must remain the same regardless of the selection state.

Selection state of toggle buttons within ToggleButtonGroup cannot be set individually. Please use ToggleButtonGroup’s selectedKeys/defaultSelectedKeys props instead.

// This won't work! :(
<ToggleButtonGroup label="Text alignment">
<ToggleButton value="left">Left</ToggleButton>
<ToggleButton value="center">Center</ToggleButton>
<ToggleButton value="right" defaultSelected>Right</ToggleButton>
</ToggleButtonGroup>
// But this will :)
<ToggleButtonGroup label="Text alignment" defaultSelectedKeys={['right']}>
<ToggleButton value="left">Left</ToggleButton>
<ToggleButton value="center">Center</ToggleButton>
<ToggleButton value="right">Right</ToggleButton>
</ToggleButtonGroup>

Toggle button, toggle icon button, and toggle button group can integrate with native HTML forms. See our forms guide to learn how to work with forms.

Displays a labelled button that allows users to toggle between two states. Can be used standalone, or as part of ToggleButtonGroup.

See toggle button usage guidelines.

Ref<HTMLButtonElement>

The ref type for this component.

ToggleButtonProps
StringLikeChildren

The text displayed on the button. Must remain the same regardless of selection state.

'small' | 'medium' | 'large'

The size of the button.

Defaults to 'medium' .
boolean

Whether the button should take up the whole available width.

Defaults to false .
ReactNode

An icon displayed before the button text.

ReactNode

An icon displayed after the button text.

string

The <form> element to associate the input with. The value of this attribute must be the id of a <form> in the same document. See MDN.

string

The name of the input element, used when submitting an HTML form. See MDN.

string

The value of the input element, used when submitting an HTML form. See MDN.

When used in a ToggleButtonGroup, value serves as an identifier for this button, and has to be unique across all buttons in the group.

boolean

Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.

string

Sets the CSS className for the element. Only use as a last resort. Use style props instead.

See styling guide.

CSSProperties

Sets the CSS style for the element. Only use as a last resort. Use style props instead.

See styling guide.

string

Defines a string value that labels the current element.

string

Identifies the element (or elements) that labels the current element.

string

Identifies the element (or elements) that describes the object.

string

Identifies the element (or elements) that provide a detailed, extended description for the object.

boolean

Whether the button is disabled.

boolean

Whether the element should be selected (controlled).

boolean

Whether the element should be selected (uncontrolled).

(isSelected: boolean) => void

Handler that is called when the element's selection state changes.

(e: HoverEvent) => void

Handler that is called when a hover interaction starts.

(e: HoverEvent) => void

Handler that is called when a hover interaction ends.

(e: PressEvent) => void

Handler that is called when the press is released over the target.

boolean

Whether the element should receive focus on render.

StyleProps
Responsive<Spacing | "auto">

The amount of margin applied to all edges of this component.

Responsive<Spacing | "auto">

The amount of margin applied to the left and right edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top and bottom edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the right edge of this component. Takes priority over marginX and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the bottom edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the left edge of this component. Takes priority over marginX and margin.

Displays an icon-only button that allows users to toggle between two states. Can be used standalone, or as part of ToggleButtonGroup.

See toggle button usage guidelines.

Ref<HTMLButtonElement>

The ref type for this component.

ToggleIconButtonProps
ReactNode

The icon displayed on the button.

string

The label describing the function of this button for assistive technologies. Must remain the same regardless of selection state.

'small' | 'medium' | 'large'

The size of the button.

Defaults to 'medium' .
boolean

Whether the button should take up the whole available width.

Defaults to false .
string

The <form> element to associate the input with. The value of this attribute must be the id of a <form> in the same document. See MDN.

string

The name of the input element, used when submitting an HTML form. See MDN.

string

The value of the input element, used when submitting an HTML form. See MDN.

When used in a ToggleButtonGroup, value serves as an identifier for this button, and has to be unique across all buttons in the group.

boolean

Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.

string

Sets the CSS className for the element. Only use as a last resort. Use style props instead.

See styling guide.

CSSProperties

Sets the CSS style for the element. Only use as a last resort. Use style props instead.

See styling guide.

string

Identifies the element (or elements) that labels the current element.

string

Identifies the element (or elements) that describes the object.

string

Identifies the element (or elements) that provide a detailed, extended description for the object.

boolean

Whether the button is disabled.

boolean

Whether the element should be selected (controlled).

boolean

Whether the element should be selected (uncontrolled).

(isSelected: boolean) => void

Handler that is called when the element's selection state changes.

(e: HoverEvent) => void

Handler that is called when a hover interaction starts.

(e: HoverEvent) => void

Handler that is called when a hover interaction ends.

(e: PressEvent) => void

Handler that is called when the press is released over the target.

boolean

Whether the element should receive focus on render.

StyleProps
Responsive<Spacing | "auto">

The amount of margin applied to all edges of this component.

Responsive<Spacing | "auto">

The amount of margin applied to the left and right edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top and bottom edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the right edge of this component. Takes priority over marginX and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the bottom edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the left edge of this component. Takes priority over marginX and margin.

Allows users to toggle multiple options, with single or multiple selection.

See toggle button usage guidelines.

Ref<HTMLDivElement>

The ref type for this component.

ToggleButtonGroupProps
ReactNode

Toggle buttons belonging to the group. Each button must have a value prop defined.

string

The content to display as the label.

boolean

Whether the current selection is invalid.

boolean

Whether a selection is required before form submission.

boolean

Use this attribute to "claim" the component tree for exclusive Cimpress UI usage.

string

Sets the CSS className for the element. Only use as a last resort. Use style props instead.

See styling guide.

CSSProperties

Sets the CSS style for the element. Only use as a last resort. Use style props instead.

See styling guide.

string

Defines a string value that labels the current element.

string

Identifies the element (or elements) that labels the current element.

string

Identifies the element (or elements) that describes the object.

string

Identifies the element (or elements) that provide a detailed, extended description for the object.

string

The <form> element to associate the input with. The value of this attribute must be the id of a <form> in the same document. See MDN.

string

The name of the input element, used when submitting an HTML form. See MDN.

string

A description for the field. Provides a hint such as specific requirements for what to choose.

FieldError

An error message for the field.

(value: Set) => string | true | string[] | undefined

A function that returns an error message (or true) if a given value is invalid. Validation errors are displayed to the user when the form is submitted. For real-time validation, use the error prop instead.

'multiple' | 'single'

Whether single or multiple selection is enabled.

Defaults to 'single' .
Iterable<Key, any, any>

The currently selected keys in the collection (controlled).

Iterable<Key, any, any>

The initial selected keys in the collection (uncontrolled).

(keys: Set<Key>) => void

Handler that is called when the selection changes.

boolean

Whether all items are disabled.

StyleProps
Responsive<Spacing | "auto">

The amount of margin applied to all edges of this component.

Responsive<Spacing | "auto">

The amount of margin applied to the left and right edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top and bottom edges of this component. Takes priority over margin.

Responsive<Spacing | "auto">

The amount of margin applied to the top edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the right edge of this component. Takes priority over marginX and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the bottom edge of this component. Takes priority over marginY and margin.

Responsive<Spacing | "auto">

The amount of margin applied to the left edge of this component. Takes priority over marginX and margin.