feat(webui): add central icon button

This commit is contained in:
2026-07-21 13:23:59 +02:00
parent 7af86b42eb
commit 66e4783d2e
7 changed files with 85 additions and 28 deletions

View File

@@ -0,0 +1,31 @@
import type { ReactNode } from "react";
import { usePlatformLanguage } from "../i18n/LanguageContext";
import Button, { type ButtonProps } from "./Button";
export type IconButtonProps = Omit<ButtonProps, "aria-label" | "children" | "title"> & {
label: string;
icon: ReactNode;
};
export default function IconButton({
label,
icon,
className = "",
type = "button",
...buttonProps
}: IconButtonProps) {
const { translateText } = usePlatformLanguage();
const translatedLabel = translateText(label);
return (
<Button
{...buttonProps}
type={type}
className={["icon-button", className].filter(Boolean).join(" ")}
aria-label={translatedLabel}
title={translatedLabel}
>
<span className="icon-button-icon" aria-hidden="true">{icon}</span>
</Button>
);
}