Represents a control that lets a user pick a color temperature between 2500 & 6500 Kelvins.

### Properties

| Property              | Type     | Description                                                                 |
|----------------------|----------|-----------------------------------------------------------------------------|
| `Temperature`        | Integer  | The current color temperature value.                                        |
| `Height`             | Float    | The suggested height of the control in dp pixels.                          |
| `HorizontalAlignment`| Enum     | The horizontal alignment characteristics applied to the control in a layout.|
| `Margin`             | Thickness| The outer margin applied to the control in a layout.                       |
| `Rotation`           | Integer  | The rotation about the Z-axis in degrees.                                  |
| `VerticalAlignment`  | Enum     | The vertical alignment characteristics applied to the control in a layout.  |
| `Width`              | Float    | The suggested width of the control in dp pixels.                           |
| `IsEnabled`          | Boolean  | Indicates whether the user can interact with the control.                  |
| `IsHitTestVisible`   | Boolean  | Indicates if the control can return true values for hit testing.           |
| `IsVisible`          | Boolean  | Indicates whether the control should be visible.                           |
| `Opacity`            | Float    | A value between 0 and 1.0 that declares the opacity factor.                |

### Events

| Event   | Description                                                       |
|---------|-------------------------------------------------------------------|
| `Loaded`| Occurs when the element is laid out, rendered, and ready for interaction. |
| `Unloaded`| Occurs when the element is no longer rendered on the screen.       |
