# Spinner

A simple, circular loading indicator that uses a spinning animation. It is an alternative to `CircularProgress` for when a simpler visual is needed.

## Props

*   `size` (number, optional, default: 24): The width and height of the spinner in pixels.
*   `className` (string, optional): Additional CSS classes for custom styling.

## Usage

```tsx
import { Spinner } from './src/components';

<Spinner size={32} />
```
