diff --git a/web/src/components/Button.astro b/web/src/components/Button.astro index 7e9539e..a5bd5b3 100644 --- a/web/src/components/Button.astro +++ b/web/src/components/Button.astro @@ -38,9 +38,14 @@ export interface Props extends HTMLAttributes<"button">, VariantProps {} -const { variant = "default", size = "default", ...props } = Astro.props; +const { + variant = "default", + size = "default", + class: className, + ...props +} = Astro.props; --- - diff --git a/web/src/components/Layout/Header.astro b/web/src/components/Layout/Header.astro index 49eef1e..bf07f74 100644 --- a/web/src/components/Layout/Header.astro +++ b/web/src/components/Layout/Header.astro @@ -1,8 +1,13 @@ --- -import { button } from "../Button.astro"; +import Button, { button } from "../Button.astro"; +import { Menu } from "lucide-astro"; --- -