feat(new-tool): temperature converter

This commit is contained in:
Corentin Thomasset 2023-01-13 18:26:28 +01:00
parent f52f7a845c
commit 4607837f9a
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
4 changed files with 178 additions and 6 deletions

View file

@ -0,0 +1,24 @@
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,
});