import { StringHack, Globals, AbsoluteSize } from "./index"; /** * The **`font-size`** CSS property sets the size of the font. This property is also used to compute the size of `em`, `ex`, and other relative `` units. * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **1** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/font-size */ export type FontSizeProperty = Globals | AbsoluteSize | TLength | "larger" | "smaller" | StringHack;