import { StringHack, Globals } from "./index"; /** * The **`padding-inline`** CSS property defines the logical inline start and end padding of an element, which maps to physical padding properties depending on the element's writing mode, directionality, and text orientation. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | n/a | **66** | No | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/padding-inline */ export type PaddingInlineProperty = Globals | TLength | StringHack;