import { EmptyState } from '@grafana/ui'; import { t, Trans } from 'app/core/internationalization'; import { SearchState } from 'app/features/search/types'; interface RecentlyDeletedEmptyStateProps { searchState: SearchState; } export const RecentlyDeletedEmptyState = ({ searchState }: RecentlyDeletedEmptyStateProps) => { const userIsSearching = Boolean(searchState.query || searchState.tag.length); return ( When you delete a dashboard, it will appear here for 30 days before being permanently deleted. Your organization administrator can restore recently-deleted dashboards. ); };