feathersjs/feathers

View on GitHub
docs/.vitepress/components/Logo.vue

Summary

Maintainability
Test Coverage
<template>
  <svg
    class="feathers-logo"
    viewBox="0 0 256 256"
    version="1.1"
    xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    preserveAspectRatio="xMidYMid"
  >
    <g>
      <path
        d="M128,9.102 C193.665,9.102 246.898,62.335 246.898,128 C246.898,193.665 193.665,246.898 128,246.898 C62.335,246.898 9.102,193.665 9.102,128 C9.102,62.335 62.335,9.102 128,9.102 M128,0 C57.421,0 0,57.421 0,128 C0,198.579 57.421,256 128,256 C198.579,256 256,198.579 256,128 C256,57.421 198.579,0 128,0 M148.83,25.524 C138.4,23.628 113.179,61.933 104.836,85.258 C104.202,87.027 102.75,93.507 102.75,95.213 C102.75,95.213 109.281,109.268 111.093,112.564 C108.059,110.984 101.77,98.808 101.77,98.808 C98.736,104.592 95.828,131.148 96.776,136.079 C96.776,136.079 103.538,146.141 106.163,148.657 C102.56,147.456 96.492,139.302 96.492,139.302 C95.354,142.81 95.576,150.109 96.113,152.576 C100.664,159.213 106.732,159.972 106.732,159.972 C106.732,159.972 100.095,226.153 110.145,231.083 C116.403,229.756 117.92,157.127 117.92,157.127 C117.92,157.127 125.505,157.696 127.212,155.8 C131.068,153.145 140.038,125.576 140.17,121.598 C140.17,121.598 129.76,123.55 124.683,125.522 C128.509,121.722 140.732,119.17 140.732,119.17 C144.047,115.191 151.023,88.123 151.726,79.779 C151.902,77.686 152.309,75.122 151.994,71.381 C151.994,71.381 142.053,73.558 139.98,72.805 C142.084,72.568 152.243,68.665 152.243,68.665 C154.044,52.452 154.601,26.574 148.83,25.524 L148.83,25.524 Z M112.45,197.215 C111.655,216.711 111.156,222.219 110.335,226.816 C109.956,227.673 109.577,227.813 109.197,226.721 C105.72,210.729 105.973,90.283 145.606,35.48 C122.556,77.572 112.071,158.341 112.45,197.215 L112.45,197.215 Z"
        fill="currentColor"
      ></path>
    </g>
  </svg>
</template>

<style lang="postcss">
.dark .feathers-logo {
  @apply invert-1;
}
</style>