| 123456789101112 |
- import namespaces from 'svg-baker/namespaces';
- const { svg, xlink } = namespaces;
- export default {
- attrs: {
- [svg.name]: svg.uri,
- [xlink.name]: xlink.uri,
- style: ['position: absolute', 'width: 0', 'height: 0'].join('; '),
- 'aria-hidden': 'true'
- }
- };
|