UNPKG

@syncfusion/react-navigations

Version:

A package of Pure React navigation components such as Toolbar and Context-menu which is used to navigate from one page to another

21 lines (20 loc) 811 B
import { FC, HTMLAttributes } from 'react'; 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 };