@cmk/fe_utils
Version:
frontend utility library
17 lines (15 loc) • 557 B
TypeScript
import { BoxProps, TypographyProps } from '@mui/material';
export type EllipsisTextWithTooltipProps = BoxProps & {
label?: string;
title?: string;
spanSx?: BoxProps['sx'];
permanentTitle?: string;
to?: string;
useCopyContent?: boolean;
onClick?: () => void;
fullWidth?: boolean;
outerBoxSx?: BoxProps['sx'];
useTypography?: boolean;
typographyVariant?: TypographyProps['variant'];
};
export declare const EllipsisTextWithTooltip: (props: EllipsisTextWithTooltipProps) => import("react/jsx-runtime").JSX.Element;