You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
927 B
16 lines
927 B
import * as React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface PageItemProps extends React.HTMLAttributes<HTMLElement>, BsPrefixProps {
|
|
disabled?: boolean;
|
|
active?: boolean;
|
|
activeLabel?: string;
|
|
href?: string;
|
|
}
|
|
declare const PageItem: BsPrefixRefForwardingComponent<'li', PageItemProps>;
|
|
export default PageItem;
|
|
export declare const First: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
|
|
export declare const Prev: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
|
|
export declare const Ellipsis: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
|
|
export declare const Next: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
|
|
export declare const Last: React.ForwardRefExoticComponent<PageItemProps & React.RefAttributes<unknown>>;
|