Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 650 Bytes

File metadata and controls

27 lines (17 loc) · 650 Bytes

Link

Props

All available props see in Link.props.ts

Figma

Component in figma project

i18n

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

Usage

<template>
  <Link text="google.com" href="https://google.com" target="_blank" />
</template>

<script setup lang="ts">
import { Link } from '@tok/ui/components/Link';
</script>