// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelAlert. * 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 './PixelAlert'; import manifest from './PixelAlert.manifest'; import * as examples from './PixelAlert.examples'; const meta: Meta = { title: 'UI Kit / Feedback / PixelAlert', component: (Component as any).PixelAlert ?? (Component as any).default, tags: ["autodocs","status-stable","cat-feedback"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelAlert — 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 PixelAlert."}
        
); } return ; }, }; /** Tones */ export const Tones: Story = { name: 'Tones', tags: ["example-tones"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Tones ?? (examples as any)['tones']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'tones')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'tones' for PixelAlert."}
        
); } 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 PixelAlert."}
        
); } return ; }, }; /** With Icon */ export const WithIcon: Story = { name: 'With Icon', tags: ["example-with-icon"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithIcon ?? (examples as any)['with-icon']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-icon')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-icon' for PixelAlert."}
        
); } return ; }, }; /** With Action */ export const WithAction: Story = { name: 'With Action', tags: ["example-with-action"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithAction ?? (examples as any)['with-action']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-action')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-action' for PixelAlert."}
        
); } return ; }, }; /** Polite Live Region */ export const PoliteLive: Story = { name: 'Polite Live Region', tags: ["example-polite-live"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).PoliteLive ?? (examples as any)['polite-live']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'polite-live')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'polite-live' for PixelAlert."}
        
); } return ; }, };