@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
13 lines (12 loc) • 340 B
TypeScript
/// <reference types="react" />
import { JSXChildren } from '@smart-react-components/core/types';
interface Props {
children: JSXChildren;
dropdownStatus: boolean;
searchValue: string;
}
interface Return {
optionList: JSX.Element[];
}
declare const useSelectSearch: (props: Props) => Return;
export default useSelectSearch;