Skip to content

Instantly share code, notes, and snippets.

@TrySound
Created September 9, 2021 09:56
Show Gist options
  • Save TrySound/7aa1aa3348cbb9ea18386294760ee5f9 to your computer and use it in GitHub Desktop.
Save TrySound/7aa1aa3348cbb9ea18386294760ee5f9 to your computer and use it in GitHub Desktop.
Fill paths with color
const renameMaskType = {
name: 'fillPaths',
type: 'visitor',
fn: () => {
return {
element: {
enter: node => {
if (node.name === 'path') {
node.attributes.fill = '#fff';
}
}
}
}
}
}
module.exports = {
plugins: [
'preset-default',
renameMaskType
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment