mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-12-29 16:16:02 +00:00
14 lines
547 B
TypeScript
14 lines
547 B
TypeScript
|
|
import { defineTool } from '@tools/defineTool';
|
||
|
|
import { lazy } from 'react';
|
||
|
|
// import image from '@assets/text.png';
|
||
|
|
|
||
|
|
export const tool = defineTool('number', {
|
||
|
|
name: 'Number Sum Calculator',
|
||
|
|
path: 'sum',
|
||
|
|
// image,
|
||
|
|
description:
|
||
|
|
'Quickly calculate the sum of numbers in your browser. To get your sum, just enter your list of numbers in the input field, adjust the separator between the numbers in the options below, and this utility will add up all these numbers.',
|
||
|
|
keywords: ['sum'],
|
||
|
|
component: lazy(() => import('./index'))
|
||
|
|
});
|