UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

32 lines 1.26 kB
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { TypographyVariantsOptions } from '@mui/material/styles'; import { TypographyStyleOptions } from '@mui/material/styles/createTypography'; export declare const primaryFontFamily: string; export declare const secondaryFontFamily: string; export interface IFontSize { fontSize: number; lineHeight: number; } export declare const BASE_FONT_SIZE: IFontSize; export declare const INPUT_FONT_SIZE: IFontSize; export type CustomTypographyVariantsOptions = TypographyVariantsOptions & { body1Strong: TypographyStyleOptions; body2Strong: TypographyStyleOptions; buttonLarge: TypographyStyleOptions; buttonMedium: TypographyStyleOptions; buttonSmall: TypographyStyleOptions; inputLabel: TypographyStyleOptions; inputLabelStrong: TypographyStyleOptions; linkBody1: TypographyStyleOptions; linkBody2: TypographyStyleOptions; tableHeader: TypographyStyleOptions; tooltip: TypographyStyleOptions; }; export declare const typography: CustomTypographyVariantsOptions; export default typography; //# sourceMappingURL=typography.d.ts.map