@commercelayer/react-components
Version:
The Official Commerce Layer React Components
11 lines (10 loc) • 407 B
TypeScript
import type { ChildrenFunction } from '../../typings/index';
import type { JSX } from "react";
interface ChildrenProps extends Omit<Props, 'children'> {
labelName: string;
}
interface Props extends Omit<JSX.IntrinsicElements['label'], 'children'> {
children?: ChildrenFunction<ChildrenProps>;
}
export declare function PaymentMethodName(props: Props): JSX.Element;
export default PaymentMethodName;