import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import LoadingText from './LoadingText' import './LoadingText.stories.css' const meta: Meta = { title: 'LoadingText', component: LoadingText } export default meta type Story = StoryObj export const H1Small: Story = { render: () => (
) } export const H2Medium: Story = { render: () => (
) } export const H3Large: Story = { render: () => (
) } export const SpanFull: Story = { render: () => (
) } export const PFull2Lines: Story = { render: () => (
) }