@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 • 347 B
TypeScript
import * as React from "react";
import type * as Common from "../../common/types";
interface Props {
children: React.ReactNode;
className?: string;
size?: Common.InputSize;
}
declare const ActiveButton: ({ children, className, size }: Props) => React.JSX.Element;
export default ActiveButton;
//# sourceMappingURL=ActiveButton.d.ts.map