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