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