how to create star icon in each row angular?

I am trying to make star icon in each row.I am generating the row dynamically but I am able to generate rows but my star icon is visible on upper of top row why ..I need to show start icon in each row . http://plnkr.co/edit/mBoAX5xaVTYvdrRuafEw?p=preview

<table ng-table class="table">
    <tr ng-repeat="guitar in guitarVariable" style="border: 5px solid #000000; background: pink" >
    <span class="glyphicon glyphicon-star"></span> 

        <td data-title="'Name'">{{guitar.color}} </td>


        <td data-title="'class'">{{guitar.value}}</td>
    </tr>
</table>

You should put <span class="glyphicon glyphicon-star"></span> inside of td

http://plnkr.co/edit/APJ7mvfFrDNSWF2pKQ6m?p=preview