All available props see in Link.props.ts
The component natively supports i18n for text and href values.
You can provide a text and href as a locale token, and it will be dynamically translated
<template>
<Link text="google.com" href="https://google.com" target="_blank" />
</template>
<script setup lang="ts">
import { Link } from '@tok/ui/components/Link';
</script>