"use client"; import { Button } from "@/components/ui/button"; import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip"; import { cn } from "@/lib/utils"; import type { ComponentProps } from "react"; export type ActionsProps = ComponentProps<"div">; export const Actions = ({ className, children, ...props }: ActionsProps) => (
{tooltip}