bbc/psammead

View on GitHub
packages/components/psammead-visually-hidden-text/src/index.jsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import styled from '@emotion/styled';

export const visuallyHiddenTextStyle = `
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  margin: 0;
`;

const VisuallyHiddenText = styled.span`
  ${visuallyHiddenTextStyle};
`;

export default VisuallyHiddenText;