Revert to SVG icon with improved design
- Change back from PNG to SVG for better n8n compatibility - Update SVG icon with larger viewBox and Strike green color (#00D924) - Improve lightning bolt design for better visibility 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2
dist/nodes/Strike/Strike.node.js
vendored
2
dist/nodes/Strike/Strike.node.js
vendored
@ -8,7 +8,7 @@ class Strike {
|
|||||||
this.description = {
|
this.description = {
|
||||||
displayName: 'Strike',
|
displayName: 'Strike',
|
||||||
name: 'strike',
|
name: 'strike',
|
||||||
icon: 'file:strike.png',
|
icon: 'file:strike.svg',
|
||||||
group: ['transform'],
|
group: ['transform'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
|
|||||||
6
dist/nodes/Strike/strike.svg
vendored
6
dist/nodes/Strike/strike.svg
vendored
@ -1,4 +1,4 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none">
|
||||||
<rect width="32" height="32" rx="4" fill="#000000"/>
|
<rect width="64" height="64" rx="8" fill="#000000"/>
|
||||||
<path d="M22 10H14L12 16H18L10 22L20 14H14L16 10H22Z" fill="#CCFF00"/>
|
<path d="M42 18H26L22 32H34L18 46L38 30H26L30 18H42Z" fill="#00D924" stroke="#00D924" stroke-width="1.5" stroke-linejoin="round"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 208 B After Width: | Height: | Size: 268 B |
@ -35,7 +35,7 @@ export class Strike implements INodeType {
|
|||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Strike',
|
displayName: 'Strike',
|
||||||
name: 'strike',
|
name: 'strike',
|
||||||
icon: 'file:strike.png',
|
icon: 'file:strike.svg',
|
||||||
group: ['transform'],
|
group: ['transform'],
|
||||||
version: 1,
|
version: 1,
|
||||||
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" fill="none">
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none">
|
||||||
<rect width="32" height="32" rx="4" fill="#000000"/>
|
<rect width="64" height="64" rx="8" fill="#000000"/>
|
||||||
<path d="M22 10H14L12 16H18L10 22L20 14H14L16 10H22Z" fill="#CCFF00"/>
|
<path d="M42 18H26L22 32H34L18 46L38 30H26L30 18H42Z" fill="#00D924" stroke="#00D924" stroke-width="1.5" stroke-linejoin="round"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 208 B After Width: | Height: | Size: 268 B |
Reference in New Issue
Block a user