Is there a way to replace the default drop down arrow with a new one without creating a new class and adding it to the label?
<i class="icon-xyz-chevron down-rotation"></i>
Any suggestions on achieving this?
<label class="col-md-8 col-sm-8 col-xs-12">
<select class="template-drop-down custom-alert" ng-class="{'alert alert-danger': !$ctrl.formObject.visitors[$index].selectedPark && !$ctrl.formActionsObject.validateFormDetails}" ng-options="parkArea as parkArea.name for parkArea in $ctrl.formDataObject.parkAreas track by parkArea.code"
ng-model="$ctrl.formObject.visitors[$index].selectedPark">
<option value="parkArea.name"></option>
</select>
<span class="template-drop-down custom-alert-message" ng-if="!$ctrl.formObject.visitors[$index].selectedParkArea && !$ctrl.formActionsObject.validateFormDetails">
<ng-message data-when="required" data-i18n-key="errors.selectedPark.required"></ng-message>
</span>
</label>