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