mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-29 19:09:13 -04:00
25 lines
592 B
TypeScript
25 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,
|
||
|
});
|