Files
hoppscotch/packages/hoppscotch-common/src/components/app/GitHubStarButton.vue
2022-12-02 03:05:35 -05:00

32 lines
653 B
Vue

<template>
<GithubButton
title="Star Hoppscotch on GitHub"
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="size"
/>
</template>
<script setup lang="ts">
import GithubButton from "vue-github-button"
import { useColorMode } from "@composables/theming"
const colorMode = useColorMode()
defineProps({
size: {
type: String,
default: undefined,
},
})
</script>