# INotificationProps

## Definition

```tsx
interface INotificationProps {
     /**
     *  Message to show when showing
     */
    message: string,
    /**
     * Any extra css classes to apply
     */
    class?: string,
    /**
     * any extra styles
     */
    styles?: any
}
```

## Usage

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