```
<div>
  <ApplyIcon iconId="apply1" />
</div>
```

Example in a button:

```
<button style={{
    background: '#fff',
    borderRadius: '5px',
    border: 'solid 2px #1B7FA7',
  }}
>

  <ApplyIcon fill="#1B7FA7" iconId="apply3" />

  <span style={{
      float: 'right',
      textTransform: 'uppercase',
      background: 'transparent',
      padding: '8px 5px 4px',
      fontSize: '14px',
      color: '#1B7FA7'
    }}
  >
  Apply
  </span>
</button>
```
