/** * Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved. */ export interface ITypographySystem { readonly primaryFontSize: string; readonly primaryLineHeight: string; readonly primaryFont: string; readonly fontSizeXS: string; readonly fontSizeS: string; readonly fontSizeL: string; readonly fontSizeXl: string; readonly fontSizeXxl: string; readonly fontSizeXxxl: string; readonly fontSizeXxxxl: string; }