omni-tools/src/pages/tools/time/convert-hours-to-days/meta.ts
2025-07-22 19:47:09 +01:00

16 lines
500 B
TypeScript

import { defineTool } from '@tools/defineTool';
import { lazy } from 'react';
export const tool = defineTool('time', {
path: 'convert-hours-to-days',
icon: 'material-symbols:schedule',
keywords: ['hours', 'days', 'convert', 'time'],
component: lazy(() => import('./index')),
i18n: {
name: 'time:convertHoursToDays.title',
description: 'time:convertHoursToDays.description',
shortDescription: 'time:convertHoursToDays.shortDescription',
userTypes: ['generalUsers']
}
});