@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 (9 loc) • 314 B
Flow
// @flow
import type { ThemeProps } from "../../defaultTheme";
export type TransitionDuration = "slow" | "normal" | "fast";
export type Transition = (
properties: string[],
duration: TransitionDuration,
timingFunction: string,
) => (theme: ThemeProps) => string | null;
declare export default Transition;