mirror of
https://github.com/supabase/supabase.git
synced 2026-09-08 19:08:44 +08:00
## Problem We now export components under a subpath in ui-patterns to avoid barrel files as they slow down every tools (from IDE to linters, etc.) and may also affect bundles our users have to download. ## Solution - Remove the UI patterns index file - Fix invalid impors
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import { DatabaseBackup } from 'lucide-react'
|
|
import { EmptyStatePresentational } from 'ui-patterns/EmptyStatePresentational'
|
|
|
|
export const BackupsEmpty = () => {
|
|
return (
|
|
<EmptyStatePresentational
|
|
icon={DatabaseBackup}
|
|
title="No backups yet"
|
|
description="Check again tomorrow."
|
|
/>
|
|
)
|
|
}
|