mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-06 17:04:56 +05:30
13 lines
547 B
TypeScript
13 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'))
|
|
});
|