@fluentui/react-northstar
Version:
A themable React component library.
25 lines (24 loc) • 736 B
TypeScript
export interface TableVariables {
color: string;
hoverColor: string;
backgroundColor: string;
backgroundHoverColor: string;
borderWidth: string;
headerBorderColor: string;
headerBorderHoverColor: string;
headerBorderFocusColor: string;
rowBorderColor: string;
rowBorderHoverColor: string;
rowBorderFocusColor: string;
cellBorderColor: string;
cellBorderHoverColor: string;
cellBorderFocusColor: string;
defaultRowHeight: string;
compactRowHeight: string;
minCellWidth: string;
cellPadding: string;
rowPadding: string;
headerFontSize: string;
bodyFontSize: string;
}
export declare const tableVariables: (siteVariables: any) => Partial<TableVariables>;