mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 20:44:21 +08:00
* 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.
15 lines
400 B
TypeScript
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
|