import { Globals } from "./index"; /** * The **`transform-box`** CSS property defines the layout box to which the `transform` and `transform-origin` properties relate. * * **Initial value**: `border-box ` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | **64** | **55** | n/a | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/transform-box */ export type TransformBoxProperty = Globals | "border-box" | "fill-box" | "view-box";