import { Globals } from "./index"; /** * The `**overflow-wrap**` CSS property sets whether the browser should insert line breaks within words to prevent text from overflowing its content box. * * **Initial value**: `normal` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :-----: | * | **1** | **3.5** | **1** | **12** | **5.5** | * * @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap */ export type WordWrapProperty = Globals | "break-word" | "normal";