aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ipv4-address-converter/index.ts
blob: 62d2daf11989ad389af100a1ade7bb0048c79000 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { Binary } from '@vicons/tabler';
import { defineTool } from '../tool';

export const tool = defineTool({
  name: 'Ipv4 address converter',
  path: '/ipv4-address-converter',
  description: 'Convert an ip address into decimal, binary, hexadecimal or event in ipv6',
  keywords: ['ipv4', 'address', 'converter', 'decimal', 'hexadecimal', 'binary', 'ipv6'],
  component: () => import('./ipv4-address-converter.vue'),
  icon: Binary,
  createdAt: new Date('2023-04-08'),
});