mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 06:52:21 -04: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 tooltip: string;
|
|
|
|
export let icon = "";
|
|
export let onClick: (event: MouseEvent) => void;
|
|
</script>
|
|
|
|
<SquareButton {id} {className} {tooltip} {onClick} {...$$restProps} on:mount>
|
|
{@html icon}
|
|
</SquareButton>
|