import type { CSSProperties } from "../CSSProperties"; export type FlexLonghands = Required< Pick >; export function flex( grow: NonNullable, shrink: NonNullable = 1, basis: NonNullable = 0, ): FlexLonghands { return { flexGrow: grow, flexShrink: shrink, flexBasis: basis, }; }