@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.
23 lines • 790 B
TypeScript
import type * as React from "react";
import type * as Common from "../../common/types";
export interface BasicProps extends Common.SpaceAfter {
readonly inline?: boolean;
readonly rows?: string;
readonly columns?: string;
readonly gap?: string;
readonly rowGap?: string;
readonly columnGap?: string;
readonly maxWidth?: string;
readonly width?: string;
}
export interface Props extends Common.Globals, Common.SpaceAfter, BasicProps {
readonly as?: string;
readonly className?: string;
readonly mediumMobile?: BasicProps;
readonly largeMobile?: BasicProps;
readonly tablet?: BasicProps;
readonly desktop?: BasicProps;
readonly largeDesktop?: BasicProps;
readonly children: React.ReactNode;
}
//# sourceMappingURL=types.d.ts.map