mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-07 10:32:49 +00:00
23 lines
328 B
Svelte
23 lines
328 B
Svelte
<script lang="ts">
|
|
export let title: string | undefined;
|
|
export let shortcut: string | undefined;
|
|
</script>
|
|
|
|
{#if title}
|
|
<p>{@html title}</p>
|
|
{/if}
|
|
|
|
{#if shortcut}
|
|
<kbd>
|
|
{#each shortcut.split("+") as key}
|
|
<kbd>{key}</kbd>
|
|
{/each}
|
|
</kbd>
|
|
{/if}
|
|
|
|
<style lang="scss">
|
|
p {
|
|
margin-block: 0;
|
|
}
|
|
</style>
|