#### Default View

```jsx
<div style={{ display: 'flex' }}>
  <TutorialTile
    tutorial={{
      title: 'Embedded Component',
      _id: '123',
      backgroundColor: 'edb33e',
      emoji: '🦉'
    }}
    openTutorial={e => console.log(e)}
  />
</div>
```

#### Display Notification

```jsx
<div style={{ display: 'flex' }}>
  <TutorialTile
    tutorial={{
      title: 'Embedded Component',
      _id: '123',
      backgroundColor: 'edb33e',
      emoji: '🦉'
    }}
    status={'New'}
  >
    <i className="icon icon-eye-crossed" />
    Only Admins can see this
  </TutorialTile>
</div>
```
