From 1fc5a597ae6d497509319bc53632cdada0c835d1 Mon Sep 17 00:00:00 2001 From: DIYgod Date: Mon, 8 Aug 2022 23:15:42 +0100 Subject: [PATCH] fix: types errors --- src/components/ui/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/Button.tsx b/src/components/ui/Button.tsx index d29f30bc..4ad09c12 100644 --- a/src/components/ui/Button.tsx +++ b/src/components/ui/Button.tsx @@ -12,7 +12,7 @@ type ButtonProps = { isBlock?: boolean isDisabled?: boolean isAutoWidth?: boolean - variant?: "primary" | "secondary" | "text" | "like" | "collect" + variant?: "primary" | "secondary" | "text" | "like" | "collect" | "crossbell" variantColor?: "green" | "red" | "gray" size?: "sm" rounded?: "full" | "lg"