EEnterUI
DocsComponentsThemesDonation
Get Started
      • EmptySearchResult
      • SkeletonTable
      • LogViewer
      • JsonViewer
      • DiffViewer
EnterUIDocsData AnalyticsTables and DataData States and ToolsEmptySearchResult
Data AnalyticsUpdated 6 May 2026

EmptySearchResult

Empty state tuned for search/filter zero-result surfaces with a clear-filters action.

EmptySearchResult is a thin wrapper over EmptyState that surfaces the active query and offers a clear-filters action. Use it inside a search/filter pane when there are no matching items.

#Default usage

No results for query

Pass query to surface the search term in the title.

No results for “frogg”

Try a broader query, different filters, or check your spelling.

Code
<EmptySearchResult query="frogg" />

#Import

Code
import { EmptySearchResult } from "@froggdesign/enter-ui-react";

#Accessibility

EmptySearchResult inherits EmptyState semantics. Buttons render as native <button> elements with visible focus rings.

#API

  • query: when set, rendered inside the default title.
  • title / description: explicit overrides.
  • onClearFilters: when set, renders a "Clear filters" secondary button.
  • secondaryAction: extra slot rendered next to Clear filters.
  • dense: reduce padding for inline empty results.

#Styling

Every exported component accepts className. EnterUI styles use .eui-* classes and --eui-* variables mapped from FroggDesign theme tokens.

PreviousFilterBuilder
NextSkeletonTable

On this page

  1. Default usage
  2. Import
  3. Accessibility
  4. API
  5. Styling