diff --git a/components/control/Button/Button.ts b/components/control/Button/Button.ts index 522ddf4..23ad794 100644 --- a/components/control/Button/Button.ts +++ b/components/control/Button/Button.ts @@ -2,6 +2,7 @@ import { JSXCustomElement } from '../../../types/jsx-custom-element'; export interface ButtonAttributes { size?: 'sm' | 'md' | 'lg'; + variant?: 'primary' | 'secondary' | 'text'; width?: 'full-width' | 'full-width-mobile' | 'square'; }