mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 20:14:30 +08:00
* update dark mode css. update borders for light and dark mode * Delete concept-two.css * Update Panel.tsx * clean up
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { IconInfo } from 'ui'
|
|
|
|
const BackupsEmpty = () => {
|
|
return (
|
|
<div className="block w-full rounded border border-muted 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
|