12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
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'
|
|
}
|
|
};
|