UNPKG

react-dropdown-z

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