@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
11 lines (10 loc) • 617 B
TypeScript
import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { JSXElementProps, Partial, ResponsiveProp } from '@smart-react-components/core/types';
import React from 'react';
export interface Props extends IntrinsicStyledCoreProps, Partial<ResponsiveProp<'stickyX', number>>, Partial<ResponsiveProp<'stickyY', number>> {
children: JSX.Element;
elementProps?: JSXElementProps;
hasInternalScroll?: boolean;
}
declare const TableContainer: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default TableContainer;