projects/angular-client-sdk/src/lib/interfaces/style-options.interface.ts
Properties |
|
| borderRadius |
borderRadius:
|
Type : number
|
| Optional |
| colorBackground |
colorBackground:
|
Type : string
|
| Optional |
| colorPrimary |
colorPrimary:
|
Type : string
|
| Optional |
| colorText |
colorText:
|
Type : string
|
| Optional |
| fontFamily |
fontFamily:
|
Type : string
|
| Optional |
export interface PaperSDKPayWithCardStyleOptions {
colorPrimary?: string;
colorBackground?: string;
colorText?: string;
borderRadius?: number;
fontFamily?: string;
}