mirror of
https://github.com/supabase/supabase.git
synced 2026-05-29 00:42:13 +08:00
* 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>
18 lines
568 B
TypeScript
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
|