@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) • 326 B
Flow
// @flow
import type { CSSRules } from "styled-components";
import type { Position } from "..";
import type { Theme } from "../../defaultTheme";
export type GetTransitionAnimation = ({|
width: string,
shown: boolean,
position: Position,
theme: Theme,
|}) => CSSRules;
declare export default GetTransitionAnimation;