UNPKG

@cgi-learning-hub/ui

Version:

@cgi-learning-hub/ui is an open-source React component library that implements UI for HUB's features

10 lines (9 loc) 418 B
import { TooltipProps, TypographyProps } from '@mui/material'; import { FC, ReactNode } from 'react'; export type EllipsisWithTooltipProps = { tooltipProps?: Omit<TooltipProps, "children" | "title">; typographyProps?: Omit<TypographyProps, "noWrap" | "overflow" | "textOverflow">; children: ReactNode; }; declare const EllipsisWithTooltip: FC<EllipsisWithTooltipProps>; export default EllipsisWithTooltip;