UNPKG

@appbuckets/react-ui

Version:
14 lines (13 loc) 473 B
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>; }