14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
// @flow
|
|
import styled from "styled-components";
|
|
|
|
const VisuallyHidden = styled("span")`
|
|
position: absolute !important;
|
|
height: 1px;
|
|
width: 1px;
|
|
overflow: hidden;
|
|
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
`;
|
|
|
|
export default VisuallyHidden;
|