1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: BI Titan
- Copyright IBM Corp. 2017,2018
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
- <style type="text/css">
- .loadingSpinner--animation {
- animation: spin 1s .5s linear infinite;
- animation-fill-mode: forwards;
- transform-origin: 50% 50%;
- }
- @-webkit-keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes spin {
- 0% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- 100% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- </style>
- <path class="loadingSpinner--animation" style="fill: #4178be" d="M1.7,3.1C3.2,1.2,5.4,0,8,0c4.4,0,8,3.6,8,8s-3.6,8-8,8c-2.6,0-4.8-1.2-6.3-3.1l1.6-1.6c1,1.5,2.7,2.4,4.7,2.4
- c3.2,0,5.7-2.6,5.7-5.7S11.2,2.3,8,2.3c-1.9,0-3.6,1-4.7,2.4L1.7,3.1z M0,7.8C0,7.8,0,7.9,0,8c0,0,0,0.1,0,0.1L0,7.8L0,7.8z"/>
- </svg>
|