# Image card
## Example
```svelte
Full width
In a grid
toast('Hello World')}
/>
```
## Documentation
## Usage
```svelte
```
## API Reference
### ImageCard
A card component with an image, title, and optional description. Can be a link or clickable.
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| src | `string` | `-` | The image source URL. (required) |
| alt | `string` | `-` | Alt text for the card image. (required) |
| title | `string` | `-` | The card title. (required) |
| description | `string` | `-` | Optional description text below the title. |
| href | `string` | `-` | When provided, the card renders as a link. |
| onclick | `() => void` | `-` | Click event handler. |
| class | `string` | `-` | Additional CSS classes to apply. |