I am trying to use angular material instead of bootstrap in previously created application and I don't know how to replace the bootstrap icons with angular material.Thank you for the help.
<md-button class="md-fab md-mini" color="warn"
ng-repeat="question in quiz.dataService.quizQuestions"
ng-class="{'btn-info': question.selected !== null, 'btn-danger': question.selected === null}"
ng-click="quiz.setActiveQuestion($index)">
<span class="glyphicon"
ng-class="{'glyphicon-pencil': question.selected !== null, 'glyphicon-question-sign': question.selected === null}">
</span>
</md-button>
I am trying to replace glyphicon -pencil and glyphicon-question with
<i class="material-icons">help</i>
<i class="material-icons">star_border</i>
I tried this but didn't work
<i class="material-icons">
{'help' = : question.selected !== null, 'star_border': question.selected === null}
</i>
<ng-md-icon icon="help" style="fill: ..." size="..."></ng-md-icon>
in the place of<i class="material-icons">help</i>
? – BrTkCa