mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 08:16:16 -04:00
13 lines
391 B
TypeScript
13 lines
391 B
TypeScript
![]() |
import { Camera } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Camera recorder',
|
||
|
path: '/camera-recorder',
|
||
|
description: 'Take a picture or record a video from your webcam or camera.',
|
||
|
keywords: ['camera', 'recoder'],
|
||
|
component: () => import('./camera-recorder.vue'),
|
||
|
icon: Camera,
|
||
|
createdAt: new Date('2023-05-15'),
|
||
|
});
|