export type Property = number | boolean | string | Record<string, string>;
export type Direction = "row" | "column" | "row-reverse" | "column-reverse";
export type Align = "start" | "center" | "end" | "stretch" | "baseline";
export type Justify = "start" | "end" | "center" | "between" | "around";
