@spark-web/columns
Version:
--- title: Columns storybookPath: page-layout-columns--default isExperimentalPackage: false ---
15 lines (14 loc) • 680 B
TypeScript
declare const alignYLookup: {
readonly top: "start";
readonly center: "center";
readonly bottom: "end";
readonly stretch: "stretch";
};
export declare type AlignY = keyof typeof alignYLookup;
export declare const alignYToAlignItems: (prop?: import("@spark-web/theme").ResponsiveProp<"bottom" | "top" | "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 {};