export type BorderWidthStyleType = { css?: string; value?: number; unit?: BorderWidthStyleUnitType; }; export type BorderWidthStyleUnitType = "px" | "em" | "rem" | "%" | "vh" | "vw" | "vmin" | "vmax";