@spaced-out/ui-design-system
Version:
Sense UI components library
16 lines • 586 B
TypeScript
import * as React from 'react';
import type { BaseTooltipProps } from '../Tooltip';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export type TruncatedTextWithTooltipProps = {
children?: React.ReactNode;
tooltip?: BaseTooltipProps;
classNames?: ClassNames;
line?: number;
wordBreak?: string;
wrapText?: boolean;
};
export declare const TruncatedTextWithTooltip: ({ classNames, children, tooltip, wrapText, line, wordBreak, ...props }: TruncatedTextWithTooltipProps) => React.JSX.Element;
export {};
//# sourceMappingURL=TruncatedTextWithTooltip.d.ts.map