import type * as React from 'react' import { cn } from '@admin/utils/shared/cn' type PlaceholderProps = { label: string description: string action: React.ReactNode className?: string } & React.ComponentProps<'div'> export function Placeholder({ label, description, action, className, ...props }: PlaceholderProps) { return (

{label}

{description}

{action}
) }