import { version, name } from '../package.json'
const notches =
''
export default {
name: name,
version: version,
hooks: {
preRender: function (svg) {
if (svg.attributes.get('freesewing:plugin-notches') === false) {
svg.defs += notches
svg.attributes.add('freesewing:plugin-notches', version)
}
}
}
}