UNPKG

@uva-glass/component-library

Version:

React components UvA

10 lines (9 loc) 542 B
import { PropsWithChildren } from 'react'; export interface ButtonGroupProps { /** true to render the buttons from top to bottom; otherwise, false. The default is false. */ stacked?: boolean; /** true to render the buttons in reverse order; otherwise, false. The default is false. */ reversed?: boolean; } /** Represents a component that contains a group of buttons. */ export declare const ButtonGroup: ({ children, stacked, reversed }: PropsWithChildren<ButtonGroupProps>) => import("react/jsx-runtime").JSX.Element | null;