@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.
10 lines (9 loc) • 424 B
TypeScript
import type { FlattenSimpleInterpolation } from "styled-components";
import type { Devices } from "../../mediaQuery/types";
import type { Props } from "../types";
import type defaultTheme from "../../../defaultTheme";
declare const getViewportGridStyles: ({ viewport, theme }: {
viewport: Devices;
theme: typeof defaultTheme;
}) => (props: Props) => FlattenSimpleInterpolation;
export default getViewportGridStyles;