From 735afc89ea8549402c3a74d11f99cd1234ea066e Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Wed, 13 Nov 2024 14:03:52 -0500 Subject: [PATCH] fix(elements): Export sign-in captcha (#4548) --- .changeset/swift-camels-explode.md | 5 +++++ packages/elements/src/react/sign-in/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/swift-camels-explode.md diff --git a/.changeset/swift-camels-explode.md b/.changeset/swift-camels-explode.md new file mode 100644 index 0000000000..7d21011ba0 --- /dev/null +++ b/.changeset/swift-camels-explode.md @@ -0,0 +1,5 @@ +--- +'@clerk/elements': patch +--- + +Export `` from root sign-in exports. diff --git a/packages/elements/src/react/sign-in/index.ts b/packages/elements/src/react/sign-in/index.ts index c609ef4b38..323e92eb63 100644 --- a/packages/elements/src/react/sign-in/index.ts +++ b/packages/elements/src/react/sign-in/index.ts @@ -5,6 +5,7 @@ export { SignInRoot as SignIn, SignInRoot as Root } from './root'; export { SignInStep as Step } from './step'; export { SignInAction as Action } from './action'; export { SignInPasskey as Passkey } from './passkey'; +export { SignInCaptcha as Captcha } from './captcha'; export { SignInSupportedStrategy as SupportedStrategy } from './choose-strategy'; export { SignInSessionList as SessionList, SignInSessionListItem as SessionListItem } from './choose-session';