textAlign.tsx 343 B

1234567891011121314151617
  1. import styled from '@emotion/styled';
  2. export const TextAlignRight = styled('span')`
  3. text-align: right;
  4. width: 100%;
  5. `;
  6. export const TextAlignLeft = styled('span')`
  7. text-align: left;
  8. width: 100%;
  9. `;
  10. export const OverflowEllipsisTextContainer = styled('span')`
  11. text-overflow: ellipsis;
  12. overflow: hidden;
  13. white-space: nowrap;
  14. `;