import React from 'react'; import { cn } from '../lib/utils'; import { Button } from '../shadcn/button'; const EmptyStateHeading = React.forwardRef< HTMLHeadingElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)); EmptyStateHeading.displayName = 'EmptyStateHeading'; const EmptyStateText = React.forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => (

)); EmptyStateText.displayName = 'EmptyStateText'; const EmptyStateButton = React.forwardRef< HTMLButtonElement, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => (