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

11 lines (10 loc) 524 B
import React from 'react'; import { ITextCountControlled } from './types/textCount'; /** * @deprecated This component has been deprecated and will be not exported in the next MAJOR release. * @description * TextCount component is a component that can be used to create a counter of characters. * @param {React.PropsWithChildren<ITextCountControlled>} props * @returns {JSX.Element} */ export declare const TextCount: React.ForwardRefExoticComponent<ITextCountControlled<string> & React.RefAttributes<HTMLDivElement>>;