forma-ui 0.0.6 → 0.0.8
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/package.json +10 -3
- package/README.md +0 -36
- package/dist/components/PostDetailPage.d.ts +0 -7
- package/dist/components/PostDetailPage.js +0 -47
- package/dist/components/PostPage.d.ts +0 -6
- package/dist/components/PostPage.js +0 -48
- package/dist/components/icon/icon.d.ts +0 -116
- package/dist/components/icon/icon.js +0 -450
- package/dist/components/ui/Accordion.d.ts +0 -16
- package/dist/components/ui/Accordion.js +0 -32
- package/dist/components/ui/Button.d.ts +0 -12
- package/dist/components/ui/Button.js +0 -48
- package/dist/components/ui/CheckBox.d.ts +0 -7
- package/dist/components/ui/CheckBox.js +0 -4
- package/dist/components/ui/Input.d.ts +0 -11
- package/dist/components/ui/Input.js +0 -173
- package/dist/components/ui/Input.types.d.ts +0 -45
- package/dist/components/ui/Input.types.js +0 -1
- package/dist/components/ui/Modal.d.ts +0 -9
- package/dist/components/ui/Modal.js +0 -7
- package/dist/components/ui/RadioButton.d.ts +0 -9
- package/dist/components/ui/RadioButton.js +0 -4
- package/dist/components/ui/Table.d.ts +0 -10
- package/dist/components/ui/Table.js +0 -4
- package/dist/components/ui/Tabs.d.ts +0 -10
- package/dist/components/ui/Tabs.js +0 -9
- package/dist/config/language.d.ts +0 -11
- package/dist/config/language.js +0 -6
- package/dist/dictionaries/en.json +0 -18
- package/dist/dictionaries/fa.json +0 -18
- package/dist/dictionaries/index.d.ts +0 -35
- package/dist/dictionaries/index.js +0 -10
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -3
- package/dist/lib/utils.d.ts +0 -2
- package/dist/lib/utils.js +0 -6
- package/dist/store/appStore.d.ts +0 -8
- package/dist/store/appStore.js +0 -16
- package/dist/tsconfig.build.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "forma-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -9,23 +9,30 @@
|
|
|
9
9
|
"private": false,
|
|
10
10
|
"scripts": {
|
|
11
11
|
"dev": "next dev --turbopack",
|
|
12
|
-
"build": "npm run build:dist",
|
|
13
12
|
"build:dist": "tsc -p tsconfig.build.json",
|
|
14
|
-
"build:server": "
|
|
13
|
+
"build:server": "next build",
|
|
14
|
+
"build": "npm run build:dist && npm run build:server",
|
|
15
15
|
"start": "next start",
|
|
16
16
|
"lint": "eslint"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
+
"axios": "^1.12.2",
|
|
19
20
|
"clsx": "^2.1.1",
|
|
21
|
+
"critters": "^0.0.25",
|
|
22
|
+
"elastic-apm-node": "^4.14.0",
|
|
23
|
+
"forma-ui": "^0.0.6",
|
|
24
|
+
"js-cookie": "^3.0.5",
|
|
20
25
|
"next": "15.5.4",
|
|
21
26
|
"react": "19.1.0",
|
|
22
27
|
"react-dom": "19.1.0",
|
|
28
|
+
"swr": "^2.3.6",
|
|
23
29
|
"tailwind-merge": "^3.3.1",
|
|
24
30
|
"zustand": "^5.0.8"
|
|
25
31
|
},
|
|
26
32
|
"devDependencies": {
|
|
27
33
|
"@eslint/eslintrc": "^3.3.1",
|
|
28
34
|
"@tailwindcss/postcss": "^4.1.13",
|
|
35
|
+
"@types/js-cookie": "^3.0.6",
|
|
29
36
|
"@types/node": "^20.19.17",
|
|
30
37
|
"@types/react": "^19.1.14",
|
|
31
38
|
"@types/react-dom": "^19.1.9",
|
package/README.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
|
|
2
|
-
|
|
3
|
-
## Getting Started
|
|
4
|
-
|
|
5
|
-
First, run the development server:
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm run dev
|
|
9
|
-
# or
|
|
10
|
-
yarn dev
|
|
11
|
-
# or
|
|
12
|
-
pnpm dev
|
|
13
|
-
# or
|
|
14
|
-
bun dev
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
|
18
|
-
|
|
19
|
-
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
|
|
20
|
-
|
|
21
|
-
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
|
|
22
|
-
|
|
23
|
-
## Learn More
|
|
24
|
-
|
|
25
|
-
To learn more about Next.js, take a look at the following resources:
|
|
26
|
-
|
|
27
|
-
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
|
28
|
-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
|
29
|
-
|
|
30
|
-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
|
|
31
|
-
|
|
32
|
-
## Deploy on Vercel
|
|
33
|
-
|
|
34
|
-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
|
35
|
-
|
|
36
|
-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { useEffect, useState } from "react";
|
|
4
|
-
import { useAppStore } from "../store/appStore";
|
|
5
|
-
import { getDictionary } from "../dictionaries";
|
|
6
|
-
import { useRouter, usePathname, useSearchParams } from "next/navigation";
|
|
7
|
-
import { languages } from "../config/language";
|
|
8
|
-
export const PostDetailPage = ({ id, lang }) => {
|
|
9
|
-
const storeLang = useAppStore((state) => state.lang);
|
|
10
|
-
const setLang = useAppStore((state) => state.setLang);
|
|
11
|
-
const [dict, setDict] = useState(null);
|
|
12
|
-
const router = useRouter();
|
|
13
|
-
const pathname = usePathname();
|
|
14
|
-
const searchParams = useSearchParams();
|
|
15
|
-
// تعیین زبان: prop اولویت دارد
|
|
16
|
-
const currentLang = lang !== null && lang !== void 0 ? lang : storeLang;
|
|
17
|
-
useEffect(() => {
|
|
18
|
-
let isMounted = true;
|
|
19
|
-
getDictionary(currentLang).then((d) => {
|
|
20
|
-
if (isMounted)
|
|
21
|
-
setDict(d);
|
|
22
|
-
});
|
|
23
|
-
return () => {
|
|
24
|
-
isMounted = false;
|
|
25
|
-
};
|
|
26
|
-
}, [currentLang]);
|
|
27
|
-
const changeLang = (newLang) => {
|
|
28
|
-
if (newLang === currentLang)
|
|
29
|
-
return;
|
|
30
|
-
if (!lang) {
|
|
31
|
-
setLang(newLang);
|
|
32
|
-
const segments = pathname.split("/").slice(1);
|
|
33
|
-
if (segments.length > 0 && Object.keys(languages).includes(segments[0])) {
|
|
34
|
-
segments[0] = newLang;
|
|
35
|
-
}
|
|
36
|
-
else {
|
|
37
|
-
segments.unshift(newLang);
|
|
38
|
-
}
|
|
39
|
-
const newPath = "/" + segments.join("/");
|
|
40
|
-
const search = searchParams.toString();
|
|
41
|
-
router.push(search ? `${newPath}?${search}` : newPath);
|
|
42
|
-
}
|
|
43
|
-
};
|
|
44
|
-
if (!dict)
|
|
45
|
-
return _jsx("div", { children: "Loading..." });
|
|
46
|
-
return (_jsxs("div", { children: [_jsxs("h2", { children: [dict.posts.title, " - ", id] }), _jsx("p", { children: dict.posts.description }), !lang && (_jsxs("div", { children: [_jsx("button", { onClick: () => changeLang("fa"), children: "\u0641\u0627\u0631\u0633\u06CC" }), _jsx("button", { onClick: () => changeLang("en"), children: "English" })] }))] }));
|
|
47
|
-
};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
-
import { useEffect, useState } from "react";
|
|
4
|
-
import { useAppStore } from "../store/appStore";
|
|
5
|
-
import { getDictionary } from "../dictionaries";
|
|
6
|
-
import { useRouter, usePathname, useSearchParams } from "next/navigation";
|
|
7
|
-
import { languages } from "../config/language";
|
|
8
|
-
export const PostsPage = ({ lang }) => {
|
|
9
|
-
const storeLang = useAppStore((state) => state.lang);
|
|
10
|
-
const setLang = useAppStore((state) => state.setLang);
|
|
11
|
-
const [dict, setDict] = useState(null);
|
|
12
|
-
const router = useRouter();
|
|
13
|
-
const pathname = usePathname();
|
|
14
|
-
const searchParams = useSearchParams();
|
|
15
|
-
// تصمیم میگیریم که کدام زبان استفاده شود: اول prop بعد store
|
|
16
|
-
const currentLang = lang !== null && lang !== void 0 ? lang : storeLang;
|
|
17
|
-
useEffect(() => {
|
|
18
|
-
let isMounted = true;
|
|
19
|
-
getDictionary(currentLang).then((d) => {
|
|
20
|
-
if (isMounted)
|
|
21
|
-
setDict(d);
|
|
22
|
-
});
|
|
23
|
-
return () => {
|
|
24
|
-
isMounted = false;
|
|
25
|
-
};
|
|
26
|
-
}, [currentLang]);
|
|
27
|
-
const changeLang = (newLang) => {
|
|
28
|
-
if (newLang === currentLang)
|
|
29
|
-
return;
|
|
30
|
-
// فقط وقتی prop نیست، store و URL را تغییر بده
|
|
31
|
-
if (!lang) {
|
|
32
|
-
setLang(newLang);
|
|
33
|
-
const segments = pathname.split("/").slice(1);
|
|
34
|
-
if (segments.length > 0 && Object.keys(languages).includes(segments[0])) {
|
|
35
|
-
segments[0] = newLang;
|
|
36
|
-
}
|
|
37
|
-
else {
|
|
38
|
-
segments.unshift(newLang);
|
|
39
|
-
}
|
|
40
|
-
const newPath = "/" + segments.join("/");
|
|
41
|
-
const search = searchParams.toString();
|
|
42
|
-
router.push(search ? `${newPath}?${search}` : newPath);
|
|
43
|
-
}
|
|
44
|
-
};
|
|
45
|
-
if (!dict)
|
|
46
|
-
return _jsx("div", { children: "Loading..." });
|
|
47
|
-
return (_jsxs("div", { children: [_jsx("h2", { children: dict.posts.title }), _jsx("p", { children: dict.posts.description }), !lang && (_jsxs("div", { children: [_jsx("button", { onClick: () => changeLang("fa"), children: "\u0641\u0627\u0631\u0633\u06CC" }), _jsx("button", { onClick: () => changeLang("en"), children: "English" })] }))] }));
|
|
48
|
-
};
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
interface IconProps {
|
|
2
|
-
className?: string;
|
|
3
|
-
width?: string | number;
|
|
4
|
-
height?: string | number;
|
|
5
|
-
color?: string;
|
|
6
|
-
}
|
|
7
|
-
export declare const SearchIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
export declare const FolderIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export declare const WalletIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
export declare const GraphIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export declare const BookmarkIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export declare const CategoryIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
export declare const HomeIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
export declare const NotificationIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
export declare const ChatIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
export declare const HeartIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
export declare const PaperIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
export declare const PaperPlusIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
export declare const PaperNegativeIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
export declare const PaperFailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
export declare const PaperDownloadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export declare const PaperUploadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
export declare const SendIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
export declare const PasswordIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
export declare const SwapIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
export declare const WorkIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
export declare const ScanIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
export declare const ActivityIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export declare const CalendarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
export declare const MessageIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
export declare const VideoIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
export declare const PlusIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
export declare const ChartIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
export declare const ArrowDownCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
35
|
-
export declare const ArrowDownSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
-
export declare const ArrowDownIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
export declare const ArrowDown2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
-
export declare const ArrowDown3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
-
export declare const CoinIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
40
|
-
export declare const ArrowRightCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
-
export declare const ArrowRightSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
42
|
-
export declare const ArrowRightIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
export declare const ArrowRight2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
-
export declare const ArrowRight3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
export declare const ArrowUpCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
46
|
-
export declare const ArrowLeftCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
47
|
-
export declare const ArrowUpSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
-
export declare const ArrowLeftSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
49
|
-
export declare const ArrowUpIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
50
|
-
export declare const ArrowUp2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
export declare const ArrowUp3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
export declare const ArrowLeftIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
53
|
-
export declare const ArrowLeft2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
export declare const ArrowLeft3Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
55
|
-
export declare const GameIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
56
|
-
export declare const BagIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
57
|
-
export declare const Bag2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
58
|
-
export declare const TicketStarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
59
|
-
export declare const MoreCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
60
|
-
export declare const MoreSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
61
|
-
export declare const DiscountIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
62
|
-
export declare const BuyIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
63
|
-
export declare const InfoSquaresIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
64
|
-
export declare const DangerSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
65
|
-
export declare const DangerTriangleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
66
|
-
export declare const CloseSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
67
|
-
export declare const TickSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
68
|
-
export declare const DiscoveryIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
69
|
-
export declare const LocationIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
70
|
-
export declare const DocumentIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
71
|
-
export declare const SettingIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
72
|
-
export declare const TimeSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
73
|
-
export declare const TimeCircleIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
74
|
-
export declare const VolumeUpIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
75
|
-
export declare const VolumeDownIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
76
|
-
export declare const VolumeOffIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
77
|
-
export declare const StarIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
78
|
-
export declare const TicketIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
79
|
-
export declare const CameraIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
80
|
-
export declare const ProfileIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
81
|
-
export declare const AddUserIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
82
|
-
export declare const TwoUsersIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
83
|
-
export declare const ThreeUsersIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
84
|
-
export declare const LoginIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
85
|
-
export declare const LogoutIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
86
|
-
export declare const DownloadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
87
|
-
export declare const UploadIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
88
|
-
export declare const VoiceIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
89
|
-
export declare const Voice2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
90
|
-
export declare const DeleteIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
91
|
-
export declare const EditIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
92
|
-
export declare const EditSquareIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
93
|
-
export declare const PlayIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
94
|
-
export declare const ShieldDoneIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
95
|
-
export declare const ShieldFailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
96
|
-
export declare const ShowIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
97
|
-
export declare const HideIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
98
|
-
export declare const FilterIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
99
|
-
export declare const ImageIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
100
|
-
export declare const Image2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
101
|
-
export declare const CallIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
102
|
-
export declare const CallingIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
103
|
-
export declare const CallMissedIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
104
|
-
export declare const CallSilentIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
105
|
-
export declare const LockIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
106
|
-
export declare const Filter2Icon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
107
|
-
export declare const UnlockIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
108
|
-
export declare const RefreshIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
109
|
-
export declare const MenuIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
110
|
-
export declare const EmailIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
111
|
-
export declare const TelegramIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
112
|
-
export declare const InstagramIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
113
|
-
export declare const MobielIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
114
|
-
export declare const MoonIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
115
|
-
export declare const SunIcon: ({ className, ...props }: IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
116
|
-
export {};
|