mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
13 lines
390 B
TypeScript
13 lines
390 B
TypeScript
![]() |
import { CalendarEvent } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'ICAL File Parser',
|
||
|
path: '/ical-parser',
|
||
|
description: 'Parse ICAL/ICS file to event display',
|
||
|
keywords: ['ical', 'ics', 'calendar', 'parser'],
|
||
|
component: () => import('./ical-parser.vue'),
|
||
|
icon: CalendarEvent,
|
||
|
createdAt: new Date('2024-08-15'),
|
||
|
});
|