@getgrass/pagination
Version:
## Table of Contents
12 lines (9 loc) • 313 B
text/typescript
// obtained from 'react-icons' library types
interface IconBaseProps extends React.SVGAttributes<SVGElement> {
children?: React.ReactNode
size?: string | number
color?: string
title?: string
}
export type SeparatorPosition = "left" | "right"
export type IconType = (props: IconBaseProps) => JSX.Element