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; } ```