UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

10 lines (9 loc) 455 B
import { IPaginationButtonControl } from '../types/pagination'; import { PaginationArrowIconStyleType } from '../types/paginationTheme'; interface IPaginationButtonControlProps { styles?: PaginationArrowIconStyleType; paginationButtonControl: IPaginationButtonControl; disabled: boolean; } export declare const PaginationButtonControl: ({ styles, paginationButtonControl, disabled, }: IPaginationButtonControlProps) => JSX.Element; export {};