import type { CSSProperties } from "../CSSProperties"; export type BorderTopLonghands = Required< Pick >; export function borderTop( width: NonNullable, color: NonNullable = "currentcolor", style: NonNullable = "solid", ): BorderTopLonghands { return { borderTopWidth: width, borderTopColor: color, borderTopStyle: style, }; }