blob: f07eafde4a64af0f1a4e7999184c512ebab334c5 (
plain) (
blame)
1
2
3
4
5
6
7
|
<script lang="ts">
let { title, onclick }: { title: string; onclick: () => void } = $props();
</script>
<button class="btn-blue" {title} aria-label={title} {onclick}>
<span class="icon-base icon-[material-symbols--add]"></span>
</button>
|