# DropdownPosition

Possible positions for the dropdown relative to its trigger element.

## Definition

```tsx
export type DropdownPosition =
    | 'bottom' | 'bottom-left' | 'bottom-right'
    | 'top' | 'top-left' | 'top-right'
    | 'right' | 'right-top' | 'right-bottom'
    | 'left' | 'left-top' | 'left-bottom'
    | 'top-left-corner' | 'bottom-left-corner' | 'top-right-corner' | 'bottom-right-corner';
```

## Usage

```tsx
import { undefined } from 'uxp/components';
```
