musica / source /ui /src /lib /StyleOptionsButton.svelte
MMVos's picture
try
4a9e8e5
raw history blame
No virus
215 Bytes
<script lang="ts">
export let key: string;
export let style: string;
</script>
<button value={key} name={style}>🥁</button>
<style>
button {
width: 3.2rem;
aspect-ratio: 1 / 1;
cursor: pointer;
}
</style>