UNPKG

@progress/kendo-angular-typography

Version:
46 lines (45 loc) 1.35 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Sets the font size. * You can use these values: * * `xs` * * `sm` * * `md` * * `lg` * * `xl` * * The matching styles for the Default Kendo theme are: * * `xs`—font-size: 10px * * `sm`—font-size: 12px * * `md`—font-size: 16px * * `lg`—font-size: 18px * * `xl`—font-size: 20px * * The matching styles for the Bootstrap Kendo theme are: * * `xs`—font-size: 0.75rem * * `sm`—font-size: 0.875rem * * `md`—font-size: 1rem * * `lg`—font-size: 1.25rem * * `xl`—font-size: 1.5rem * * The matching styles for the Material Kendo theme are: * * `xs`—font-size: 10px * * `sm`—font-size: 12px * * `md`—font-size: 14px * * `lg`—font-size: 16px * * `xl`—font-size: 20px */ export type TypographyFontSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; /** * @hidden */ export declare const typographyFontSizeOptions: { xs: string; sm: string; md: string; lg: string; xl: string; };