@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.
15 lines (11 loc) • 325 B
Flow
// @flow
import type { Type } from "../index";
import type { Theme } from "../../defaultTheme";
type State = "default" | "focus" | "active" | "hover";
export type GetSocialButtonBoxShadow = (
state: State,
disabled: boolean,
theme: Theme,
type: Type,
) => ?string;
declare export default GetSocialButtonBoxShadow;