@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 (10 loc) • 357 B
TypeScript
/// <reference types="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) => JSX.Element;
export default PageButtonLink;