diff --git a/projects/msp-tools/guru-rmm/dashboard/src/components/Button.tsx b/projects/msp-tools/guru-rmm/dashboard/src/components/Button.tsx index 788f634..e12e305 100644 --- a/projects/msp-tools/guru-rmm/dashboard/src/components/Button.tsx +++ b/projects/msp-tools/guru-rmm/dashboard/src/components/Button.tsx @@ -1,8 +1,13 @@ import { ButtonHTMLAttributes, forwardRef } from "react"; import { cn } from "../lib/utils"; +/** + * Mission Control Button Component + * Monospace text with smooth transitions and glow effects + */ + export interface ButtonProps extends ButtonHTMLAttributes { - variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link"; + variant?: "default" | "secondary" | "destructive" | "ghost" | "outline" | "link"; size?: "default" | "sm" | "lg" | "icon"; } @@ -11,26 +16,55 @@ const Button = forwardRef( return (