18 lines
343 B
JavaScript
18 lines
343 B
JavaScript
import {create} from './util/create.js'
|
|
|
|
export const xlink = create({
|
|
space: 'xlink',
|
|
transform(_, prop) {
|
|
return 'xlink:' + prop.slice(5).toLowerCase()
|
|
},
|
|
properties: {
|
|
xLinkActuate: null,
|
|
xLinkArcRole: null,
|
|
xLinkHref: null,
|
|
xLinkRole: null,
|
|
xLinkShow: null,
|
|
xLinkTitle: null,
|
|
xLinkType: null
|
|
}
|
|
})
|