UNPKG

@spark-web/inline

Version:

--- title: Inline storybookPath: page-layout-inline--default isExperimentalPackage: false ---

26 lines (25 loc) 1.12 kB
declare const alignLookup: { readonly left: "start"; readonly center: "center"; readonly right: "end"; }; declare const alignYLookup: { readonly top: "start"; readonly center: "center"; readonly bottom: "end"; }; export type Align = keyof typeof alignLookup; export type AlignY = keyof typeof alignYLookup; export declare const alignToJustifyContent: (prop?: import("@spark-web/theme").ResponsiveProp<"center" | "left" | "right"> | undefined) => "center" | "end" | "start" | { mobile: "center" | "end" | "start" | undefined; tablet: "center" | "end" | "start" | undefined; desktop: "center" | "end" | "start" | undefined; wide: "center" | "end" | "start" | undefined; } | undefined; export declare const alignYToAlignItems: (prop?: import("@spark-web/theme").ResponsiveProp<"center" | "bottom" | "top"> | undefined) => "center" | "end" | "start" | { mobile: "center" | "end" | "start" | undefined; tablet: "center" | "end" | "start" | undefined; desktop: "center" | "end" | "start" | undefined; wide: "center" | "end" | "start" | undefined; } | undefined; export {};