UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

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