// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelBadgeGroup. * Source: scripts/build-docs/generate-stories.ts * * Safe to edit — once this file is committed the generator will refuse * to overwrite it (a hand-authored *.stories.tsx is detected). */ import type { Meta, StoryObj } from '@storybook/react'; import * as Component from './PixelBadgeGroup'; import manifest from './PixelBadgeGroup.manifest'; import * as examples from './PixelBadgeGroup.examples'; const meta: Meta = { title: 'UI Kit / Data / PixelBadgeGroup', component: (Component as any).PixelBadgeGroup ?? (Component as any).default, tags: ["autodocs","status-stable","cat-data"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelBadgeGroup — generated stub.', }, }, manifest, }, }; export default meta; type Story = StoryObj; /** Default */ export const Default: Story = { name: 'Default', tags: ["example-default"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Default ?? (examples as any)['default']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'default')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'default' for PixelBadgeGroup."}
        
); } return ; }, }; /** Overflow +N */ export const Overflow: Story = { name: 'Overflow +N', tags: ["example-overflow"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Overflow ?? (examples as any)['overflow']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'overflow')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'overflow' for PixelBadgeGroup."}
        
); } return ; }, }; /** Surfaces */ export const Surfaces: Story = { name: 'Surfaces', tags: ["example-surfaces"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Surfaces ?? (examples as any)['surfaces']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'surfaces')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'surfaces' for PixelBadgeGroup."}
        
); } return ; }, };