UNPKG

@smart-react-components/ui

Version:
17 lines (16 loc) 629 B
import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props'; import { JSXElementProps, PaletteProp, ShapeProp } from '@smart-react-components/core/types'; import React from 'react'; export interface Props extends IntrinsicStyledCoreProps { children: JSX.Element[]; elementProps?: JSXElementProps; hasWaveEffect?: boolean; isFixedSize?: boolean; isOutline?: boolean; isSoft?: boolean; palette?: PaletteProp; shape?: ShapeProp; waveEffectPalette?: PaletteProp; } declare const PaginationList: React.FC<Props>; export default PaginationList;