import type { CSSProperties } from "../CSSProperties"; export type OverflowLonghands = Required< Pick >; export function overflow( x: NonNullable, y: NonNullable = x, ): OverflowLonghands { return { overflowX: x, overflowY: y, }; }