UNPKG

@rsksmart/rif-ui

Version:

Exposes common components to be re used in RIF projects

9 lines (8 loc) 252 B
import { FC } from 'react'; export interface ShortenTextTooltipProps { value: string; maxLength?: number; charsShownCount?: number; } declare const ShortenTextTooltip: FC<ShortenTextTooltipProps>; export default ShortenTextTooltip;