@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.
24 lines (20 loc) • 424 B
Flow
// @flow
import type { ThemeProps } from "../../defaultTheme";
import type { Type } from "..";
import type {
Background,
BoxShadow,
Foreground,
Underlined,
} from "../../primitives/ButtonPrimitive";
export type GetButtonLinkStyles = ({|
type: Type,
compact: boolean,
...ThemeProps,
|}) => {|
...Background,
...Foreground,
...BoxShadow,
...Underlined,
|};
declare export default GetButtonLinkStyles;