UNPKG

reablocks

Version:
14 lines (13 loc) 380 B
import { FC } from 'react'; import { InfinityListInputs } from './useInfinityList'; export interface InfinityListProps extends Omit<InfinityListInputs, 'items'> { /** * The children to filter. */ children: any; /** * CSS Classname to apply to the button. */ buttonClassName?: string; } export declare const InfinityList: FC<InfinityListProps>;