+
+ {t('elements.display.attribution.powered_by')}
+
+
+
+ >
+ );
+};
+
+export default Attribution;
diff --git a/packages/react/src/components/primitives/Attribution/index.ts b/packages/react/src/components/primitives/Attribution/index.ts
new file mode 100644
index 0000000..86c1084
--- /dev/null
+++ b/packages/react/src/components/primitives/Attribution/index.ts
@@ -0,0 +1,20 @@
+/**
+ * Copyright (c) 2026, WSO2 LLC. (https://www.wso2.com).
+ *
+ * WSO2 LLC. licenses this file to you under the Apache License,
+ * Version 2.0 (the "License"); you may not use this file except
+ * in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export {default} from './Attribution';
+export type {AttributionProps} from './Attribution';
diff --git a/packages/react/src/contexts/ThunderID/ThunderIDContext.ts b/packages/react/src/contexts/ThunderID/ThunderIDContext.ts
index e3ec459..2b59912 100644
--- a/packages/react/src/contexts/ThunderID/ThunderIDContext.ts
+++ b/packages/react/src/contexts/ThunderID/ThunderIDContext.ts
@@ -209,6 +209,12 @@ export type ThunderIDContextProps = {
signUpUrl: string | undefined;
+ /**
+ * Whether to show the "Powered by ThunderID" attribution badge on pre-login authentication
+ * surfaces. Resolved from the `showAttribution` config option, defaulting to `true`.
+ */
+ showAttribution?: boolean;
+
user: any;
/**
@@ -257,6 +263,7 @@ const ThunderIDContext: Context