'use client'; import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; import type { HtmlProps } from '@/types'; import { cn } from '@/utils/cn'; import { MoreHorizontal } from 'lucide-react'; type CardProps = HtmlProps & { hover?: boolean; }; export function Card({ children, hover, className }: CardProps) { return (
{children}
); } interface CardActionsProps { children: React.ReactNode; } export function CardActions({ children }: CardActionsProps) { return (
{children}
); } export const CardActionsItem = DropdownMenuItem;