@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.
11 lines • 407 B
TypeScript
import * as React from "react";
import type * as Common from "../../common/types";
import type { OnPageChange } from "../types";
export interface Props {
children: number;
onPageChange: OnPageChange;
size: Common.InputSize;
}
declare const PageButtonLink: ({ children, onPageChange, size }: Props) => React.JSX.Element;
export default PageButtonLink;
//# sourceMappingURL=PageButtonLink.d.ts.map