react-bootstrap-typescript icon indicating copy to clipboard operation
react-bootstrap-typescript copied to clipboard

Table does not support "fill" property

Open christhomas opened this issue 8 years ago • 0 comments

The Table component, should according to the docs, support the "fill" attribute, I have tested that modifying the d.ts file for the Table to be like as follows, it will work.

export interface TableProps extends React.Props<TableClass> {
  bordered?: boolean;
  className?: string;
  condensed?: boolean;
  hover?: boolean;
  responsive?: boolean;
  striped?: boolean;
  fill?: boolean;
}

christhomas avatar Sep 05 '16 14:09 christhomas