Ellipsis.styled.ts 257 B

1234567891011121314
  1. import styled from 'styled-components';
  2. export const Text = styled.div`
  3. overflow: hidden;
  4. white-space: nowrap;
  5. text-overflow: ellipsis;
  6. max-width: 340px;
  7. `;
  8. export const Wrapper = styled.div`
  9. display: flex;
  10. gap: 8px;
  11. align-items: center;
  12. `;