// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelSpinner. * 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 './PixelSpinner'; import manifest from './PixelSpinner.manifest'; import * as examples from './PixelSpinner.examples'; const meta: Meta = { title: 'UI Kit / Feedback / PixelSpinner', component: (Component as any).PixelSpinner ?? (Component as any).default, tags: ["autodocs","status-stable","cat-feedback"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelSpinner — 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 PixelSpinner."}
        
); } return ; }, }; /** Sizes */ export const Sizes: Story = { name: 'Sizes', tags: ["example-sizes"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Sizes ?? (examples as any)['sizes']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'sizes')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'sizes' for PixelSpinner."}
        
); } 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 PixelSpinner."}
        
); } return ; }, }; /** Pixel surface */ export const PixelSurface: Story = { name: 'Pixel surface', tags: ["example-pixel-surface"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).PixelSurface ?? (examples as any)['pixel-surface']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'pixel-surface')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'pixel-surface' for PixelSpinner."}
        
); } return ; }, }; /** Decorative (inside aria-busy parent) */ export const Decorative: Story = { name: 'Decorative (inside aria-busy parent)', tags: ["example-decorative"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Decorative ?? (examples as any)['decorative']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'decorative')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'decorative' for PixelSpinner."}
        
); } return ; }, };