@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
27 lines • 896 B
JavaScript
import { TableRowVariantTypeV2 } from './variants';
export const getTableRowStyles = (COLORS) => {
return {
[TableRowVariantTypeV2.HEADER_ROW_DEFAULT]: {
container: {
display: 'table-row',
},
},
[TableRowVariantTypeV2.BODY_ROW_DEFAULT]: {
container: {
display: 'table-row',
},
hoveredCellContainer: {
// TODO When specified - update tokens
color: 'black',
background_color: COLORS.NEUTRAL.color_neutral_bg_200,
cursor: 'pointer',
},
activeCellContainer: {
// TODO When specified - update tokens
color: 'white',
background_color: COLORS.SECONDARY.color_secondary_bg_100,
},
},
};
};
//# sourceMappingURL=styles.js.map