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