react-bootstrap-typeahead
Version:
React typeahead with Bootstrap styling
12 lines (11 loc) • 363 B
TypeScript
import type { Size } from '../types';
interface Props {
className?: string;
isInvalid?: boolean;
isValid?: boolean;
size?: Size;
}
export default function propsWithBsClassName<T>({ className, isInvalid, isValid, size, ...props }: Props & T): Omit<Props & T, "size" | "className" | "isInvalid" | "isValid"> & {
className: string;
};
export {};