import React, { forwardRef, HTMLAttributes } from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
export interface CPaginationProps extends HTMLAttributes {
/**
* Set the alignment of pagination components.
*/
align?: 'start' | 'center' | 'end'
/**
* A string of all className you want applied to the base component.
*/
className?: string
/**
* Size the component small or large.
*/
size?: 'sm' | 'lg'
}
export const CPagination = forwardRef(
({ children, align, className, size, ...rest }, ref) => {
return (
)
}
)
CPagination.propTypes = {
align: PropTypes.oneOf(['start', 'center', 'end']),
children: PropTypes.node,
className: PropTypes.string,
size: PropTypes.oneOf(['sm', 'lg']),
}
CPagination.displayName = 'CPagination'