mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
12 lines
260 B
Svelte
12 lines
260 B
Svelte
<script lang="ts">
|
|
export let href: string;
|
|
export let title: string;
|
|
</script>
|
|
|
|
<li class="tile">
|
|
<a class="card" {href}>
|
|
<h2 class="tiles-title">{title}</h2>
|
|
<span class="icon-right-open" aria-hidden="true"></span>
|
|
</a>
|
|
</li>
|