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