@appbuckets/react-ui
Version:
Just Another React UI Framework
15 lines (14 loc) • 554 B
TypeScript
import { ShorthandCollection } from '@appbuckets/react-ui-core';
import { FlexboxContainerProps, UIMutableComponentProps } from '../generic';
import { ButtonProps } from './Button.types';
export interface ButtonGroupProps
extends UIMutableComponentProps<StrictButtonGroupProps>,
FlexboxContainerProps {}
export interface StrictButtonGroupProps {
/** Button Collection Shorthand */
buttons?: ShorthandCollection<ButtonProps>;
/** Draw Group as full width content */
full?: boolean;
/** Display Button Vertically */
vertical?: boolean;
}