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.

8 lines (7 loc) 326 B
import type { Theme } from "../../defaultTheme"; export type TransitionDuration = "slow" | "normal" | "fast"; type Transition = (properties: string[], duration: TransitionDuration, timingFunction: string) => ({ theme }: { theme: Theme; }) => string | null; declare const transition: Transition; export default transition;