mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 09:24:55 +05:30
16 lines
500 B
TypeScript
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']
|
|
}
|
|
});
|