@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.
20 lines (19 loc) • 587 B
TypeScript
import type { Type } from "../types";
import type { Theme } from "../../defaultTheme";
interface ButtonLinkStyles {
background?: string;
backgroundHover?: string;
backgroundActive?: string;
backgroundFocus?: string;
foreground?: string;
foregroundHover?: string;
foregroundActive?: string;
foregroundFocus?: string;
}
type GetButtonLinkStylesType = ({ type, theme, compact, }: {
type: Type;
theme: Theme;
compact: boolean;
}) => ButtonLinkStyles;
declare const getButtonLinkStyles: GetButtonLinkStylesType;
export default getButtonLinkStyles;