> For the complete documentation index, see [llms.txt](https://ra-libs.gitbook.io/react/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ra-libs.gitbook.io/react/docs/components/fields/timezonefield.md).

# TimezoneField

TimezoneField component that map IANA timezone to text with Labeled component.

### Usage

```tsx
import { TimezoneField } from '@ra-libs/react';

<TimezoneField source="startAtTimezone" label={'Timezone'} />;
```

### Props

| Prop     | Required | Type    | Default | Description                                          |
| -------- | -------- | ------- | ------- | ---------------------------------------------------- |
| useLabel | false    | boolean | false   | whether to use react-admin Labeled component or not. |
| label    | false    | string  |         | the label to display.                                |
| source   | true     | string  |         | the field source to retrieve its value.              |
