UNPKG

673 BTypeScriptView Raw
1export interface TableRowClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** State class applied to the root element if `selected={true}`. */
5 selected: string;
6 /** State class applied to the root element if `hover={true}`. */
7 hover: string;
8 /** Styles applied to the root element if table variant="head". */
9 head: string;
10 /** Styles applied to the root element if table variant="footer". */
11 footer: string;
12}
13export type TableRowClassKey = keyof TableRowClasses;
14export declare function getTableRowUtilityClass(slot: string): string;
15declare const tableRowClasses: TableRowClasses;
16export default tableRowClasses;