> For the complete documentation index, see [llms.txt](https://apcom.gitbook.io/altrone-ui/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apcom.gitbook.io/altrone-ui/utils/enums/elevation.md).

# Elevation

This enum is used to set a shadow

Via this enum you can set how high the component will be located on the Z axis.&#x20;

{% hint style="warning" %}
This enum is available only in **Altrone 2.0** and later
{% endhint %}

```typescript
enum Elevation {
  flat = 'flat', // no shadows
  convex = 'convex', // 0 1px 0 0
  raised = 'raised', // 0 2px 5px 0
  floating = 'floating', // 0 3px 15px 0
  flying = 'flying' // 0 5px 25px 0
}
```
