FPSMS-frontend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TwoLineCell.tsx 556 B

il y a 2 mois
123456789101112131415161718192021222324
  1. import { Box, Tooltip } from "@mui/material";
  2. import React from "react";
  3. const TwoLineCell: React.FC<{ children: React.ReactNode }> = ({ children }) => {
  4. return (
  5. <Tooltip title={children}>
  6. <Box
  7. sx={{
  8. whiteSpace: "normal",
  9. overflow: "hidden",
  10. textOverflow: "ellipsis",
  11. display: "-webkit-box",
  12. WebkitLineClamp: 2,
  13. WebkitBoxOrient: "vertical",
  14. lineHeight: "22px",
  15. }}
  16. >
  17. {children}
  18. </Box>
  19. </Tooltip>
  20. );
  21. };
  22. export default TwoLineCell;