forma-ui 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Interfaces/dictionary.d.ts +25 -0
- package/dist/Interfaces/dictionary.js +8 -0
- package/dist/Interfaces/global.d.ts +21 -0
- package/dist/Interfaces/global.js +1 -0
- package/dist/Interfaces/meta.d.ts +39 -0
- package/dist/Interfaces/meta.js +8 -0
- package/dist/app/[lang]/stores/LangStore.d.ts +22 -0
- package/dist/app/[lang]/stores/LangStore.js +125 -0
- package/dist/components/icon/icon.d.ts +119 -0
- package/dist/components/icon/icon.js +454 -0
- package/dist/components/ui/Accordion.d.ts +17 -0
- package/dist/components/ui/Accordion.js +41 -0
- package/dist/components/ui/Button.d.ts +12 -0
- package/dist/components/ui/Button.js +48 -0
- package/dist/components/ui/CheckBox.d.ts +7 -0
- package/dist/components/ui/CheckBox.js +4 -0
- package/dist/components/ui/Input.d.ts +11 -0
- package/dist/components/ui/Input.js +176 -0
- package/dist/components/ui/Input.types.d.ts +45 -0
- package/dist/components/ui/Input.types.js +1 -0
- package/dist/components/ui/Modal.d.ts +9 -0
- package/dist/components/ui/Modal.js +52 -0
- package/dist/components/ui/RadioButton.d.ts +9 -0
- package/dist/components/ui/RadioButton.js +4 -0
- package/dist/components/ui/Table.d.ts +10 -0
- package/dist/components/ui/Table.js +4 -0
- package/dist/components/ui/Tabs.d.ts +10 -0
- package/dist/components/ui/Tabs.js +9 -0
- package/dist/configs/language.d.ts +39 -0
- package/dist/configs/language.js +50 -0
- package/dist/configs/metadata.d.ts +69 -0
- package/dist/configs/metadata.js +143 -0
- package/dist/dictionaries/en.json +18 -0
- package/dist/dictionaries/fa.json +18 -0
- package/dist/dictionaries/index.d.ts +35 -0
- package/dist/dictionaries/index.js +10 -0
- package/dist/hooks/useDevice.d.ts +21 -0
- package/dist/hooks/useDevice.js +49 -0
- package/dist/hooks/useTranslation.d.ts +4 -0
- package/dist/hooks/useTranslation.js +34 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +12 -0
- package/dist/libs/api/axiosClient.d.ts +9 -0
- package/dist/libs/api/axiosClient.js +34 -0
- package/dist/libs/api/cns.d.ts +16 -0
- package/dist/libs/api/cns.js +29 -0
- package/dist/libs/api/usePostFetch.d.ts +23 -0
- package/dist/libs/api/usePostFetch.js +17 -0
- package/dist/libs/cn.d.ts +1 -0
- package/dist/libs/cn.js +12 -0
- package/dist/libs/cookieUtils.d.ts +10 -0
- package/dist/libs/cookieUtils.js +28 -0
- package/dist/libs/detectComponentResponsive.d.ts +10 -0
- package/dist/libs/detectComponentResponsive.js +24 -0
- package/dist/libs/detectDeviceFromUA.d.ts +8 -0
- package/dist/libs/detectDeviceFromUA.js +14 -0
- package/dist/libs/fonts.d.ts +10 -0
- package/dist/libs/fonts.js +94 -0
- package/dist/libs/metadataHelper.d.ts +17 -0
- package/dist/libs/metadataHelper.js +20 -0
- package/dist/libs/modal/Modal.d.ts +9 -0
- package/dist/libs/modal/Modal.js +41 -0
- package/dist/libs/translation.d.ts +5 -0
- package/dist/libs/translation.js +30 -0
- package/dist/libs/utils.d.ts +2 -0
- package/dist/libs/utils.js +6 -0
- package/dist/locale/about/en.json +3 -0
- package/dist/locale/about/fa.json +3 -0
- package/dist/locale/coin/en.json +4 -0
- package/dist/locale/coin/fa.json +4 -0
- package/dist/locale/en.d.ts +56 -0
- package/dist/locale/en.js +16 -0
- package/dist/locale/fa.d.ts +59 -0
- package/dist/locale/fa.js +16 -0
- package/dist/locale/global/en.json +12 -0
- package/dist/locale/global/fa.json +16 -0
- package/dist/locale/home/en.json +11 -0
- package/dist/locale/home/fa.json +11 -0
- package/dist/locale/index.d.ts +201 -0
- package/dist/locale/index.js +7 -0
- package/dist/locale/meta/about/en.json +10 -0
- package/dist/locale/meta/about/fa.json +5 -0
- package/dist/locale/meta/en.json +15 -0
- package/dist/locale/meta/fa.json +15 -0
- package/dist/locale/meta/home/en.json +10 -0
- package/dist/locale/meta/home/fa.json +5 -0
- package/dist/middleware.d.ts +14 -0
- package/dist/middleware.js +57 -0
- package/dist/store/appStore.d.ts +8 -0
- package/dist/store/appStore.js +16 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/utils/nextImageLoader.d.ts +9 -0
- package/dist/utils/nextImageLoader.js +15 -0
- package/package.json +1 -2
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author: Mohammad Felfelani
|
|
3
|
+
* @Email: mfelfelani72@gmail.com
|
|
4
|
+
* @Team:
|
|
5
|
+
* @Date: 2025-10-12 09:03:23
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
import { OpenGraphMeta, TwitterMeta } from "@/Interfaces/meta";
|
|
9
|
+
import { Lang } from "@/configs/language";
|
|
10
|
+
export type Dictionary = Record<string, string | {
|
|
11
|
+
title: string;
|
|
12
|
+
description: string;
|
|
13
|
+
keywords?: string[];
|
|
14
|
+
openGraph?: OpenGraphMeta;
|
|
15
|
+
twitter?: TwitterMeta;
|
|
16
|
+
}>;
|
|
17
|
+
export interface LangState {
|
|
18
|
+
lang: Lang;
|
|
19
|
+
dir: "ltr" | "rtl";
|
|
20
|
+
refreshKey: number;
|
|
21
|
+
isInitialized: boolean;
|
|
22
|
+
setLang: (newLang: Lang) => void;
|
|
23
|
+
initializeLang: (langFromUrl?: string) => void;
|
|
24
|
+
triggerRefresh?: () => void;
|
|
25
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author: Mohammad Felfelani
|
|
3
|
+
* @Email: mfelfelani72@gmail.com
|
|
4
|
+
* @Team:
|
|
5
|
+
* @Date: 2025-10-12 15:00:49
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
import type { ReactNode } from "react";
|
|
9
|
+
import { type Lang } from "@/configs/language";
|
|
10
|
+
import { Dictionary } from "@/Interfaces/dictionary";
|
|
11
|
+
export interface LangLayoutProps {
|
|
12
|
+
children: ReactNode;
|
|
13
|
+
params: Promise<{
|
|
14
|
+
lang: string;
|
|
15
|
+
}>;
|
|
16
|
+
}
|
|
17
|
+
export interface LangWrapperProps {
|
|
18
|
+
langFromUrl: Lang;
|
|
19
|
+
dictionary: Dictionary;
|
|
20
|
+
children: ReactNode;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author: Mohammad Felfelani
|
|
3
|
+
* @Email: mfelfelani72@gmail.com
|
|
4
|
+
* @Team:
|
|
5
|
+
* @Date: 2025-10-12 08:39:25
|
|
6
|
+
* @Description:
|
|
7
|
+
*/
|
|
8
|
+
export interface BaseMeta {
|
|
9
|
+
title: string;
|
|
10
|
+
description: string;
|
|
11
|
+
keywords?: string[];
|
|
12
|
+
}
|
|
13
|
+
export interface PageMeta extends BaseMeta {
|
|
14
|
+
canonicalUrl?: string;
|
|
15
|
+
robots?: {
|
|
16
|
+
index?: boolean;
|
|
17
|
+
follow?: boolean;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
export type OpenGraphMeta = {
|
|
21
|
+
title: string;
|
|
22
|
+
description: string;
|
|
23
|
+
url?: string;
|
|
24
|
+
locale?: string;
|
|
25
|
+
siteName?: string;
|
|
26
|
+
type?: string;
|
|
27
|
+
images?: {
|
|
28
|
+
url: string;
|
|
29
|
+
width: number;
|
|
30
|
+
height: number;
|
|
31
|
+
alt: string;
|
|
32
|
+
}[];
|
|
33
|
+
};
|
|
34
|
+
export type TwitterMeta = {
|
|
35
|
+
card?: string;
|
|
36
|
+
title?: string;
|
|
37
|
+
description?: string;
|
|
38
|
+
images?: string[];
|
|
39
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author: Mohammad Felfelani
|
|
3
|
+
* @Email: mfelfelani72@gmail.com
|
|
4
|
+
* @Team:
|
|
5
|
+
* @Date: 2025-10-05 12:41:14
|
|
6
|
+
* @Description: Lang store with JSON cookie
|
|
7
|
+
*/
|
|
8
|
+
import { LangState } from "@/Interfaces/dictionary";
|
|
9
|
+
export declare const useLangStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<LangState>, "setState" | "persist"> & {
|
|
10
|
+
setState(partial: LangState | Partial<LangState> | ((state: LangState) => LangState | Partial<LangState>), replace?: false | undefined): unknown;
|
|
11
|
+
setState(state: LangState | ((state: LangState) => LangState), replace: true): unknown;
|
|
12
|
+
persist: {
|
|
13
|
+
setOptions: (options: Partial<import("zustand/middleware").PersistOptions<LangState, unknown, unknown>>) => void;
|
|
14
|
+
clearStorage: () => void;
|
|
15
|
+
rehydrate: () => Promise<void> | void;
|
|
16
|
+
hasHydrated: () => boolean;
|
|
17
|
+
onHydrate: (fn: (state: LangState) => void) => () => void;
|
|
18
|
+
onFinishHydration: (fn: (state: LangState) => void) => () => void;
|
|
19
|
+
getOptions: () => Partial<import("zustand/middleware").PersistOptions<LangState, unknown, unknown>>;
|
|
20
|
+
};
|
|
21
|
+
}>;
|
|
22
|
+
export declare const initializeLang: (langFromUrl?: string) => void;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @Author: Mohammad Felfelani
|
|
3
|
+
* @Email: mfelfelani72@gmail.com
|
|
4
|
+
* @Team:
|
|
5
|
+
* @Date: 2025-10-05 12:41:14
|
|
6
|
+
* @Description: Lang store with JSON cookie
|
|
7
|
+
*/
|
|
8
|
+
import { create } from "zustand";
|
|
9
|
+
import { isBrowser, setCookie, getCookie } from "@/libs/cookieUtils";
|
|
10
|
+
import { persist, createJSONStorage } from "zustand/middleware";
|
|
11
|
+
// Constants
|
|
12
|
+
import { languages } from "@/configs/language";
|
|
13
|
+
// Functions
|
|
14
|
+
const isValidLang = (lang) => {
|
|
15
|
+
return typeof lang === "string" && lang in languages;
|
|
16
|
+
};
|
|
17
|
+
const cookieStorage = {
|
|
18
|
+
getItem: (name) => {
|
|
19
|
+
if (!isBrowser())
|
|
20
|
+
return null;
|
|
21
|
+
try {
|
|
22
|
+
return localStorage.getItem(name);
|
|
23
|
+
}
|
|
24
|
+
catch (error) {
|
|
25
|
+
console.error("Error reading from storage:", error);
|
|
26
|
+
return null;
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
setItem: (name, value) => {
|
|
30
|
+
if (!isBrowser())
|
|
31
|
+
return;
|
|
32
|
+
try {
|
|
33
|
+
localStorage.setItem(name, value);
|
|
34
|
+
}
|
|
35
|
+
catch (error) {
|
|
36
|
+
console.error("Error writing to storage:", error);
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
removeItem: (name) => {
|
|
40
|
+
if (!isBrowser())
|
|
41
|
+
return;
|
|
42
|
+
try {
|
|
43
|
+
localStorage.removeItem(name);
|
|
44
|
+
}
|
|
45
|
+
catch (error) {
|
|
46
|
+
console.error("Error removing from storage:", error);
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
};
|
|
50
|
+
export const useLangStore = create()(persist((set, get) => ({
|
|
51
|
+
lang: "en",
|
|
52
|
+
dir: languages.en.dir,
|
|
53
|
+
isInitialized: false,
|
|
54
|
+
refreshKey: 0, // 🔹 اضافه شد
|
|
55
|
+
setLang: (newLang) => {
|
|
56
|
+
const dir = languages[newLang].dir;
|
|
57
|
+
set({
|
|
58
|
+
lang: newLang,
|
|
59
|
+
dir,
|
|
60
|
+
refreshKey: get().refreshKey + 1, // 🔹 trigger برای کامپوننتها
|
|
61
|
+
});
|
|
62
|
+
if (isBrowser()) {
|
|
63
|
+
const langCookieValue = JSON.stringify({
|
|
64
|
+
state: {
|
|
65
|
+
lang: newLang,
|
|
66
|
+
dir: dir,
|
|
67
|
+
},
|
|
68
|
+
});
|
|
69
|
+
setCookie("app_lang", langCookieValue);
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
triggerRefresh: () => {
|
|
73
|
+
set({ refreshKey: get().refreshKey + 1 });
|
|
74
|
+
},
|
|
75
|
+
initializeLang: (langFromUrl) => {
|
|
76
|
+
const { isInitialized } = get();
|
|
77
|
+
if (isInitialized)
|
|
78
|
+
return;
|
|
79
|
+
let finalLang = "en";
|
|
80
|
+
let finalDir = languages.en.dir;
|
|
81
|
+
if (langFromUrl && isValidLang(langFromUrl)) {
|
|
82
|
+
finalLang = langFromUrl;
|
|
83
|
+
finalDir = languages[finalLang].dir;
|
|
84
|
+
}
|
|
85
|
+
else if (isBrowser()) {
|
|
86
|
+
const savedLangCookie = getCookie("app_lang");
|
|
87
|
+
if (savedLangCookie) {
|
|
88
|
+
try {
|
|
89
|
+
const parsed = JSON.parse(savedLangCookie);
|
|
90
|
+
if (parsed.state) {
|
|
91
|
+
if (parsed.state.lang && isValidLang(parsed.state.lang)) {
|
|
92
|
+
finalLang = parsed.state.lang;
|
|
93
|
+
}
|
|
94
|
+
if (parsed.state.dir &&
|
|
95
|
+
(parsed.state.dir === "ltr" || parsed.state.dir === "rtl")) {
|
|
96
|
+
finalDir = parsed.state.dir;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
catch (error) {
|
|
101
|
+
console.error("Error parsing lang cookie:", error);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
set({
|
|
106
|
+
lang: finalLang,
|
|
107
|
+
dir: finalDir,
|
|
108
|
+
isInitialized: true,
|
|
109
|
+
});
|
|
110
|
+
},
|
|
111
|
+
}), {
|
|
112
|
+
name: "lang-store",
|
|
113
|
+
storage: createJSONStorage(() => cookieStorage),
|
|
114
|
+
partialize: (state) => ({
|
|
115
|
+
lang: state.lang,
|
|
116
|
+
dir: state.dir,
|
|
117
|
+
isInitialized: state.isInitialized,
|
|
118
|
+
refreshKey: state.refreshKey, // 🔹 اضافه شد
|
|
119
|
+
}),
|
|
120
|
+
}));
|
|
121
|
+
export const initializeLang = (langFromUrl) => {
|
|
122
|
+
if (isBrowser()) {
|
|
123
|
+
useLangStore.getState().initializeLang(langFromUrl);
|
|
124
|
+
}
|
|
125
|
+
};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
interface IconProps {
|
|
2
|
+
className?: string;
|
|
3
|
+
width?: string | number;
|
|
4
|
+
height?: string | number;
|
|
5
|
+
color?: string;
|
|
6
|
+
stroke?: string;
|
|
7
|
+
fill?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const SearchIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const FolderIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const WalletIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const GraphIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const BookmarkIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const CategoryIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const HomeIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const NotificationIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare const ChatIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare const HeartIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export declare const PaperIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const PaperPlusIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const PaperNegativeIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare const PaperFailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export declare const PaperDownloadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
export declare const PaperUploadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export declare const SendIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const PasswordIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export declare const SwapIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export declare const WorkIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export declare const ScanIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
export declare const ActivityIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare const CalendarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export declare const MessageIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export declare const VideoIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export declare const PlusIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
export declare const ChartIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
export declare const ArrowDownCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
export declare const ArrowDownSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
export declare const ArrowDownIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export declare const ArrowDown2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
export declare const ArrowDown3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
export declare const CoinIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
+
export declare const ArrowRightCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
+
export declare const ArrowRightSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export declare const ArrowRightIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
export declare const ArrowRight2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
export declare const ArrowRight3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
+
export declare const ArrowUpCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
+
export declare const ArrowLeftCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
export declare const ArrowUpSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
+
export declare const ArrowLeftSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
+
export declare const ArrowUpIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
export declare const ArrowUp2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
+
export declare const ArrowUp3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
export declare const ArrowLeftIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
+
export declare const ArrowLeft2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
export declare const ArrowLeft3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
57
|
+
export declare const GameIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
+
export declare const BagIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
+
export declare const Bag2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
60
|
+
export declare const TicketStarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
+
export declare const MoreCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
62
|
+
export declare const MoreSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
export declare const DiscountIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
64
|
+
export declare const BuyIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
65
|
+
export declare const InfoSquaresIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
66
|
+
export declare const DangerSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
67
|
+
export declare const DangerTriangleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
68
|
+
export declare const CloseSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
69
|
+
export declare const TickSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
70
|
+
export declare const DiscoveryIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
71
|
+
export declare const LocationIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
72
|
+
export declare const DocumentIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
73
|
+
export declare const SettingIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
74
|
+
export declare const TimeSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
75
|
+
export declare const TimeCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
76
|
+
export declare const VolumeUpIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
77
|
+
export declare const VolumeDownIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
78
|
+
export declare const VolumeOffIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
export declare const StarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
80
|
+
export declare const TicketIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
export declare const CameraIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
82
|
+
export declare const ProfileIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
83
|
+
export declare const AddUserIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
84
|
+
export declare const TwoUsersIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
85
|
+
export declare const ThreeUsersIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
export declare const LoginIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
87
|
+
export declare const LogoutIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
88
|
+
export declare const DownloadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
89
|
+
export declare const UploadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
90
|
+
export declare const VoiceIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
91
|
+
export declare const Voice2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
92
|
+
export declare const DeleteIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
93
|
+
export declare const EditIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
94
|
+
export declare const EditSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
95
|
+
export declare const PlayIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
96
|
+
export declare const ShieldDoneIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
97
|
+
export declare const ShieldFailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
98
|
+
export declare const ShowIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
99
|
+
export declare const HideIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
100
|
+
export declare const FilterIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
101
|
+
export declare const ImageIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
102
|
+
export declare const Image2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
103
|
+
export declare const CallIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
104
|
+
export declare const CallingIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
105
|
+
export declare const CallMissedIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
106
|
+
export declare const CallSilentIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
107
|
+
export declare const LockIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
108
|
+
export declare const Filter2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
109
|
+
export declare const UnlockIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
110
|
+
export declare const RefreshIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
111
|
+
export declare const MenuIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
112
|
+
export declare const EmailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
113
|
+
export declare const TelegramIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
114
|
+
export declare const InstagramIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
115
|
+
export declare const MobielIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
116
|
+
export declare const MoonIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
117
|
+
export declare const SunIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
118
|
+
export declare const LanguageIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
119
|
+
export {};
|