mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
23 lines
504 B
TypeScript
23 lines
504 B
TypeScript
import SafeAnchor from './SafeAnchor';
|
|
|
|
import { BsPrefixComponent } from './helpers';
|
|
|
|
export interface PageItemProps {
|
|
disabled?: boolean;
|
|
active?: boolean;
|
|
activeLabel?: string;
|
|
}
|
|
|
|
declare class PageItem extends BsPrefixComponent<
|
|
typeof SafeAnchor,
|
|
PageItemProps
|
|
> {}
|
|
|
|
export default PageItem;
|
|
|
|
export class First extends PageItem {}
|
|
export class Prev extends PageItem {}
|
|
export class Ellipsis extends PageItem {}
|
|
export class Next extends PageItem {}
|
|
export class Last extends PageItem {}
|