feat: Add notice before showing e-mail (#327)

Co-authored-by: Ushie <ushiekane@gmail.com>
This commit is contained in:
oSumAtrIX
2025-09-17 02:33:53 +02:00
committed by GitHub
parent 287e45a2ad
commit 012e798aed
4 changed files with 85 additions and 5 deletions

View File

@@ -12,6 +12,7 @@
export let label: string = '';
export let disabled: boolean = false;
export let toolTipText: string | undefined = undefined;
export let style: string = '';
$: type = $$slots.default ? type : 'icon';
</script>
@@ -26,6 +27,7 @@
<button
on:click
class={`${type} ${variant}`}
style="{style}"
class:disabled
aria-label={label}
type={functionType}