import React from 'react'; import { StoryMetaType, StoryType } from '@lg-tools/storybook-utils'; import { ParagraphSkeleton } from './ParagraphSkeleton'; export default { title: 'Composition/Loading/SkeletonLoader', component: ParagraphSkeleton, parameters: { controls: { exclude: ['darkMode', 'ref'] }, default: null, generate: { storyNames: ['Paragraph'], combineArgs: { darkMode: [false, true], withHeader: [true, false], }, decorator: Instance => (
), }, }, args: { enableAnimations: false, }, argTypes: { enableAnimations: { control: 'boolean' }, }, } satisfies StoryMetaType; export const Paragraph: StoryType = () => <>;