UNPKG

@keen.io/ui-core

Version:

Keen visual components library

10 lines (9 loc) 270 B
import React, { FC, Ref } from 'react'; import { Typography } from '../types'; declare type Props = { children: React.ReactNode; truncate?: boolean; ref: Ref<HTMLDivElement>; } & Typography; declare const RefText: FC<Props>; export default RefText;