import type { CSSProperties } from "../CSSProperties"; export type GapLonghands = Required< Pick >; export function gap( rowGap: NonNullable, columnGap: NonNullable = rowGap, ): GapLonghands { return { rowGap, columnGap, }; }