GoScrobble/web/node_modules/reactstrap/lib/Pagination.d.ts

16 lines
419 B
TypeScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
import * as React from 'react';
import { CSSModule } from './index';
export interface PaginationProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
listClassName?: string;
cssModule?: CSSModule;
size?: string;
tag?: React.ElementType;
listTag?: React.ElementType;
'aria-label'?: string;
}
declare class Pagination extends React.Component<PaginationProps> {}
export default Pagination;