UNPKG

@surveycake/rc

Version:

react component of surveycake

15 lines (14 loc) 385 B
import { ReactChild } from 'react'; export interface ToggleButton { value: any; disabled: boolean; children: ReactChild; } export interface ToggleButtonGroupProps { value: any; exclusive?: boolean; onChange: (event: object, value: any) => void; size?: 'large' | 'medium' | 'small'; toggleButtons: ToggleButton[]; ariaLabel?: string; }