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