AstraUI

Components

Segmented Control

A segmented control component that allows users to select one or multiple options from a set of segments.

Selected: Weekly

tsx

    <SegmentedControl
        segments={['Daily', 'Weekly', 'Monthly']}
        defaultIndex={1}
        onSegmentChange={(segment) => console.log(segment)}
        className="mx-auto"
        activeClassName="bg-zinc-900 text-gray-50"
        inactiveClassName="bg-zinc-200 text-gray-700"
        multiple={false}
    />
    

Props

NameTypeDefaultDescription
segmentsstring[]-The list of segments to display.
onSegmentChange(selectedSegment: string[] | string) => void-Callback function that is triggered when the segment is changed.
defaultIndexnumber | number[]0The index (or indices) of the default selected segment(s).
multiplebooleanfalseIf true, allows selecting multiple segments.
classNamestring-Additional class names for the control container.
activeClassNamestring-Class name for the active segment.
inactiveClassNamestring-Class name for the inactive segments.

Best Practices

  • Use Segmented Control when options are closely related and mutually exclusive.
  • Ensure segment labels are concise and clearly represent the options.
  • Consider using the multiple selection option only when necessary to avoid confusion.