Files
supabase/apps/studio/components/interfaces/Database/Backups/BackupsEmpty.tsx
Ivan Vasilov 436bdb10ae chore: Move the studio app to apps/studio (#18915)
* Move all studio files from /studio to /apps/studio.

* Move studio specific prettier ignores.

* Fix the ui references from studio.

* Fix the css imports.

* Fix all package.json issues.

* Fix the prettier setup for the studio app.

* Add .turbo folder to prettierignore.

* Fix the github workflows.
2023-11-15 12:38:55 +01:00

15 lines
400 B
TypeScript

import { IconInfo } from 'ui'
const BackupsEmpty = () => {
return (
<div className="block w-full rounded border border-gray-400 border-opacity-50 bg-gray-300 p-3">
<div className="flex space-x-3">
<IconInfo size={20} strokeWidth={1.5} />
<p className="text-sm">No backups created yet - check again tomorrow.</p>
</div>
</div>
)
}
export default BackupsEmpty