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