@appbuckets/react-ui
Version:
Just Another React UI Framework
10 lines (9 loc) • 366 B
TypeScript
import { ShorthandCollection } from '@appbuckets/react-ui-core';
import { UIMutableComponentProps } from '../generic';
import { ButtonProps } from '../Button';
export interface PanelBodyProps
extends UIMutableComponentProps<StrictPanelBodyProps> {}
export interface StrictPanelBodyProps {
/** Panel FAB Collections */
fab?: ShorthandCollection<ButtonProps>;
}