mirror of
https://github.com/ankitects/anki.git
synced 2025-11-07 13:17:12 -05:00
14 lines
371 B
Svelte
14 lines
371 B
Svelte
<script lang="typescript">
|
|
import SquareButton from "./SquareButton.svelte";
|
|
|
|
export let id = "";
|
|
export let className = "";
|
|
export let props: Record<string, string> = {};
|
|
|
|
export let icon = "";
|
|
export let onClick: (event: ClickEvent) => void;
|
|
</script>
|
|
|
|
<SquareButton {id} {className} {props} {onClick} on:mount>
|
|
{@html icon}
|
|
</SquareButton>
|