@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.
45 lines • 1.32 kB
TypeScript
import { QUERIES } from "../../utils/mediaQuery";
export declare enum POSITION {
ABSOLUTE = "absolute",
RELATIVE = "relative",
FIXED = "fixed"
}
export declare const positionClasses: {
[K in QUERIES | POSITION]: K extends QUERIES ? Record<POSITION, string> : string;
};
export declare enum SHADOWS {
FIXED = "fixed",
FIXED_REVERSE = "fixedReverse",
LEVEL1 = "level1",
LEVEL2 = "level2",
LEVEL3 = "level3",
LEVEL3_REVERSE = "level3Reverse",
LEVEL4 = "level4",
NAVBAR = "navBar"
}
export declare const shadowClasses: {
[K in QUERIES | SHADOWS]: K extends QUERIES ? Record<SHADOWS, string> : string;
};
export declare enum BORDER_RADIUS {
NONE = "none",
FULL = "full",
FIFTY = "50",
ONE_HUNDRED = "100",
ONE_HUNDRED_FIFTY = "150",
TWO_HUNDRED = "200",
THREE_HUNDRED = "300",
FOUR_HUNDRED = "400"
}
export declare const borderRadiusClasses: {
[K in QUERIES | BORDER_RADIUS]: K extends QUERIES ? Record<BORDER_RADIUS, string> : string;
};
export declare enum OVERFLOW {
AUTO = "auto",
HIDDEN = "hidden",
SCROLL = "scroll",
VISIBLE = "visible"
}
export declare const overflowClasses: {
[K in QUERIES | OVERFLOW]: K extends QUERIES ? Record<OVERFLOW, string> : string;
};
//# sourceMappingURL=tailwindClasses.d.ts.map