import { StringHack, Globals } from "./index"; /** * The **`shape-margin`** CSS property sets a margin for a CSS shape created using `shape-outside`. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------------: | :--: | :-: | * | **37** | **62** | **10.1** _-x-_ | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/shape-margin */ export type ShapeMarginProperty = Globals | TLength | StringHack;