diff --git a/src/components/Button/index.tsx b/src/components/Button/index.tsx index a64d567..e23d863 100644 --- a/src/components/Button/index.tsx +++ b/src/components/Button/index.tsx @@ -8,9 +8,7 @@ type ButtonProps = Omit, 'size'> & { | 'admin' | 'success' | 'warning' - | 'error' - | 'black' - | 'white'; + | 'error'; size?: 'small' | 'big'; variant?: 'primary-action' | 'secondary-action' | 'outlined' | 'text'; iconLeft?: React.SVGProps; diff --git a/src/components/Button/styles.ts b/src/components/Button/styles.ts index b6161e7..0f45906 100644 --- a/src/components/Button/styles.ts +++ b/src/components/Button/styles.ts @@ -8,9 +8,7 @@ type WrapperProps = { | 'admin' | 'success' | 'warning' - | 'error' - | 'black' - | 'white'; + | 'error'; size?: 'small' | 'big'; variant?: 'primary-action' | 'secondary-action' | 'outlined' | 'text'; iconLeft?: React.SVGProps;