react-dropdown-z
Version:
React hook. Simple dropdown. (Lib)
15 lines (14 loc) • 495 B
TypeScript
import React from 'react';
import { IFTooltipDropdownProps } from './index';
export interface IFDropdownListItemProps {
options: any[];
groupItemClassName?: string;
tabIndex: number;
keyName?: string;
labelName?: string;
selectValue: string | number | null;
tooltipIfDropdownProps?: IFTooltipDropdownProps;
handleSelectValue: (item: any) => void;
}
declare const DropdownListItem: React.FC<IFDropdownListItemProps>;
export default DropdownListItem;