import { type Meta, type StoryObj } from '@storybook/react' import { BrandMomentCaptureIntro } from '../index' const meta = { title: 'Components/Illustrations/Scene/BrandMomentCaptureIntro', component: BrandMomentCaptureIntro, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } export const Animated: Story = { args: { loop: false, isAnimated: true, }, } export const Looped: Story = { args: { isAnimated: true, loop: true, }, } export const Autoplay: Story = { args: { isAnimated: true, loop: true, autoplay: false, }, }