update button

This commit is contained in:
Benjamin Palko 2024-12-12 13:36:35 -05:00
parent 37d901a86c
commit c56d77f26f

View file

@ -9,12 +9,12 @@
backgroundColor,
primary = false
}: {
type: HTMLButtonAttributes['type'];
onClick: () => void;
type?: HTMLButtonAttributes['type'];
onClick?: () => void;
label: string;
size: 'small' | 'normal' | 'large';
backgroundColor: string;
primary: boolean;
size?: 'small' | 'normal' | 'large';
backgroundColor?: string;
primary?: boolean;
} = $props();
</script>