UNPKG

@findnlink/neuro-ui

Version:
9 lines (8 loc) 321 B
import { HTMLAttributes } from 'react'; import { UtilInterface } from '../../util/interfaces'; import { ButtonProps } from '../Button/Button.types'; export interface ButtonGroupProps extends HTMLAttributes<HTMLElement>, UtilInterface { selected: string; buttons: ButtonProps[] | string[]; setSelected: any; }