# Image ## Example ```svelte

Overlay theme color

Show normal image on hover

``` ## Documentation ## Usage ```svelte ``` ## API Reference ### Image An image component with optional theme color overlay and blur effects. | Prop | Type | Default | Description | |------|------|---------|-------------| | src | `string` | `-` | The image source URL. | | alt | `string` | `-` | Alt text for the image. (required) | | useThemeColor | `boolean` | `false` | Whether to apply a theme color overlay to the image. | | blur | `boolean` | `true` | Whether to apply a blur loading effect. | | showNormalOnHover | `boolean` | `false` | When useThemeColor is true, shows the original image on hover. | | containerClasses | `string` | `-` | Additional CSS classes for the image container. | | class | `string` | `-` | Additional CSS classes for the image element. | | ref | `HTMLImageElement` | `-` | The underlying image DOM element. (bindable) |