@grandlinex/react-components
Version:
13 lines (12 loc) • 401 B
TypeScript
import React from 'react';
import { INames } from '@grandlinex/react-icons';
import { MenuItemInterface } from './PanelMenuItem';
declare function SidePanelNavigationBlock(props: {
single: boolean;
headerText: string;
icon?: INames;
data: MenuItemInterface[];
search?: string;
defaultOnClick?: (key: string) => void;
}): React.JSX.Element;
export { SidePanelNavigationBlock };