> For the complete documentation index, see [llms.txt](https://help.iviva.com/uxp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.iviva.com/uxp/stable/types/icirclebound.md).

# ICircleBound

```tsx
interface ICircleBound {
    /**
     * center of the circle
     */
    center: [number, number],
    /**
     * radius of the circle
     */
    radius: number
}
```

## Usage

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