# IWidgetTitleBarProps

## Definition

```tsx
interface IWidgetTitleBarProps {
    /**
     * The title to show for the widget
     */
    title: string;

    /**
     * The url for an icon to be shown next to the title on the top left corner.
     */
    icon?: string;
    className?: string
    children?: React.ReactNode
}
```

## Usage

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