<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>