mirror of
https://github.com/supabase/supabase.git
synced 2026-07-02 04:54:28 +08:00
* 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>
14 lines
292 B
TypeScript
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."
|
|
/>
|
|
)
|
|
}
|