UNPKG

@dotconnor/grommet

Version:

focus on the essential experience

29 lines (25 loc) 499 B
import * as React from 'react'; import { BoxTypes } from '../Box'; export interface TableCellProps { plain?: boolean; scope?: 'col' | 'row'; size?: | 'xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | '1/2' | '1/3' | '2/3' | '1/4' | '2/4' | '3/4' | string; verticalAlign?: 'top' | 'middle' | 'bottom'; } declare const TableCell: React.FC<TableCellProps & BoxTypes & JSX.IntrinsicElements['td']>; export { TableCell };