UNPKG

react-dropdown-z

Version:
14 lines (13 loc) 440 B
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;