import * as React from "react"; import { cn } from "@/lib/utils"; export function EmptyPlaceholder({ className, children, ...props }: React.HTMLAttributes) { return (
{children}
); } EmptyPlaceholder.Icon = function EmptyPlaceHolderIcon({ children }: { children: React.ReactNode }) { return (
{children}
); }; type EmptyPlaceholderTitleProps = React.HTMLAttributes; EmptyPlaceholder.Title = function EmptyPlaceholderTitle({ className, ...props }: EmptyPlaceholderTitleProps) { return

; }; type EmptyPlaceholderDescriptionProps = React.HTMLAttributes; EmptyPlaceholder.Description = function EmptyPlaceholderDescription({ className, ...props }: EmptyPlaceholderDescriptionProps) { return (

); };