lorehub
Version:
Capture and surface the collective wisdom of your codebase
11 lines • 339 B
TypeScript
import React from 'react';
interface TruncatedTextProps {
text: string;
maxLines: number;
width: number;
color?: string;
dimColor?: boolean;
}
export declare function TruncatedText({ text, maxLines, width, color, dimColor }: TruncatedTextProps): React.JSX.Element;
export {};
//# sourceMappingURL=TruncatedText.d.ts.map