@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.
17 lines (16 loc) • 451 B
TypeScript
import type { Theme } from "../../defaultTheme";
import type { Type } from "../types";
declare const getButtonStyles: ({ disabled, theme, type, }: {
disabled: boolean;
theme: Theme;
type: Type;
}) => {
background: string;
backgroundHover: string;
backgroundActive: string;
backgroundFocus: string | null;
foreground: string;
foregroundHover: string;
foregroundActive: string;
};
export default getButtonStyles;