import { StringHack, Globals } from "./index"; /** * The **`transform-origin`** CSS property sets the origin for an element's transformations. * * **Initial value**: `50% 50% 0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-------: | :-----------: | :----: | :-----: | * | Yes | **16** | **3.1** _-x-_ | **12** | **10** | * | | 3.5 _-x-_ | | | 9 _-x-_ | * * @see https://developer.mozilla.org/docs/Web/CSS/transform-origin */ export type TransformOriginProperty = Globals | TLength | "bottom" | "center" | "left" | "right" | "top" | StringHack;