UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

8 lines 280 B
import { ComponentProps, FC } from "react"; type ButtonType = "cta" | "fake" | "expand" | "default"; type Props = ComponentProps<"span"> & { type?: ButtonType; }; declare const EbayButtonCell: FC<Props>; export default EbayButtonCell; //# sourceMappingURL=button-cell.d.ts.map