mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
16 lines
419 B
TypeScript
16 lines
419 B
TypeScript
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;
|