12345678910111213141516171819202122232425262728293031323334353637 |
- "use strict";
- exports.__esModule = true;
- exports["default"] = hideText;
- function hideText() {
- return {
- textIndent: '101%',
- overflow: 'hidden',
- whiteSpace: 'nowrap'
- };
- }
- module.exports = exports.default;
|