umd-styles-library
    Preparing search index...

    Variable interativeMediumConst

    interativeMedium: {
        fontFamily: string;
        fontSize: string;
        lineHeight: string;
        [key: string]:
            | string
            | {
                fontSize: string;
                fontWeight?: undefined;
                letterSpacing?: undefined;
                lineHeight?: undefined;
            }
            | {
                fontSize: string;
                fontWeight: string;
                letterSpacing: string;
                lineHeight: string;
            };
    } = ...

    Medium interactive typography style with responsive scaling.

    Type declaration

    • [key: string]:
          | string
          | {
              fontSize: string;
              fontWeight?: undefined;
              letterSpacing?: undefined;
              lineHeight?: undefined;
          }
          | {
              fontSize: string;
              fontWeight: string;
              letterSpacing: string;
              lineHeight: string;
          }
    • fontFamily: string
    • fontSize: string
    • lineHeight: string
    import * as Styles from '@universityofmaryland/web-styles-library';
    // Use in object spread syntax
    const myStyle = { ...Styles.typography.elements.interativeMedium };

    1.1.0