1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-24 15:49:37 +02:00
it-tools/src/tools/temperature-converter/index.ts
2023-01-13 18:26:28 +01:00

24 lines
592 B
TypeScript

import { Temperature } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Temperature converter',
path: '/temperature-converter',
description:
'Temperature degrees conversions for Kelvin, Celsius, Fahrenheit, Rankine, Delisle, Newton, Réaumur and Rømer.',
keywords: [
'temperature',
'converter',
'degree',
'Kelvin',
'Celsius',
'Fahrenheit',
'Rankine',
'Delisle',
'Newton',
'Réaumur',
'Rømer',
],
component: () => import('./temperature-converter.vue'),
icon: Temperature,
});