Component

Link Button

Clickable text that navigates like a button.

Installation

Get the component

npx lomer-ui get link-button
Source code

Usage

Preview

Svelte Code

1
<script lang="ts">
2
  import LinkButton from '$lib/components/base/link-button.svelte';
3
</script>
4

5
<LinkButton href="/">Link as Button</LinkButton>
6