jb-payment-input
Version:
payment input web component
21 lines (20 loc) • 714 B
TypeScript
import React from 'react';
import 'jb-payment-input/bank-indicator';
import type { BankIndicatorWebComponent } from 'jb-payment-input/bank-indicator';
declare global {
namespace JSX {
interface IntrinsicElements {
'bank-indicator': BankIndicatorType;
}
interface BankIndicatorType extends React.DetailedHTMLProps<React.HTMLAttributes<BankIndicatorWebComponent>, BankIndicatorWebComponent> {
"class"?: string;
}
}
}
declare const BankIndicator: React.ForwardRefExoticComponent<Props & React.RefAttributes<unknown>>;
export type Props = {
className?: string;
slot?: string;
prefix?: string;
};
export { BankIndicator };