import * as React from "react" import { cva } from "class-variance-authority" import { cn } from "@/lib/utils" function Empty({ className, ...props }) { return (
) } function EmptyHeader({ className, ...props }) { return ( ) } const emptyMediaVariants = cva( "flex shrink-0 items-center justify-center mb-2 [&_svg]:pointer-events-none [&_svg]:shrink-0", { variants: { variant: { default: "bg-transparent", icon: "bg-muted text-foreground flex size-10 shrink-0 items-center justify-center rounded-lg [&_svg:not([class*='size-'])]:size-6", }, }, defaultVariants: { variant: "default", }, } ) function EmptyMedia({ className, variant = "default", ...props }) { return ( ) } function EmptyTitle({ className, ...props }) { return ( ) } function EmptyDescription({ className, ...props }) { return (