import type { CSSProperties } from "../CSSProperties"; export type BorderBottomLonghands = Required< Pick< CSSProperties, "borderBottomWidth" | "borderBottomColor" | "borderBottomStyle" > >; export function borderBottom( width: NonNullable, color: NonNullable = "currentcolor", style: NonNullable = "solid", ): BorderBottomLonghands { return { borderBottomWidth: width, borderBottomColor: color, borderBottomStyle: style, }; }