UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

10 lines 347 B
import { ComponentProps, FC, ReactElement } from "react"; export type EbayListboxOptionProps = ComponentProps<"div"> & { icon?: ReactElement; text?: string; value: string; disabled?: boolean; selected?: boolean; }; export declare const EbayListboxOption: FC<EbayListboxOptionProps>; //# sourceMappingURL=listbox-option.d.ts.map