@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
14 lines (13 loc) • 448 B
TypeScript
import { QUERIES } from "../../utils/mediaQuery/consts";
export declare enum ALIGN {
START = "start",
CENTER = "center",
END = "end",
STRETCH = "stretch",
BASELINE = "baseline"
}
export declare const alignItemsClasses: {
[K in QUERIES | ALIGN]: K extends QUERIES ? Record<ALIGN, string> : string;
};
declare const getAlignItemsClasses: (align: `${ALIGN}`, viewport?: QUERIES) => string;
export default getAlignItemsClasses;