@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.
29 lines • 888 B
JavaScript
export const TYPES = {
PRIMARY: "primary",
SECONDARY: "secondary"
};
export const SIZES = {
SMALL: "small",
NORMAL: "normal",
LARGE: "large"
};
export const TOKENS = {
backgroundButton: "backgroundButton",
backgroundButtonHover: "backgroundButtonHover",
backgroundButtonActive: "backgroundButtonActive",
backgroundButtonFocus: "backgroundButtonFocus",
colorTextButton: "colorTextButton",
colorTextButtonHover: "colorTextButtonHover",
colorTextButtonActive: "colorTextButtonActive",
heightButton: "heightButton",
fontSizeButton: "fontSizeButton",
paddingButton: "paddingButton",
paddingButtonWithIcons: "paddingButtonWithIcons",
paddingButtonWithLeftIcon: "paddingButtonWithLeftIcon",
paddingButtonWithRightIcon: "paddingButtonWithRightIcon",
marginRightIcon: "marginRightIcon"
};
export const BUTTON_STATES = {
ACTIVE: "active",
FOCUS: "focus"
};