api-client/components/app/Logo.vue

34 lines
727 B
Vue
Raw Normal View History

<template>
2021-08-02 18:53:04 +00:00
<svg
class="logo"
xmlns="http://www.w3.org/2000/svg"
2021-08-15 09:48:04 +00:00
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true"
role="img"
width="24"
height="24"
preserveAspectRatio="xMidYMid meet"
viewBox="0 0 24 24"
2021-08-02 18:53:04 +00:00
>
<path
2021-08-15 09:48:04 +00:00
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"
fill="currentColor"
2021-08-02 18:53:04 +00:00
/>
2019-09-26 09:55:37 +00:00
</svg>
</template>
2021-07-03 13:14:58 +00:00
<style scoped lang="scss">
.logo {
animation: 200ms appear;
2020-02-24 18:44:50 +00:00
}
2021-07-03 13:14:58 +00:00
@keyframes appear {
0% {
@apply opacity-0;
}
100% {
@apply opacity-100;
}
}
</style>