BackupsEmpty.tsx 291 B

123456789101112
  1. import { DatabaseBackup } from 'lucide-react'
  2. import { EmptyStatePresentational } from 'ui-patterns'
  3. export const BackupsEmpty = () => {
  4. return (
  5. <EmptyStatePresentational
  6. icon={DatabaseBackup}
  7. title="No backups yet"
  8. description="Check again tomorrow."
  9. />
  10. )
  11. }