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