1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- "use strict";
- exports.__esModule = true;
- exports["default"] = hideVisually;
- function hideVisually() {
- return {
- border: '0',
- clip: 'rect(0 0 0 0)',
- height: '1px',
- margin: '-1px',
- overflow: 'hidden',
- padding: '0',
- position: 'absolute',
- whiteSpace: 'nowrap',
- width: '1px'
- };
- }
- module.exports = exports.default;
|