Go Main page
Go Main page

Web components

cover

components

TableHead

v.1.0.0 | Saturn

Usage

The name of the object of tokens to style tableHead is TABLE_HEAD_STYLES.

You can not change the name of the object of tokens.

Container component has one way to modify the styles:

  • Variant: modify the styles of the table head.

The structure of the TABLE_HEAD_STYLES object is:

Variants

Variants can modify the styles for the table head.

The tokens used are:

12345
const TABLE_HEAD_STYLES = {
  [VARIANT]: {
    container?: CommonStyleType & TypographyTypes;
  }
};

Example

tableHead theme object example:

1234567
const TABLE_HEAD_STYLES = {
  [VARIANT]: {
    container: {
      display: 'display',
    },
  },
};