mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
9 lines
231 B
Svelte
9 lines
231 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
export let title: string;
|
|
</script>
|
|
|
|
<div class="table-col" data-title={title} role="cell" data-private>
|
|
<a role="button" tabindex="0" class="link" {href}><slot /></a>
|
|
</div>
|