UNPKG

@nexusui/components

Version:

These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.

15 lines (14 loc) 574 B
import { IActionGroup } from '../../../core/ActionGroup'; /** * The AssemblyTreeActions component is a wrapper around the ActionGroup * to apply the necessary styles (if relevant) to collapse/hide the actions * when the AssemblyTreeItem is not hovered. */ export type IAssemblyTreeItemActions = IActionGroup & { /** * Tells the component whether or not it should be hidden when the TreeItem it appears in is not hovered. * @default true */ hideOnBlur?: boolean; }; export declare const AssemblyTreeItemActions: React.FC<IAssemblyTreeItemActions>;