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