it-tools/src/tools/length-converter/index.ts
sharevb d1aca6acaf feat(new tools): Units Converter
All units, pressure, power, angle, area, energy, force, length, mass, volume units converter
Many Units Converter: convert any unit string (ie 1d 3m) into best unit and selected target unit

Fix #571
2024-10-06 14:12:53 +02:00

12 lines
382 B
TypeScript

import { SquareHalf } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Length Units Converter',
path: '/length-converter',
description: 'Convert values from length units',
keywords: ['length', 'converter'],
component: () => import('./length-converter.vue'),
icon: SquareHalf,
createdAt: new Date('2024-08-15'),
});