I have the following div with info and a span inside as I can do so that this span is stuck to the top of the div so that it looks like the image:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="container" style="margin-top: 30px;">
<div class="row">
<div class="col xl12 l12 m12 s12 center">
<div class='chip green accent-2' style="font-size: 25px;">20
<div style="float: right; font-size: 12px !important">
<span>
<i class="tiny material-icons">arrow_upward</i>10
</span>
</div>
</div>
</div>
</div>
</div>