@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.
16 lines (12 loc) • 333 B
Flow
// @flow
import * as React from "react";
export type Media = {|
+isLargeDesktop: ?boolean,
+isDesktop: ?boolean,
+isLargeMobile: ?boolean,
+isMediumMobile: ?boolean,
+isTablet: ?boolean,
+prefersReducedMotion: ?boolean,
|};
export type QueryContextType = React.Context<Media>;
declare export default QueryContextType;