@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) • 299 B
TypeScript
import * as React from "react";
import type { Size } from "../common/types";
import type { Type } from "./types";
interface ListContextProps {
readonly size?: Size | null;
readonly type?: Type | null;
}
declare const ListContext: React.Context<ListContextProps>;
export default ListContext;