Link
View Source
Usage
css
@import "winduum/src/components/link/index.css" layer(components);
Variants
Props
Installation
Follow instructions for individual framework usage below
Examples
Basic
html
<a href="#" class="x-link" title="">
Link Default
</a>
<a href="#" class="x-link accent-success" title="">
Link Accent
</a>
vue
<script setup lang="ts">
import { Link } from '@/components/link'
</script>
<template>
<Link href="#" title="">
Link Default
</Link>
<Link href="#" class="accent-primary" title="">
Link Primary
</Link>
</template>
jsx
import { Link } from '@/components/link'
export function Example() {
return (
<>
<Link href="#" title="">
Link Default
</Link>
<Link href="#" className="accent-primary" title="">
Link Primary
</Link>
</>
)
}
Underline
html
<a href="#" class="x-link underline" title="">
Link Default
</a>
<a href="#" class="x-link text-primary underline underline-transparent" title="">
Link Primary
</a>