export default function Button({ children, type, variant, className, ...props }: { children: React.ReactNode; type: "primary" | "secondary" | "alternate"; variant?: "filled" | "outlined"; className?: string; // [x: string]: }) { const btnVariant = variant ?? "filled"; return ( ); }