@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.
13 lines (8 loc) • 294 B
Flow
// @flow
import { Interpolation } from "styled-components";
import type { Theme } from "../../../defaultTheme";
type States = "hover" | "focus";
export type GetCssState = (
state: States,
) => ({ theme: Theme, selectable: boolean }) => ?Interpolation;
declare export default GetCssState;