diff options
Diffstat (limited to 'apps/website/src/components/base/Button.astro')
-rw-r--r-- | apps/website/src/components/base/Button.astro | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/website/src/components/base/Button.astro b/apps/website/src/components/base/Button.astro index e529dc5..0a6039f 100644 --- a/apps/website/src/components/base/Button.astro +++ b/apps/website/src/components/base/Button.astro @@ -23,12 +23,12 @@ const iconSize = { }; interface Props extends HTMLAttributes<'button'> { - style?: keyof typeof styles - size?: keyof typeof sizes - text?: string - iconLeft?: Icons - iconRight?: Icons - href?: string + style?: keyof typeof styles; + size?: keyof typeof sizes; + text?: string; + iconLeft?: Icons; + iconRight?: Icons; + href?: string; } const { |