@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
10 lines (9 loc) • 424 B
TypeScript
import React from 'react';
import { ITextCountStandAlone } from './types/textCount';
/**
* @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 TextCountStandAlone: React.ForwardRefExoticComponent<ITextCountStandAlone & React.RefAttributes<HTMLDivElement>>;