Skip to content

Shortcut for namespaced xlink:* attributes

Compare
Choose a tag to compare
@pakastin pakastin released this 22 Nov 09:35
· 483 commits to master since this release

It's easier now to create namespaced xlink:* attributes:

import { svg } from 'redom';

const menuIcon = svg('use', { xlink: { href: '#menu' } })

(equivalent of: menuIcon.setAttributeNS('http://www.w3.org/1999/xlink', 'href', '#menu'))