import React from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { Text } from '~components/Text' import { LoadingParagraph } from '../index' const meta = { title: 'Components/Loading states/LoadingParagraph', component: LoadingParagraph, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } export const Animated: Story = { args: { isAnimated: true }, } export const Reversed: Story = { args: { isReversed: true }, } export const Link: Story = { args: { isLink: true }, } export const MultiLineExample: Story = { render: () => ( <>
Kaizen is Culture Amp’s design system. It’s the single source of truth for our UX guidelines, design assets, and front-end code to help Culture Amp’s teams rapidly create a world-class experience. ), } export const MultiColumnExample: Story = { render: () => ( <>
Kaizen is Culture Amp’s design system. Kaizen is Culture Amp’s design system. Kaizen is Culture Amp’s design system.
), }