/**
 * 弹窗位置
 */
export type PopsPosition =
	| "top_left"
	| "top"
	| "top_right"
	| "center_left"
	| "center"
	| "center_right"
	| "bottom_left"
	| "bottom"
	| "bottom_right";

/**
 * 按钮位置
 */
export type PopsJustifyContent =
	| "center"
	| "end"
	| "flex-end"
	| "flex-start"
	| "left"
	| "normal"
	| "right"
	| "space-around"
	| "space-between"
	| "space-evenly"
	| "start"
	| "stretch"
	| "inherit"
	| "initial"
	| "revert"
	| "revert-layer"
	| "unset";

/**
 * text-align
 */
export type PopsTextAlign =
	| "center"
	| "end"
	| "justify"
	| "left"
	| "right"
	| "start"
	| "-webkit-auto"
	| "-moz-center-or-inherit"
	| "-webkit-center"
	| "-moz-center"
	| "-webkit-left"
	| "-moz-left"
	| "-webkit-match-parent"
	| "-webkit-right"
	| "-moz-right"
	| "inherit"
	| "initial"
	| "revert"
	| "revert-layer"
	| "unset";
