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.

14 lines (9 loc) 355 B
// @flow import type { Interpolation } from "styled-components"; import type { ThemeProps } from "../../defaultTheme"; import type { Props } from "../index"; type State = "active" | "focus"; export type GetButtonLinkBoxShadow = ( state: State, ) => ({ ...Props, ...ThemeProps }) => ?(Interpolation[]); declare export default GetButtonLinkBoxShadow;