@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 607 B
TypeScript
import type { ReactElement, TableHTMLAttributes } from 'react';
import type { ScrollViewAllProps } from '../../fragments/scroll-view/ScrollView';
import type { SpacingProps } from '../../shared/types';
export type TableScrollViewProps = {
/**
* The content of the component.
*/
children: ReactElement<HTMLTableElement>;
};
export type TableScrollViewAllProps = TableScrollViewProps & Omit<TableHTMLAttributes<HTMLDivElement>, 'children'> & SpacingProps & ScrollViewAllProps;
export default function TableScrollView(props: TableScrollViewAllProps): import("react/jsx-runtime").JSX.Element;