Files
hoppscotch/packages/hoppscotch-ui/src/stories/Anchor.story.vue
2023-04-18 23:14:06 +05:30

25 lines
597 B
Vue

<template>
<Story title="Anchor">
<div class="text-secondaryLight text-tiny">
By signing in, you are agreeing to our
<HoppSmartAnchor
class="text-red-800 link"
to="https://docs.hoppscotch.io/support/terms"
blank
label="Terms of Service"
/>
and
<HoppSmartAnchor
class="text-red-600 link"
to="https://docs.hoppscotch.io/support/privacy"
blank
label="Privacy Policy"
/>
</div>
</Story>
</template>
<script setup lang="ts">
import { HoppSmartAnchor } from "../components/smart"
</script>