@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.
14 lines (9 loc) • 387 B
Flow
// @flow
import type { Interpolation } from "styled-components";
import type { Props, Type } from "../index";
import type { ThemeProps } from "../../defaultTheme";
type State = "default" | "focus" | "active" | "hover";
export type GetButtonBoxShadow = (
state: State,
) => ({ ...Props, type: Type, ...ThemeProps }) => ?(Interpolation[]);
declare export default GetButtonBoxShadow;