import type { CSSProperties } from "../CSSProperties"; export type InsetLonghands = Required< Pick >; export function inset(all: NonNullable): InsetLonghands; export function inset( vertical: NonNullable, horizontal: NonNullable, ): InsetLonghands; export function inset( top: NonNullable, horizontal: NonNullable, bottom: NonNullable, ): InsetLonghands; export function inset( top: NonNullable, right: NonNullable, bottom: NonNullable, left: NonNullable, ): InsetLonghands; export function inset( top: NonNullable, right: NonNullable = top, bottom: NonNullable = top, left: NonNullable = right, ): InsetLonghands { return { top, right, bottom, left, }; }