import type { CSSProperties } from "../CSSProperties"; export type OutlineLonghands = Required< Pick >; export function outline( width: NonNullable, color: NonNullable = "currentcolor", style: NonNullable = "solid", ): OutlineLonghands { return { outlineWidth: width, outlineColor: color, outlineStyle: style, }; }