UNPKG

@cmk/fe_utils

Version:
17 lines (15 loc) 557 B
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;