mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-19 21:29:09 +02:00
* desktop UI light mode * Theme review fixes plus macOS window outline fix * Windows runtime chrome re-theming plus apply serialization * Windows chrome threading and theme event ordering fixes * Darken toggle and setting sidebar text * resolve theme appearance, apply on UI thread * read theme once per window * Re-assert Windows dark opt-in after SetTheme * split app-wide GTK theming from per-window chrome * Update Wails dependency and checksums * KDE tray icon panel fix * Five review fixes: theme ordering, cgo dedup, KDE panel resolution * Path guard hardening, toggle contrast, windows comment * non-vacuous escape tests * Default view edits * Polish settings nav, controls, borders, and disc * Profiles settings boarder, modals, and buttons * Additional edits based on feedback * Switch colors away from slight blue hue * Update missing lang * Fix vertical tab active view
37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { type ButtonHTMLAttributes, type ComponentType, forwardRef } from "react";
|
|
import { type LucideProps } from "lucide-react";
|
|
import { useFocusVisible } from "@/hooks/useFocusVisible";
|
|
import { cn } from "@/lib/cn";
|
|
|
|
type Props = ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
icon: ComponentType<LucideProps>;
|
|
iconSize?: number;
|
|
iconClassName?: string;
|
|
};
|
|
|
|
export const IconButton = forwardRef<HTMLButtonElement, Props>(function IconButton(
|
|
{ icon: Icon, iconSize = 17, iconClassName, className, type = "button", disabled, ...props },
|
|
ref,
|
|
) {
|
|
const isFocusVisible = useFocusVisible();
|
|
return (
|
|
<button
|
|
ref={ref}
|
|
type={type}
|
|
disabled={disabled}
|
|
tabIndex={disabled ? -1 : 0}
|
|
className={cn(
|
|
"flex h-10 w-10 cursor-default items-center justify-center rounded-lg outline-none",
|
|
"text-nb-gray-400 hover:bg-nb-gray-900 hover:text-nb-gray-300",
|
|
isFocusVisible &&
|
|
"focus-visible:ring-2 focus-visible:ring-nb-gray-50/60 focus-visible:ring-offset-2 focus-visible:ring-offset-nb-gray-940",
|
|
"wails-no-draggable transition-colors duration-150",
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<Icon size={iconSize} className={iconClassName} />
|
|
</button>
|
|
);
|
|
});
|