// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelPortal. * 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 './PixelPortal'; import manifest from './PixelPortal.manifest'; import * as examples from './PixelPortal.examples'; const meta: Meta = { title: 'UI Kit / Overlay Foundation / PixelPortal', component: (Component as any).PixelPortal ?? (Component as any).default, tags: ["autodocs","status-stable","cat-overlay-foundation"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelPortal — 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 PixelPortal."}
        
); } return ; }, }; /** Disabled (inline) */ export const Disabled: Story = { name: 'Disabled (inline)', tags: ["example-disabled"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Disabled ?? (examples as any)['disabled']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'disabled')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'disabled' for PixelPortal."}
        
); } return ; }, };