UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 361 B
import React, { CSSProperties, ReactNode } from 'react'; type Props = { children: ReactNode; horizontalPadding?: string; verticalPadding?: string; className?: string; style?: CSSProperties; }; declare const Table: ({ children, className, style, horizontalPadding, verticalPadding, }: Props) => React.JSX.Element; export { Table };