Files
supabase/apps/studio/components/interfaces/Database/Backups/BackupsStorageAlert.tsx
Jonathan Summers-Muir f912536db8 [Design system] Feat/sonner (#27382)
* fix toast examples

* add sonner stuff

* new sonner examples added

* updated

* add upload POC

* add

* Update sonner-upload.tsx

* move statusicons

* Minor fix.

---------

Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
2024-07-19 12:38:42 +02:00

18 lines
568 B
TypeScript

import { AlertDescription_Shadcn_, Alert_Shadcn_ } from 'ui'
import { WarningIcon } from 'ui'
const BackupsStorageAlert = () => {
return (
<Alert_Shadcn_ variant="default">
<WarningIcon />
<AlertDescription_Shadcn_>
Database backups do not include objects stored via the Storage API, as the database only
includes metadata about these objects. Restoring an old backup does not restore objects that
have been deleted since then.
</AlertDescription_Shadcn_>
</Alert_Shadcn_>
)
}
export default BackupsStorageAlert