@spark-web/stack
Version:
--- title: Stack storybookPath: page-layout-stack--default isExperimentalPackage: false ---
15 lines (14 loc) • 676 B
TypeScript
declare const alignLookup: {
readonly left: "start";
readonly center: "center";
readonly right: "end";
readonly stretch: "stretch";
};
export declare type Align = keyof typeof alignLookup;
export declare const alignToAlignItems: (prop?: import("@spark-web/theme").ResponsiveProp<"left" | "right" | "center" | "stretch"> | undefined) => "start" | "center" | "stretch" | "end" | {
mobile: "start" | "center" | "stretch" | "end" | undefined;
tablet: "start" | "center" | "stretch" | "end" | undefined;
desktop: "start" | "center" | "stretch" | "end" | undefined;
wide: "start" | "center" | "stretch" | "end" | undefined;
} | undefined;
export {};