# bbp-core/2.4.1/includes/Elementor/Search/search-spinner.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.1. 19 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.1/code/includes/Elementor/Search/search-spinner.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.1/raw/includes/Elementor/Search/search-spinner.php
- Modified: 2026-04-10T15:32:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.1/code/includes/Elementor/Search/search-spinner.php#L10-L20`.

```php
<?php
/**
 * Search Loading Spinner
 *
 * Modern circular spinner displayed inside the search input
 * alongside the native clear (cross) button.
 *
 * @package Forumax
 * @since   2.2.2
 */

defined( 'ABSPATH' ) || exit;
?>
<span class="spinner" aria-hidden="true">
	<svg class="frmx-spinner-icon" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
		<circle cx="12" cy="12" r="10" stroke-opacity="0.2" />
		<path d="M12 2a10 10 0 0 1 10 10" />
	</svg>
</span>
```
