Default Emoji

```jsx
<div>
  <Emoji char="🦕" />
  <Emoji char="🐜" />
  <Emoji char="😝" />
</div>
```

For changing Emoji size just add `size` prop to component.

```jsx
<div>
  <Emoji char="🦕" size={60} />
  <Emoji char="🐜" size={120} />
  <Emoji char="😝" size={240} />
</div>
```
