import React, { CSSProperties } from 'react'; import { Box, BoxProps, Loader, LoaderProps } from '@wix/design-system'; export interface InitialLoaderProps extends Partial, Partial> { state: { internalScroll?: boolean; }; } export function InitialLoader(props: InitialLoaderProps) { const { dataHook, size, state, minHeight = '300px', ...rest } = props; return ( ); }