@keen.io/ui-core
Version:
Keen visual components library
10 lines (9 loc) • 316 B
TypeScript
import React, { FC } from 'react';
declare type Props = {
scrollToActive: boolean;
children: (activeItemRef: React.MutableRefObject<any>) => React.ReactNode;
maxHeight?: number;
scrollShadow?: boolean;
};
declare const DropdownListContainer: FC<Props>;
export default DropdownListContainer;