import React, { forwardRef } from 'react'; import EmptyStateImage from '@/assets/empty_state.png'; import { Label } from '@/components/label/label'; import { cn } from '@/lib/utils'; export interface EmptyStateProps { title: string; description: string; } export const EmptyState = forwardRef< HTMLDivElement, React.HTMLAttributes & EmptyStateProps >(({ title, description, className }) => (
Empty state
));