UNPKG

@syncfusion/react-navigations

Version:

Syncfusion React Navigations with Toolbar and Context Menu for seamless page navigation

24 lines (23 loc) 831 B
import { FC, HTMLAttributes } from 'react'; /** * @private */ export interface ToolbarMultiRowProps { /** * Callback function that is triggered to handle keyboard interactions with the toolbar. * * This is called after the component mounts to set up proper keyboard navigation * for toolbar items. */ onOverflowChange: () => void; } type IToolbarMultiRowProps = ToolbarMultiRowProps & HTMLAttributes<HTMLDivElement>; /** * ToolbarMultiRow component that renders toolbar items in multiple rows. * * This component allows toolbar items to wrap to the next line when they exceed * the available horizontal space, providing better space utilization and * responsive behavior for toolbars with many items. */ declare const ToolbarMultiRow: FC<IToolbarMultiRowProps>; export { ToolbarMultiRow };