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