// frontend/components/Button.tsx import { Icon } from "./Icon"; import type { IconName } from "./icons/paths"; type Variant = "fill" | "lime" | "glass"; export function Button({ variant = "fill", icon, children, className = "", ...rest }: { variant?: Variant; icon?: IconName } & React.ButtonHTMLAttributes) { return ( ); }