loading.js 446 B

12345678910
  1. // @flow
  2. export default (whiteTheme?: boolean) => `
  3. <svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  4. <g>
  5. <circle fill="none" stroke="${whiteTheme ? 'white' : '#C8CCD7'}" stroke-width="1.5" cx="16" cy="16" r="15"></circle>
  6. <path d="M 31 16 A 15 15 0 0 0 16 1" fill="none" stroke="#0044CB" stroke-width="1.5" />
  7. </g>
  8. </svg>
  9. `