UNPKG

@smart-react-components/ui

Version:
22 lines (21 loc) 701 B
import { ClickEvents } from '@smart-react-components/core/element-props/click-events'; import { ContentElement, JSXElementProps, PaletteProp, ShapeProp } from '@smart-react-components/core/types'; import React from 'react'; export interface Props extends ClickEvents { children: ContentElement; elementProps?: JSXElementProps; href?: string; isActive?: boolean; isDisabled?: boolean; } export interface PrivateProps { hasWaveEffect: boolean; isFixedSize: boolean; isOutline: boolean; isSoft: boolean; palette: PaletteProp; shape: ShapeProp; waveEffectPalette: PaletteProp; } declare const PaginationItem: React.FC<Props>; export default PaginationItem;