@teamsparta/stack-flex
Version:
stack flex
8 lines (6 loc) • 458 B
text/typescript
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 };