UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

9 lines 325 B
import { ComponentProps, FC } from "react"; export type EbayBadgeType = "menu" | "icon" | "img"; export type EbayBadgeProps = ComponentProps<"span"> & { type?: EbayBadgeType; number?: number | string | null; }; declare const EbayBadge: FC<EbayBadgeProps>; export default EbayBadge; //# sourceMappingURL=badge.d.ts.map