diff --git a/packages/shared-components/src/prototypes/ai/BrandedPill.stories.tsx b/packages/shared-components/src/prototypes/ai/BrandedPill.stories.tsx
new file mode 100644
index 0000000000..b437891206
--- /dev/null
+++ b/packages/shared-components/src/prototypes/ai/BrandedPill.stories.tsx
@@ -0,0 +1,57 @@
+/*
+ * Copyright 2026 New Vector Ltd.
+ *
+ * SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
+ * Please see LICENSE files in the repository root for full details.
+ */
+
+import React from "react";
+
+import type { Meta, StoryObj } from "@storybook/react-vite";
+
+const logoUrl = "https://www.figma.com/api/mcp/asset/3cada957-97ed-4731-9c1f-32c8abb23c8f";
+
+interface BrandedPillProps {
+ logoSrc?: string;
+ logoAlt?: string;
+}
+
+function BrandedPill({ logoSrc = logoUrl, logoAlt = "Logo" }: BrandedPillProps): React.JSX.Element {
+ return (
+
+
+
+ );
+}
+
+const meta = {
+ title: "AI Prototypes/Branded Pill",
+ component: BrandedPill,
+ tags: ["!autodocs"],
+} satisfies Meta;
+
+export default meta;
+type Story = StoryObj;
+
+export const Default: Story = {};