~bigbes/lethe

ref: 5d910e8263ed5002b4f04c2c3fa3146dec4b6b78 lethe/web/src/primitives/EmptyState.tsx -rw-r--r-- 347 bytes
5d910e82 — Eugene Blikh server/web: tag Config fields for snake_case JSON output (IF1 contract) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import type React from 'react'

interface EmptyStateProps {
  glyph: string
  copy: string
}

export function EmptyState({ glyph, copy }: EmptyStateProps): React.JSX.Element {
  return (
    <div className="empty">
      <div className="glyph">{glyph}</div>
      <div style={{ fontSize: 13, color: 'var(--ink-2)' }}>{copy}</div>
    </div>
  )
}