@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.
20 lines • 781 B
TypeScript
import type * as React from "react";
import type * as Common from "../common/types";
export interface Props extends Common.Globals {
readonly as?: string;
readonly title?: React.ReactNode;
readonly description?: React.ReactNode;
readonly icon?: React.ReactNode;
readonly header?: React.ReactNode;
readonly children?: React.ReactNode;
readonly external?: boolean;
readonly href?: string;
readonly onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>>;
readonly expandable?: boolean;
readonly expanded?: boolean;
readonly initialExpanded?: boolean;
readonly noHeaderIcon?: boolean;
readonly htmlTitle?: string;
readonly noPadding?: boolean;
}
//# sourceMappingURL=types.d.ts.map