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