Update loading spinner
Loader was updated with loading icon svg. Added inline style
for loading icon and added loader svg to status-icon directive.
Status icons will be used in file-upload component for firmware page update.
Signed-off-by: Dixsie Wolmers <dixsiew@gmail.com>
Change-Id: I15e6f9fa39a08fcc8cfe354f8ed4447aab6425a9
diff --git a/app/common/directives/loader.html b/app/common/directives/loader.html
index d3026dc..537122a 100644
--- a/app/common/directives/loader.html
+++ b/app/common/directives/loader.html
@@ -1,4 +1,4 @@
-<div class="loader__wrapper" ng-show="loading"><svg class="loader" viewBox="25 25 50 50">
- <circle class="loader__path" cx="50" cy="50" r="20"/></circle>
-</svg></div>
-<div class="loader__overlay" ng-show="loading"></div>
\ No newline at end of file
+<div class="loader__wrapper" ng-show="loading">
+ <icon class="icon__loader" aria-hidden="true" file="icon-loader.svg"></icon>
+</div>
+<div class="loader__overlay" ng-show="loading"></div>