import type { CSSProperties } from "../CSSProperties"; export type BorderLeftLonghands = Required< Pick >; export function borderLeft( width: NonNullable, color: NonNullable = "currentcolor", style: NonNullable = "solid", ): BorderLeftLonghands { return { borderLeftWidth: width, borderLeftColor: color, borderLeftStyle: style, }; }