@sorocraft/ui 1.2.36 → 1.2.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
|
-
export type Breakpoint = "mobile-
|
|
2
|
+
export type Breakpoint = "mobile-xxs" | "mobile-xs" | "mobile-sm" | "mobile-md" | "tablet-sm" | "tablet-md" | "tablet-lg" | "desktop-sm" | "desktop-md" | "desktop-lg";
|
|
3
3
|
export type AlignItems = "flex-start" | "center" | "flex-end" | "stretch" | "baseline";
|
|
4
4
|
export type JustifyContent = "flex-start" | "center" | "flex-end" | "space-between" | "space-around";
|
|
5
5
|
export type Wrap = "wrap" | "nowrap" | "wrap-reverse";
|