feat: add CSV to XML conversion tool with customizable options

This commit is contained in:
ARRY7686
2025-03-19 00:02:25 +05:30
parent 64e1dd5b83
commit f4f09f4852
4 changed files with 224 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('csv', {
name: 'Convert CSV to XML',
path: 'csv-to-xml',
icon: 'lets-icons:xml-light',
description: 'Convert CSV files to XML format with customizable options.',
shortDescription: 'Convert CSV data to XML format',
keywords: ['csv', 'xml', 'convert', 'transform', 'parse'],
component: lazy(() => import('./index'))
});