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