From ccf62c5a66af9649a00ed2e100bb7d4daa54af0d Mon Sep 17 00:00:00 2001 From: andrewbents Date: Tue, 22 Aug 2023 16:17:11 +0100 Subject: [PATCH] New button radius option --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index bdc1912..b185afe 100644 --- a/src/types.ts +++ b/src/types.ts @@ -353,7 +353,7 @@ type RevolutPayButtonStyleOptions = { export type ButtonStyleOptions = { height?: string size?: 'large' | 'small' - radius?: 'none' | 'small' | 'large' + radius?: 'none' | 'small' | 'large' | 'round' variant?: 'dark' | 'light' | 'light-outlined' action?: 'donate' | 'pay' | 'subscribe' | 'buy' } & Partial