Auth pages #6

Merged
BenjaminPalko merged 12 commits from auth-pages into master 2024-12-15 11:57:27 -05:00
Showing only changes of commit c56d77f26f - Show all commits

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>