@vtex/styleguide
Version:
> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))
16 lines (15 loc) • 614 B
TypeScript
import { PropsWithChildren, FC } from 'react';
import { E2ETestable, ComposableWithRef, HasMotion, NativeTable } from '../types';
import { ComposableTbody } from './Tbody';
import { ComposableThead } from './Thead';
declare type Props = PropsWithChildren<E2ETestable & HasMotion & NativeTable & {
disableScroll?: boolean;
}>;
interface Composites {
Head?: ComposableThead;
Body?: ComposableTbody;
LoadedView?: FC;
}
export declare type ComposableSections = ComposableWithRef<HTMLTableElement, Props, Composites>;
declare const FowardedSections: ComposableSections;
export default FowardedSections;