import type { EmptyStateProps } from '../../seat.type';

export function EmptyState({ message = 'কোনো আসন খুঁজে পাওয়া যায়নি' }: EmptyStateProps) {
  return (
    <div className="col-span-full py-12 text-center">
      <div className="inline-flex items-center justify-center p-4 bg-gray-100 rounded-full mb-4">
        <span className="material-symbols-outlined text-gray-400 text-3xl">search_off</span>
      </div>
      <p className="text-gray-500 font-medium">{message}</p>
    </div>
  );
}
