Files
hoppscotch/components/app/GitHubStarButton.vue
2021-07-06 18:00:38 +00:00

30 lines
602 B
Vue

<template>
<TranslateFade appear>
<GithubButton
title="Star Hoppscotch"
href="https://github.com/hoppscotch/hoppscotch"
:data-color-scheme="
$colorMode.value != 'light'
? $colorMode.value == 'black'
? 'dark'
: 'dark_dimmed'
: 'light'
"
:data-show-count="true"
data-text="Star"
aria-label="Star Hoppscotch on GitHub"
data-size="large"
/>
</TranslateFade>
</template>
<script>
import GithubButton from "vue-github-button"
export default {
components: {
GithubButton,
},
}
</script>