Risuai 0.6.3 first commit

This commit is contained in:
kwaroran
2023-05-07 12:41:45 +09:00
parent 50e5e1d917
commit 2c5c7d2694
98 changed files with 15070 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<button class="relative help inline-block cursor-default hover:text-green-500" on:click={() => {
alertMd(language.help[key])
}}>
{#if key === "experimental"}
<FlaskConicalIcon size={14} />
{:else}
<HelpCircleIcon size={14} />
{/if}
</button>
<script lang="ts">
import { FlaskConicalIcon, HelpCircleIcon } from "lucide-svelte";
import { language } from "src/lang";
import { alertMd } from "src/ts/alert";
export let key: (keyof (typeof language.help))
</script>