mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
![]() |
import { BrandCss3 } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'Css prettifier',
|
||
|
path: '/css-prettifier',
|
||
|
description: 'CSS Prettify',
|
||
|
keywords: ['css', 'prettifier', 'beautify', 'prettier', 'format'],
|
||
|
component: () => import('./css-prettifier.vue'),
|
||
|
icon: BrandCss3,
|
||
|
createdAt: new Date('2024-03-15'),
|
||
|
});
|