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