nice-ui
Version:
React design system, components, and utilities
13 lines (12 loc) • 494 B
TypeScript
import * as React from 'react';
import { type ContextTitleProps } from './ContextTitle';
import type { PopupControlledProps } from '../Popup/PopupControlled';
export interface ContextTitleNestedProps extends ContextTitleProps {
open?: PopupControlledProps['open'];
left?: boolean;
renderPane?: PopupControlledProps['renderContext'];
}
/**
* Renders a {@link ContextTitle} which has a nested sub-menu.
*/
export declare const ContextTitleNested: React.FC<ContextTitleNestedProps>;