UNPKG

@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.

11 lines (10 loc) 432 B
import type { Type } from "../types"; import type { Theme } from "../../defaultTheme"; import type { IconForeground } from "../../primitives/ButtonPrimitive/types"; type getButtonLinkIconForegroundType = ({ type, theme, compact, }: { type: Type; theme: Theme; compact: boolean; }) => IconForeground; declare const getButtonLinkIconForeground: getButtonLinkIconForegroundType; export default getButtonLinkIconForeground;