# MUK LOADING SPINNER

## Usage

```html

<lib-muk-not-found-data
        [message]="message"
></lib-muk-not-found-data>
```

```typescript
import {Component} from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent {
    message = 'No data found';
}
```

### Properties

| Name      | Type     | Description        |
|-----------|----------|--------------------|
| `message` | `string` | Message to display |
