@coreui/react-pro
Version:
UI Components Library for React.js
9 lines (8 loc) • 412 B
TypeScript
import React, { HTMLAttributes } from 'react';
interface CSmartTableItemsPerPageSelectorProps extends HTMLAttributes<HTMLSelectElement> {
itemsPerPage?: number;
itemsPerPageLabel?: string;
itemsPerPageOptions?: number[];
}
export declare const CSmartTableItemsPerPageSelector: React.ForwardRefExoticComponent<CSmartTableItemsPerPageSelectorProps & React.RefAttributes<HTMLSelectElement>>;
export {};