UNPKG
retabler
Version:
alpha (0.0.1-alpha.3)
latest (0.0.1-alpha.0)
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
React Component library via Tabler
retabler
/
build
/
Payment
/
index.d.ts
10 lines
(9 loc)
•
287 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="react" />
export
declare
type
Size
=
"lg"
|
"xl"
;
export
interface
PaymentProps
{
className
?:
string
;
provider
:
string
;
size
?:
Size
; }
declare
const
Payment
:
(
{ className, provider, size }:
PaymentProps
) =>
JSX
.
Element
;
export
default
Payment
;