UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

16 lines 666 B
import { ComponentProps, FC, ReactNode } from "react"; import { Variant } from "./types"; export type EbayFilterMenuFooterButtonProps = Omit<ComponentProps<"button">, "type" | "children"> & { children: ReactNode; /** * These properties are used by EbayFilterMenu. * NOTE: The flag "@deprecated" is only to not show this property in the autocomplete list on the top * @deprecated */ __classPrefix?: string; /** @deprecated */ __variant?: Variant; }; declare const EbayFilterMenuFooterButton: FC<EbayFilterMenuFooterButtonProps>; export default EbayFilterMenuFooterButton; //# sourceMappingURL=filter-menu-footer-button.d.ts.map