UNPKG

@vtex/styleguide

Version:

> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))

10 lines (9 loc) 287 B
import { FC } from 'react'; import useTableMotion from '../hooks/useTableMotion'; import { E2ETestable } from '../types'; declare const Loading: FC<Props>; declare type Props = E2ETestable & { height: number; motion: ReturnType<typeof useTableMotion>; }; export default Loading;