@commercelayer/react-components
Version:
The Official Commerce Layer React Components
12 lines (11 loc) • 372 B
TypeScript
import { type JSX } from "react";
import type { DefaultChildrenType } from "../../typings/globals";
interface Props {
children?: DefaultChildrenType;
/**
* Customize the loader content.
*/
loader?: string | JSX.Element;
}
export declare function CustomerPaymentSource({ children, loader, }: Props): JSX.Element;
export default CustomerPaymentSource;