export type WidthStyleType = { css?: string; value?: number; unit?: WidthStyleUnitType; }; export type WidthStyleUnitType = "px" | "rem" | "%" | "vh" | "vw";