MCPcopy Create free account
hub / github.com/untitleduico/react / MultiSelectEmptyStateProps

Interface MultiSelectEmptyStateProps

components/base/select/multi-select.tsx:73–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71};
72
73interface MultiSelectEmptyStateProps {
74 /**
75 * The title to display.
76 * @default "No results found"
77 */
78 title?: string;
79 /**
80 * The description to display.
81 * @default "Please try a different search term."
82 */
83 description?: string;
84 /** Handler that is called when the clear search button is clicked. */
85 onClearSearch?: () => void;
86 /** Additional class name. */
87 className?: string;
88}
89
90const MultiSelectEmptyState = ({
91 title = "No results found",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected