// @ts-nocheck — generated stub. Delete this comment after curating. /* eslint-disable */ /** * AUTO-GENERATED stub story for PixelDivider. * 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 './PixelDivider'; import manifest from './PixelDivider.manifest'; import * as examples from './PixelDivider.examples'; const meta: Meta = { title: 'UI Kit / Layout / PixelDivider', component: (Component as any).PixelDivider ?? (Component as any).default, tags: ["autodocs","status-stable","cat-layout"], parameters: { layout: 'padded', docs: { description: { component: (manifest as any)?.description ?? 'PixelDivider — 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 PixelDivider."}
        
); } return ; }, }; /** With Label */ export const WithLabel: Story = { name: 'With Label', tags: ["example-with-label"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).WithLabel ?? (examples as any)['with-label']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'with-label')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'with-label' for PixelDivider."}
        
); } 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 PixelDivider."}
        
); } return ; }, }; /** Spacings */ export const Spacings: Story = { name: 'Spacings', tags: ["example-spacings"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).Spacings ?? (examples as any)['spacings']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'spacings')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'spacings' for PixelDivider."}
        
); } 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 PixelDivider."}
        
); } return ; }, }; /** Plain Rule */ export const PlainRule: Story = { name: 'Plain Rule', tags: ["example-plain-rule"], parameters: { docs: { description: { story: undefined } }, }, render: () => { const ExampleComponent = ((examples as any).PlainRule ?? (examples as any)['plain-rule']) ?? ((manifest as any)?.examples?.find?.((e: any) => e?.id === 'plain-rule')?.Component); if (!ExampleComponent) { return (
          {"Missing example 'plain-rule' for PixelDivider."}
        
); } return ; }, };