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