import styled from 'styled-components';

import { Typography } from '@redocly/theme/components/Typography/Typography';

export const ReturnKeyIcon = styled(Typography).attrs(() => ({
  'data-component-name': 'icons/ReturnKeyIcon/ReturnKeyIcon',
}))`
  margin-left: auto;

  ::after {
    content: '⏎';
  }
`;
