empty.tsx 518 B

1234567891011121314
  1. 'use client';
  2. import { type ComponentRenderProps } from '@json-render/react';
  3. export function Empty({ element }: ComponentRenderProps) {
  4. const { title, description } = element.props as { title: string; description?: string | null };
  5. return (
  6. <div style={{ textAlign: 'center', padding: '40px 20px' }}>
  7. <h3 style={{ margin: '0 0 8px', fontSize: 16, fontWeight: 600 }}>{title}</h3>
  8. {description && <p style={{ margin: 0, fontSize: 14, color: 'var(--muted)' }}>{description}</p>}
  9. </div>
  10. );
  11. }