reablocks
Version:
Component library for React
15 lines (13 loc) • 381 B
TypeScript
import { InfinityListInputs } from './useInfinityList';
import { FC } from 'react';
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>;