# MUK CARD VIEW

## Usage

```html

 <lib-muk-view [cardViewData]="cardViewData"> </lib-muk-view>
```

```typescript
import {Component} from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent {

   cardViewData: ICardView[] = [
    {
      title: 'ID',
      value: '#47474',
    },
    {
      title: 'Entity name',
      value: 'Lorem ipsum',
    },
    {
      title: 'Contact Email',
      value: 'Lorem ipsum',
    },
    {
      title: 'Contact Name',
      value: 'Lorem ipsum',
    },
    {
      title: 'Contact Number',
      value: 'Lorem ipsum',
    },
    {
      title: 'Location',
      value: 'Lorem ipsum',
    },
  ];
}
```

### Properties

| Name           | Type        | Description                              |
|----------------|-------------|------------------------------------------|
| cardViewData   | ICardView   | Data of the card view to be displayed  |



