@engie-group/fluid-design-system-react
Version:
Fluid Design System React
10 lines (9 loc) • 441 B
TypeScript
import React from 'react';
import { type AsChild, type HTMLAttributesWithoutComponentProps } from '../../utils/typeHelpers';
export declare const NJPaginationItem: React.FC<NJPaginationItemProps>;
type NJPaginationItemCommonProps = {
index: number;
current?: boolean;
};
export type NJPaginationItemProps = NJPaginationItemCommonProps & AsChild<HTMLAttributesWithoutComponentProps<'button', NJPaginationItemCommonProps>>;
export {};