Skip to content
Harness Design System

ButtonWithOptions

The ButtonWithOptions component provides a flexible UI element for displaying a button with a dropdown of options. It can behave as a radio button group if a selectedValue is provided, or as a regular dropdown otherwise.

Usage

import { ButtonWithOptions } from '@harnessio/ui/components'
return (
<ButtonWithOptions
id="my-button"
handleButtonClick={handleClick}
options={[
{ value: 'option1', label: 'Option 1', description: 'Description for option 1' },
{ value: 'option2', label: 'Option 2', description: 'Description for option 2' },
]}
handleOptionChange={handChangeOption}
theme="primary"
>
Primary Button
</ButtonWithOptions>
)

API Reference

PropRequiredDefaultType
idtruestring
handleButtonClicktrue
loadingfalsefalseboolean
selectedValuefalsestring
optionstrue
handleOptionChangetrue
classNamefalsestring
buttonClassNamefalsestring
sizefalse'default''default' | 'md'
themefalse'primary''default' | 'primary' | 'error' | 'success' | 'disabled' | 'warning' | 'muted'
disabledfalsefalseboolean
childrentrueReactNode
dropdownContentClassNamefalsestring