---
url: https://talkjs.com/docs/UI_Components/JavaScript/Classic/Themes/Components/SearchResultFooter
---

# SearchResultFooter

Customize the footer shown below search results.

Ask a question Copy for LLM [View as Markdown](/docs/UI_Components/JavaScript/Classic/Themes/Components/SearchResultFooter.md)
The `SearchResultFooter` component is rendered below the search results in the conversation list.

## Props

The `SearchResultFooter` component receives the following props:

| Name | Type | Description |
| --- | --- | --- |
| **type** | `"conversations"` or `"messages"` | Whether it's the header for conversation or message results |
| **hasMoreResults** | `boolean` | Whether there are more search results available to load |
| **hasMoreThanInitialResults** | `boolean` | Whether additional search results have loaded |
| **isLoadingResults** | `boolean` | Whether the search is in progress |

## Available system components

The following system components are available to the `SearchResultFooter` component:

### ShowMoreButton

The `<ShowMoreButton>` system component renders the button that loads additional search results.

#### Props

| Name | Type | Description |
| --- | --- | --- |
| **class** | `string` | The class given to the button |

#### Usage example

```html
<ShowMoreButton class="show-more" />
```