Files
supabase/apps/studio/components/interfaces/Database/Backups/BackupsEmpty.tsx
Danny White 46ac132051 chore(studio): empty state improvements (#40807)
* migrations

* clearer value prop

* consistent verb

* migration input

* triggers

* extract trigger buttons

* database backups

* schema title

* unrelated nit

* fix

* shared component

* ui-patterns

* rename

* improve docs

* remove redundant overrides

* remove old file

* prettier fix

* fix type error

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2025-11-27 17:26:20 +08:00

14 lines
292 B
TypeScript

import { DatabaseBackup } from 'lucide-react'
import { EmptyStatePresentational } from 'ui-patterns'
export const BackupsEmpty = () => {
return (
<EmptyStatePresentational
icon={DatabaseBackup}
title="No backups yet"
description="Check again tomorrow."
/>
)
}