diff options
Diffstat (limited to 'src/tools/index.ts')
-rw-r--r-- | src/tools/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/index.ts b/src/tools/index.ts index bc54b4d..1e2df49 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -14,6 +14,7 @@ import { tool as userAgentParser } from './user-agent-parser'; import { tool as ipv4SubnetCalculator } from './ipv4-subnet-calculator'; import { tool as dockerRunToDockerComposeConverter } from './docker-run-to-docker-compose-converter'; import { tool as htmlWysiwygEditor } from './html-wysiwyg-editor'; +import { tool as svgMeshGradientGenerator } from './svg-mesh-gradient-generator'; import { tool as rsaKeyPairGenerator } from './rsa-key-pair-generator'; import { tool as textToNatoAlphabet } from './text-to-nato-alphabet'; import { tool as slugifyString } from './slugify-string'; @@ -98,7 +99,7 @@ export const toolsByCategory: ToolCategory[] = [ }, { name: 'Images', - components: [qrCodeGenerator, svgPlaceholderGenerator], + components: [qrCodeGenerator, svgPlaceholderGenerator, svgMeshGradientGenerator], }, { name: 'Development', |