it-tools/src/tools/temperature-converter/index.ts

25 lines
592 B
TypeScript
Raw Normal View History

2023-01-13 18:26:28 +01:00
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,
});