import { StringHack, Globals, LineWidth } from "./index"; /** * The **`border-right-width`** CSS property sets the width of the right border of an element. * * **Initial value**: `medium` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :----: | :---: | * | **1** | **1** | **1** | **12** | **4** | * * @see https://developer.mozilla.org/docs/Web/CSS/border-right-width */ export type BorderRightWidthProperty = Globals | LineWidth;