What I want to do is add 3 icons to the right of a text area. The text area will be a list of text areas so each row will have the combination of text area -> icons
I have the textarea and icon on the right but I need them to look like the photo
<ng-template #item let-item let-index="index">
<nz-row>
<textarea disabled="true" id="CommentBox_{{ index }}" [(ngModel)]="item.commentText" nz-input rows="4"></textarea>
<button nz-button nzGhost>
Edit
</button>
<button nz-button nzGhost>
Delete
</button>
<button nz-button nzGhost>
Save
</button>
</nz-row>
</ng-template>

You Just have to make the icons right then it should work!! :D
Html
Css: