refactor: remove unused icon components and update dashboard data to use new icons

This commit is contained in:
Ardeman
2025-03-15 22:25:06 +08:00
parent d91dffb013
commit 680a0a88a2
5 changed files with 10 additions and 55 deletions
+2 -2
View File
@@ -8,14 +8,14 @@ import {
TagIcon,
UsersIcon,
} from '@heroicons/react/24/solid'
import type { SVGProps } from 'react'
import type { ComponentType, SVGProps } from 'react'
type TMenu = {
group: string
items: {
title: string
url: string
icon: React.ComponentType<SVGProps<SVGSVGElement>>
icon: ComponentType<SVGProps<SVGSVGElement>>
}[]
}