@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.
8 lines • 418 B
TypeScript
import type { ButtonCommonProps } from "../../primitives/ButtonPrimitive/types";
export type Type = "info" | "secondary" | "success" | "warning" | "critical" | "infoSubtle" | "successSubtle" | "warningSubtle" | "criticalSubtle";
type OmittedButtonCommonProps = Omit<ButtonCommonProps, "size">;
export type Props = {
readonly type?: Type;
} & OmittedButtonCommonProps;
export {};
//# sourceMappingURL=types.d.ts.map