mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { Slottable } from "@radix-ui/react-slot";
|
|
import { type ComponentPropsWithRef, forwardRef } from "react";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from "@/components/ui/tooltip";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
export type TooltipIconButtonProps = ComponentPropsWithRef<typeof Button> & {
|
|
tooltip: string;
|
|
side?: "top" | "bottom" | "left" | "right";
|
|
};
|
|
|
|
export const TooltipIconButton = forwardRef<HTMLButtonElement, TooltipIconButtonProps>(
|
|
({ children, tooltip, side = "bottom", className, ...rest }, ref) => {
|
|
return (
|
|
<Tooltip>
|
|
<TooltipTrigger asChild>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
{...rest}
|
|
className={cn("aui-button-icon size-6 p-1", className)}
|
|
ref={ref}
|
|
>
|
|
<Slottable>{children}</Slottable>
|
|
<span className="aui-sr-only sr-only">{tooltip}</span>
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent
|
|
side={side}
|
|
className="bg-black text-white font-medium shadow-xl px-3 py-1.5 dark:bg-zinc-800 dark:text-zinc-50 border-none"
|
|
>
|
|
{tooltip}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
);
|
|
|
|
TooltipIconButton.displayName = "TooltipIconButton";
|