import type { CSSProperties } from "../CSSProperties"; export type ColumnRuleLonghands = Required< Pick >; export function columnRule( width: NonNullable, color: NonNullable = "currentcolor", style: NonNullable = "solid", ): ColumnRuleLonghands { return { columnRuleWidth: width, columnRuleColor: color, columnRuleStyle: style, }; }