UNPKG

@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) 462 B
import React from 'react'; import { ITextArea } from './types/textArea'; declare const TextareaBoundary: <V extends string | unknown>(props: ITextArea<V>, ref: React.ForwardedRef<HTMLDivElement> | undefined | null) => JSX.Element; declare const TextArea: <V extends string | unknown>(props: React.PropsWithChildren<ITextArea<V>> & { ref?: React.ForwardedRef<HTMLDivElement> | undefined | null; }) => ReturnType<typeof TextareaBoundary>; export { TextArea };