@tritium-research/react-component
Version:
A react component library based on material-ui, build for tritium internal usecases.
8 lines (7 loc) • 305 B
TypeScript
import { TooltipProps, TypographyProps } from "@mui/material";
export interface TextProps extends TypographyProps {
contentKey?: string;
tooltipTrigger?: "hover" | "click";
tooltipProps?: TooltipProps;
}
export default function Text(props: TextProps): import("react/jsx-runtime").JSX.Element;