UNPKG

@dotconnor/grommet

Version:

focus on the essential experience

20 lines (16 loc) 384 B
import * as React from 'react'; import { A11yTitleType, AlignSelfType, GridAreaType, MarginType, } from '../../utils'; export interface TableProps { a11yTitle?: A11yTitleType; alignSelf?: AlignSelfType; caption?: string; gridArea?: GridAreaType; margin?: MarginType; } declare const Table: React.FC<TableProps & JSX.IntrinsicElements['table']>; export { Table };