import type { CSSProperties } from "../CSSProperties"; export type FlexFlowLonghands = Required< Pick >; export function flexFlow( direction: NonNullable, wrap: NonNullable = "nowrap", ): FlexFlowLonghands { return { flexDirection: direction, flexWrap: wrap, }; }