UNPKG

@teamsparta/stack-flex

Version:
8 lines (6 loc) 458 B
type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse"; type FlexWrap = "nowrap" | "wrap" | "wrap-reverse"; type FlexJustifyContent = "start" | "end" | "center" | "between" | "around" | "evenly"; type FlexAlignItems = "start" | "end" | "center" | "baseline" | "stretch"; type FlexPosition = "static" | "relative" | "absolute" | "fixed" | "sticky"; export type { FlexAlignItems, FlexDirection, FlexJustifyContent, FlexPosition, FlexWrap };