From 0b007718aa2a4e7b6d8726f54f041d09982a290b Mon Sep 17 00:00:00 2001 From: wobsoriano Date: Tue, 11 Feb 2025 09:39:52 -0800 Subject: [PATCH 1/3] chore: Add appearance option to Astro unstyled components --- .../src/astro-components/unstyled/SignInButton.astro | 8 ++++---- .../src/astro-components/unstyled/SignOutButton.astro | 2 +- .../src/astro-components/unstyled/SignUpButton.astro | 8 ++++---- packages/astro/src/types.ts | 1 - 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/packages/astro/src/astro-components/unstyled/SignInButton.astro b/packages/astro/src/astro-components/unstyled/SignInButton.astro index 12b355b3eb0..03a155da4ab 100644 --- a/packages/astro/src/astro-components/unstyled/SignInButton.astro +++ b/packages/astro/src/astro-components/unstyled/SignInButton.astro @@ -1,10 +1,10 @@ --- import type { HTMLTag, Polymorphic } from 'astro/types' -import type { SignInProps } from '@clerk/types' +import type { SignInButtonProps } from '@clerk/types' import type { ButtonProps } from '../../types'; import { addUnstyledAttributeToFirstTag, logAsPropUsageDeprecation } from './utils' -type Props = Polymorphic> +type Props = Polymorphic> import { generateSafeId } from '@clerk/astro/internal'; @@ -50,14 +50,14 @@ if (asChild) { ) } -