# Temperature

A flash-free temperature reading that shows a Celsius value in the reader's preferred unit via CSS. Pairs with TemperatureToggle.

**Import:** `import { Temperature } from '@reuters-graphics/graphics-components'`

## Props

| Prop | Type | Default | Required | Description |
|------|------|---------|:--------:|-------------|
| `celsius` | `number` | — | ✓ | The value in degrees Celsius (an absolute temperature or, with `delta`, a difference). |
| `delta` | `boolean` | `false` |  | Render as a signed difference (`+5°F`) instead of an absolute temperature. |
| `digits` | `number` | `0` |  | Decimal places (default 0). |
| `suffix` | `boolean` | `true` |  | Append the degree suffix (default true). |
| `degree` | `boolean` | `true` |  | Include the degree ring in the suffix (default true). |
