import { Globals } from "./index"; /** * The **`object-fit`** CSS property sets how the content of a replaced element, such as an `` or ``, should be resized to fit its container. * * **Initial value**: `fill` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-: | * | **31** | **36** | **10** | **16** | No | * * @see https://developer.mozilla.org/docs/Web/CSS/object-fit */ export type ObjectFitProperty = Globals | "contain" | "cover" | "fill" | "none" | "scale-down";