---
## Sparkline
Tiny inline trend line — no axes, no labels — sized to flow in
table cells, cards, or running text. Zero-dependency SVG, optional area fill
and end-point dot. Aria-hidden by default with an optional `ariaLabel`.
**Import:** `import { Sparkline } from '@urbicon-ui/blocks';`
### Examples
```svelte
```
### Api
| Prop | Type | Required | Default | Description |
| --- | --- | :---: | --- | --- |
| data | `number[]` | yes | | Sequence of values plotted left → right. |
| ...HTMLAttributes | `HTMLAttributes` | no | | HTML attributes (excluding: 'children') |
| area | `boolean` | no | false | Fill the area under the line. |
| ariaLabel | `string` | no | | Accessible label; when omitted the sparkline is aria-hidden. |
| class | `string` | no | | Extra classes merged onto the wrapper. |
| color | `string` | no | var(--color-chart-1) | Color property for the Sparkline component |
| height | `number` | no | 24 | Height property for the Sparkline component |
| showEndPoint | `boolean` | no | false | Mark the last point with a dot. |
| slotClasses | `SparklineSlotClasses` | no | | Per-slot class overrides. |
| strokeWidth | `number` | no | 1.5 | StrokeWidth property for the Sparkline component |
| unstyled | `boolean` | no | | Remove all default classes. |
| width | `number` | no | 96 | Width property for the Sparkline component |
Inherited from:
- Omit, 'children'> (omit-pattern)