import React, { type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import styles from './LoadingParagraph.module.scss'
export type LoadingParagraphProps = {
isAnimated?: boolean
isCentred?: boolean
isReversed?: boolean
isInline?: boolean
noBottomMargin?: boolean
isLink?: boolean
inheritBaseline?: boolean
/**
* Width as a percentage.
*/
width?: number
} & OverrideClassName>
/**
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3082060062/Loading+Skeleton Guidance} |
* {@link https://cultureamp.design/?path=/docs/components-loading-states-loadingparagraph--docs Storybook}
*/
export const LoadingParagraph = ({
isAnimated,
isCentred,
isReversed,
isInline,
noBottomMargin,
width,
isLink,
inheritBaseline,
classNameOverride,
...restProps
}: LoadingParagraphProps): JSX.Element => (
)
LoadingParagraph.displayName = 'LoadingParagraph'