| 71 | }; |
| 72 | |
| 73 | interface 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 | |
| 90 | const MultiSelectEmptyState = ({ |
| 91 | title = "No results found", |
nothing calls this directly
no outgoing calls
no test coverage detected