component SignInLink { props { label = "Sign in with password" description = "Use your username or email and password" href = "" type = "button" variant = "secondary" disabled = false icon = "icon-[lucide--lock-keyhole]" tone = "password" class = "" } view { {#if href} {#if tone == "account"}{:else}{/if} {label}{#if description}{description}{/if} {:else} {/if} } }