@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
8 lines (7 loc) • 494 B
TypeScript
import React from 'react';
import { IInputDropdown } from './types/inputDropdown';
declare const InputDropdownBoundary: <V extends string | unknown>(props: IInputDropdown<V>, ref: React.ForwardedRef<HTMLSelectElement | undefined>) => JSX.Element;
declare const InputDropdown: <V extends string | unknown>(props: React.PropsWithChildren<IInputDropdown<V>> & {
ref?: React.ForwardedRef<HTMLSelectElement | undefined>;
}) => ReturnType<typeof InputDropdownBoundary>;
export { InputDropdown };