/** * CSS styles used to add a ellipsis overflow */ const overflowEllipsis = ` display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; `; export default overflowEllipsis;