https://i.sstatic.net/Jf9Mj.png
I am attempting to place the icon on the right side of the div, occupying 10% of the space, while ensuring that the title takes up 90% of the div's width regardless of its length.
<div class="col-md-12">
<nb-card >
<nb-card-body class="d-flex flex-row align-items-center">
<label for="icon" class="label col-sm-3 col-form-label">{{title}}</label>
<nb-icon id="icon" pack='eva' icon='minus-square' name="minus-square"
status="{{status}}"></nb-icon>
</nb-card-body>
</nb-card>
</div>
What specific classes should be included in order to achieve this fixed layout?