import React from 'react'; import { cx } from './lib/cx'; import type { HitsPerPageConnectorParamsItem as HitsPerPageItem } from 'instantsearch.js/es/connectors/hits-per-page/connectHitsPerPage'; export type HitsPerPageProps = Omit, 'onChange'> & { items: HitsPerPageItem[]; onChange: (value: number) => void; currentValue: number; classNames?: Partial; }; export type HitsPerPageClassNames = { /** * Class names to apply to the root element */ root: string; /** * Class names to apply to the select element */ select: string; /** * Class names to apply to the option element */ option: string; }; export function HitsPerPage({ items, onChange, currentValue, classNames = {}, ...props }: HitsPerPageProps) { return (
); }