Files
dmenu-plus-front/src/types/iconType.ts
T
2025-08-12 03:09:22 +03:30

13 lines
227 B
TypeScript

export interface SmartIconType {
Name: string;
Size?: number;
Color?: string;
ClassName?: string;
Variant?: string;
}
export type IconType =
React.ElementType |
React.ReactNode |
SmartIconType;