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