@appbuckets/react-ui
Version:
Just Another React UI Framework
14 lines (13 loc) • 473 B
TypeScript
import { ShorthandCollection } from '@appbuckets/react-ui-core';
import { UIMutableComponentProps } from '../generic';
import { ButtonProps } from '../Button';
export interface ItemToolsProps
extends UIMutableComponentProps<StrictItemToolsProps> {}
export interface StrictItemToolsProps {
/** Disable Children Use for item tools */
children?: never;
/** Disable all tools */
disabled?: boolean;
/** Create Tools */
tools?: ShorthandCollection<ButtonProps>;
}