Logo.vue 727 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <svg
  3. class="logo"
  4. xmlns="http://www.w3.org/2000/svg"
  5. xmlns:xlink="http://www.w3.org/1999/xlink"
  6. aria-hidden="true"
  7. role="img"
  8. width="24"
  9. height="24"
  10. preserveAspectRatio="xMidYMid meet"
  11. viewBox="0 0 24 24"
  12. >
  13. <path
  14. d="M17 10.54C16.78 7.44 14.63 5 12 5s-4.78 2.44-5 5.54C4 11.23 2 12.5 2 14c0 2.21 4.5 4 10 4s10-1.79 10-4c0-1.5-2-2.77-5-3.46m-2.07 1.3c-1.9.21-3.96.21-5.86 0c-.04-.28-.07-.56-.07-.84c0-2.2 1.35-4 3-4s3 1.8 3 4c0 .28 0 .56-.07.84z"
  15. fill="currentColor"
  16. />
  17. </svg>
  18. </template>
  19. <style scoped lang="scss">
  20. .logo {
  21. animation: 200ms appear;
  22. }
  23. @keyframes appear {
  24. 0% {
  25. @apply opacity-0;
  26. }
  27. 100% {
  28. @apply opacity-100;
  29. }
  30. }
  31. </style>