From 49980724755e2fb950d6b11006501e53f558f79c Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 28 Feb 2022 01:01:33 -0800 Subject: [PATCH] Implement IconOnly button type --- components/Button/index.tsx | 3 ++- utils/enums.tsx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/Button/index.tsx b/components/Button/index.tsx index 1986b37f..3fcd68f5 100644 --- a/components/Button/index.tsx +++ b/components/Button/index.tsx @@ -81,7 +81,8 @@ class Button extends React.Component { return } } diff --git a/utils/enums.tsx b/utils/enums.tsx index ca8289b1..caf17d02 100644 --- a/utils/enums.tsx +++ b/utils/enums.tsx @@ -1,5 +1,6 @@ export enum ButtonType { Base, + IconOnly, Destructive }