# IRenderUIItemProps

## Definition

```tsx
export interface IRenderUIItemProps {
    id: string,
    label?: string,
    description?: string,
    component: any,
    uiProps?: any,
    title?: string,
    showDefaultHeader?: boolean // default is true. hide the header if set to false
}
```

## Usage

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