add: settings page locales

This commit is contained in:
Mahyar Khanbolooki
2025-08-12 03:09:22 +03:30
parent 67f7ac35bf
commit 81bb8e9c14
9 changed files with 421 additions and 173 deletions
+12
View File
@@ -0,0 +1,12 @@
export interface SmartIconType {
Name: string;
Size?: number;
Color?: string;
ClassName?: string;
Variant?: string;
}
export type IconType =
React.ElementType |
React.ReactNode |
SmartIconType;