> 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/v1.0.0/types/ipartialcontent.md).

# IPartialContent

This function is invoked to display a toast (notification popup).

```tsx
interface IPartialContent {
    icon?: string | IToastContent,
    title?: string | IToastContent,
    content: string | IToastContent,
    showCloseBtn?: boolean,
    autoClose?: boolean,
    onClose?: () => void,
    closeAfter?: number,
}
```

## Usage

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