@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
5 lines (4 loc) • 450 B
TypeScript
import React, { ForwardedRef } from 'react';
import { IInputSearchStandAlone } from './types/inputSearch';
export declare const InputSearchStandAloneComponent: ({ error, dataTestId, ...props }: IInputSearchStandAlone, ref: ForwardedRef<HTMLInputElement | undefined | null>) => JSX.Element;
export declare const InputSearchStandAlone: React.ForwardRefExoticComponent<IInputSearchStandAlone & React.RefAttributes<HTMLInputElement | null | undefined>>;