overflowEllipsis.tsx 221 B

123456789101112
  1. /**
  2. * CSS styles used to add a ellipsis overflow
  3. */
  4. const overflowEllipsis = `
  5. display: block;
  6. white-space: nowrap;
  7. overflow: hidden;
  8. text-overflow: ellipsis;
  9. width: 100%;
  10. `;
  11. export default overflowEllipsis;