refactor(admin): replace inline svgs with icon components
- add `Logout02Icon` to admin top bar logout button - add `SmartPhone01Icon` and `ComputerIcon` to profile page session list - update icons index to use hugeicons react package imports
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { Fragment, useState, useEffect } from 'react';
|
import { Fragment, useState, useEffect } from 'react';
|
||||||
import { Menu, MenuButton, MenuItem, MenuItems, Transition } from '@headlessui/react';
|
import { Menu, MenuButton, MenuItem, MenuItems, Transition } from '@headlessui/react';
|
||||||
import { ChevronDownIcon, User03Icon, DashboardSquare03Icon } from '@zen/core/shared/icons';
|
import { ChevronDownIcon, User03Icon, DashboardSquare03Icon, Logout02Icon } from '@zen/core/shared/icons';
|
||||||
import { UserAvatar } from '@zen/core/shared/components';
|
import { UserAvatar } from '@zen/core/shared/components';
|
||||||
import { useRouter, usePathname } from 'next/navigation';
|
import { useRouter, usePathname } from 'next/navigation';
|
||||||
import { getPage, getPages } from '../registry.js';
|
import { getPage, getPages } from '../registry.js';
|
||||||
@@ -176,9 +176,7 @@ const AdminTop = ({ isMobileMenuOpen, setIsMobileMenuOpen, user, onLogout, appNa
|
|||||||
onClick={handleLogout}
|
onClick={handleLogout}
|
||||||
className="cursor-pointer w-full flex items-center gap-2 px-[7px] py-[10px] rounded-lg text-[13px] leading-none text-red-700 dark:text-red-600 transition-colors duration-150 text-left data-focus:bg-red-700/10 dark:data-focus:bg-red-700/20"
|
className="cursor-pointer w-full flex items-center gap-2 px-[7px] py-[10px] rounded-lg text-[13px] leading-none text-red-700 dark:text-red-600 transition-colors duration-150 text-left data-focus:bg-red-700/10 dark:data-focus:bg-red-700/20"
|
||||||
>
|
>
|
||||||
<svg className="w-4 h-4 shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<Logout02Icon className="w-4 h-4 shrink-0" />
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.75} d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
|
|
||||||
</svg>
|
|
||||||
Se déconnecter
|
Se déconnecter
|
||||||
</button>
|
</button>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
import { registerPage } from '../registry.js';
|
import { registerPage } from '../registry.js';
|
||||||
import { useState, useEffect, useRef } from 'react';
|
import { useState, useEffect, useRef } from 'react';
|
||||||
import { Card, Input, Button, TabNav, UserAvatar, Modal, PasswordStrengthIndicator } from '@zen/core/shared/components';
|
import { Card, Input, Button, TabNav, UserAvatar, Modal, PasswordStrengthIndicator } from '@zen/core/shared/components';
|
||||||
|
import { SmartPhone01Icon, ComputerIcon } from '@zen/core/shared/icons';
|
||||||
import { useToast } from '@zen/core/toast';
|
import { useToast } from '@zen/core/toast';
|
||||||
import AdminHeader from '../components/AdminHeader.js';
|
import AdminHeader from '../components/AdminHeader.js';
|
||||||
|
|
||||||
@@ -403,13 +404,9 @@ const ProfilePage = ({ user: initialUser }) => {
|
|||||||
<div key={session.id} className="flex items-center justify-between gap-4 py-3 first:pt-0 last:pb-0">
|
<div key={session.id} className="flex items-center justify-between gap-4 py-3 first:pt-0 last:pb-0">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
{session.device === 'mobile' ? (
|
{session.device === 'mobile' ? (
|
||||||
<svg className="w-8 h-8 text-neutral-400 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
<SmartPhone01Icon className="w-8 h-8 text-neutral-500 dark:text-neutral-400 shrink-0" />
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" d="M10.5 1.5H8.25A2.25 2.25 0 006 3.75v16.5a2.25 2.25 0 002.25 2.25h7.5A2.25 2.25 0 0018 20.25V3.75a2.25 2.25 0 00-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 8.25h3" />
|
|
||||||
</svg>
|
|
||||||
) : (
|
) : (
|
||||||
<svg className="w-8 h-8 text-neutral-400 shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
<ComputerIcon className="w-8 h-8 text-neutral-500 dark:text-neutral-400 shrink-0" />
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" d="M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0H3" />
|
|
||||||
</svg>
|
|
||||||
)}
|
)}
|
||||||
<div className="flex flex-col gap-0.5">
|
<div className="flex flex-col gap-0.5">
|
||||||
<div className="flex items-center gap-2 flex-wrap">
|
<div className="flex items-center gap-2 flex-wrap">
|
||||||
|
|||||||
+28
-82
@@ -12,18 +12,10 @@ export const ChevronRightIcon = (props) => (
|
|||||||
);
|
);
|
||||||
|
|
||||||
export const UserCircle02Icon = (props) => (
|
export const UserCircle02Icon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={64} height={64} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="currentColor" strokeWidth="1.5"></path>
|
<path fillRule="evenodd" clipRule="evenodd" d="M12 3.20455C7.1424 3.20455 3.20455 7.1424 3.20455 12C3.20455 16.8576 7.1424 20.7955 12 20.7955C16.8576 20.7955 20.7955 16.8576 20.7955 12C20.7955 7.1424 16.8576 3.20455 12 3.20455ZM1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12Z" fill="#ffffff"></path>
|
||||||
<path d="M14.75 9.5C14.75 11.0188 13.5188 12.25 12 12.25C10.4812 12.25 9.25 11.0188 9.25 9.5C9.25 7.98122 10.4812 6.75 12 6.75C13.5188 6.75 14.75 7.98122 14.75 9.5Z" stroke="currentColor" strokeWidth="1.5"></path>
|
<path d="M8.5 9.5C8.5 7.567 10.067 6 12 6C13.933 6 15.5 7.567 15.5 9.5C15.5 11.433 13.933 13 12 13C10.067 13 8.5 11.433 8.5 9.5Z" fill="#ffffff"></path>
|
||||||
<path d="M5.49994 19.0001L6.06034 18.0194C6.95055 16.4616 8.60727 15.5001 10.4016 15.5001H13.5983C15.3926 15.5001 17.0493 16.4616 17.9395 18.0194L18.4999 19.0001" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
|
<path d="M5.40873 17.6472C6.43247 15.8556 8.3377 14.75 10.4011 14.75H13.5979C15.6613 14.75 17.5666 15.8556 18.5903 17.6472L19.6094 19.5928C17.6634 21.5432 14.9724 22.7499 11.9996 22.7499C9.0267 22.7499 6.33569 21.5431 4.38965 19.5928L5.40873 17.6472Z" fill="#ffffff"></path>
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const ManagerIcon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path d="M7.948 12.25L8 12.25C8.29639 12.25 8.56499 12.4246 8.68536 12.6954L12 20.1533L15.3146 12.6954C15.435 12.4246 15.7036 12.25 16 12.25L16.052 12.25C16.9505 12.25 17.6997 12.2499 18.2945 12.3299C18.9223 12.4143 19.4891 12.6 19.9445 13.0555C20.4 13.5109 20.5857 14.0777 20.6701 14.7055C20.7501 15.3003 20.75 16.0495 20.75 16.948V18.7505C20.75 20.6361 20.75 21.5789 20.1642 22.1647C19.5784 22.7505 18.6356 22.7505 16.75 22.7505H7.25C5.36438 22.7505 4.42158 22.7505 3.83579 22.1647C3.25 21.5789 3.25 20.6361 3.25 18.7505V16.948C3.24997 16.0495 3.24995 15.3003 3.32991 14.7055C3.41432 14.0777 3.59999 13.5109 4.05546 13.0555C4.51093 12.6 5.07773 12.4143 5.70552 12.3299C6.3003 12.2499 7.04954 12.25 7.948 12.25Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M10.362 12.6057C10.4987 12.3846 10.7401 12.25 11 12.25H13C13.2599 12.25 13.5013 12.3846 13.638 12.6057C13.7746 12.8268 13.7871 13.1029 13.6708 13.3354L12.7724 15.1323L13.2442 18.907C13.2581 19.0181 13.2469 19.1309 13.2115 19.2372L12.7115 20.7372C12.6094 21.0434 12.3228 21.25 12 21.25C11.6772 21.25 11.3906 21.0434 11.2885 20.7372L10.7885 19.2372C10.7531 19.1309 10.7419 19.0181 10.7558 18.907L11.2276 15.1323L10.3292 13.3354C10.2129 13.1029 10.2254 12.8268 10.362 12.6057Z" fill="currentColor"></path>
|
|
||||||
<path d="M7.75 5.5C7.75 3.15279 9.65279 1.25 12 1.25C14.3472 1.25 16.25 3.15279 16.25 5.5V6.5C16.25 8.84721 14.3472 10.75 12 10.75C9.65279 10.75 7.75 8.84721 7.75 6.5V5.5Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -49,17 +41,6 @@ export const Ticket01Icon = (props) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const CodesandboxIcon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path d="M21.5854 12.7014C21.7755 12.6064 22 12.7434 22 12.9546V15.9274C22 16.2266 22 16.5051 21.9763 16.7409C21.9176 17.3235 21.6402 17.7932 21.1584 18.1311C20.9629 18.2682 20.7178 18.4066 20.4522 18.5566L17.8977 19.9998V15.5912C17.8977 15.2446 17.8985 15.0386 17.9133 14.8844C17.9267 14.7444 17.9424 14.6968 18.0573 14.618C18.1727 14.5391 18.3369 14.4495 18.627 14.2934L21.5854 12.7014Z" fill="currentColor"></path>
|
|
||||||
<path d="M2.41532 12.7014C2.22499 12.6063 2.00036 12.7435 2.00036 12.9548V15.9274C2.00031 16.4704 1.97931 17.0493 2.26565 17.5346C2.55197 18.0198 3.07189 18.2876 3.54797 18.5566L6.10302 20V15.5912C6.10302 15.2446 6.1022 15.0386 6.08739 14.8844C6.07395 14.7445 6.05837 14.6968 5.94334 14.618C5.82803 14.5391 5.66375 14.4495 5.37365 14.2934L2.41532 12.7014Z" fill="currentColor"></path>
|
|
||||||
<path d="M12.0002 1C11.4351 1 10.9393 1.30567 10.4645 1.57398L8.60423 2.62491C8.3137 2.78905 8.16843 2.87111 8.17114 2.99232C8.17384 3.11353 8.32262 3.18915 8.62018 3.34039L11.2033 4.73209C11.4998 4.8924 11.676 4.98679 11.8157 5.04608C11.9624 5.10835 12.0383 5.10835 12.185 5.04608C12.3247 4.98679 12.5009 4.8924 12.7974 4.73209L15.3803 3.34048C15.6779 3.18924 15.8267 3.11362 15.8294 2.99241C15.8321 2.8712 15.6868 2.78913 15.3963 2.625L13.5359 1.574C13.0611 1.30569 12.5653 1 12.0002 1Z" fill="currentColor"></path>
|
|
||||||
<path d="M3.75954 5.66484C3.52033 5.80109 3.40073 5.86922 3.39781 5.982C3.3978 5.98247 3.39779 5.98299 3.39778 5.98347C3.3957 6.09626 3.51387 6.17071 3.75022 6.31959L3.87864 6.40049L11.0404 10.3199C11.5101 10.5769 11.7449 10.7054 12.0006 10.7054C12.2563 10.7054 12.4911 10.5769 12.9608 10.3199L20.1286 6.3972L20.2485 6.32465C20.4918 6.17755 20.6134 6.104 20.6119 5.9895C20.6104 5.875 20.4874 5.80494 20.2414 5.66482L17.9916 4.38302C17.7617 4.25206 17.6468 4.18659 17.5203 4.18377C17.3938 4.18096 17.2761 4.24126 17.0407 4.36187L15.8491 4.97222L13.4658 6.27188C13.0101 6.52043 12.5361 6.80176 12.0007 6.80176C11.4653 6.80176 10.9913 6.52043 10.5356 6.27188L8.15225 4.97222L6.9605 4.36178C6.72505 4.24118 6.60732 4.18087 6.48084 4.18369C6.35437 4.1865 6.23944 4.25198 6.00958 4.38294L3.75954 5.66484Z" fill="currentColor"></path>
|
|
||||||
<path d="M21.7485 7.78253C21.7423 7.54014 21.7392 7.41895 21.6382 7.36368C21.5372 7.30841 21.4261 7.3756 21.2039 7.50997L20.8865 7.70194L20.8751 7.70871L20.8585 7.71805L13.7904 11.5861C13.2835 11.8635 13.0301 12.0022 12.8903 12.238C12.7506 12.4738 12.7506 12.7627 12.7506 13.3406V22.1456C12.7506 22.4207 12.7506 22.5582 12.8497 22.6161C12.9488 22.674 13.0644 22.6089 13.2954 22.4786C13.3631 22.4405 13.4304 22.4019 13.4978 22.3635L15.7457 21.0828C15.9921 20.9424 16.1153 20.8722 16.183 20.7557C16.2507 20.6392 16.2507 20.4975 16.2507 20.2139L16.2507 15.5751C16.2506 15.2749 16.2506 14.9987 16.2728 14.7662C16.327 14.197 16.5857 13.7281 17.0585 13.4016C17.2452 13.2726 17.4778 13.1464 17.7226 13.0136L20.6451 11.4276C20.6488 11.4256 20.6524 11.4236 20.6562 11.4217C20.8363 11.3278 21.0178 11.2363 21.1996 11.1455C21.4673 11.0117 21.6011 10.9448 21.6758 10.8239C21.7505 10.7031 21.7505 10.5535 21.7505 10.2543V8.25009C21.7505 8.0951 21.7524 7.93867 21.7485 7.78253Z" fill="currentColor"></path>
|
|
||||||
<path d="M10.2069 11.5932C10.7121 11.8615 10.9647 11.9956 11.1076 12.2334C11.2506 12.4712 11.2506 12.761 11.2506 13.3406V22.1457C11.2506 22.4208 11.2506 22.5583 11.1515 22.6162C11.0524 22.6741 10.9368 22.609 10.7058 22.4787C10.638 22.4405 10.5706 22.4019 10.5031 22.3634L8.25564 21.083C8.00926 20.9426 7.88608 20.8724 7.81837 20.7559C7.75066 20.6394 7.75066 20.4976 7.75066 20.2141L7.75067 15.5751C7.75069 15.2749 7.75071 14.9987 7.72856 14.7662C7.67434 14.197 7.41566 13.7281 6.94286 13.4016C6.7561 13.2726 6.52351 13.1464 6.27868 13.0136L3.35624 11.4276C3.17412 11.3287 2.98866 11.2352 2.80249 11.1431C2.53479 11.0106 2.40093 10.9444 2.32572 10.8232C2.2505 10.7021 2.2505 10.5528 2.2505 10.2541V8.25011C2.25049 8.09103 2.24842 7.93033 2.2528 7.76998C2.25946 7.52606 2.26279 7.4041 2.36529 7.34934C2.4678 7.29457 2.57859 7.36436 2.80017 7.50394L3.1031 7.69476C5.37221 9.12403 7.82653 10.329 10.2069 11.5932Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const InboxIcon = (props) => (
|
export const InboxIcon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M12.8251 1.75C15.0007 1.74998 15.7354 1.74997 17.0955 1.93282C18.4999 2.12164 19.6537 2.52175 20.5661 3.43414C21.4785 4.34653 21.8786 5.50033 22.0674 6.90471C22.2313 8.12428 22.2483 10.047 22.25 12L22.2436 13.5037C22.235 15.2454 22.1957 16.6539 21.9907 17.7892C21.7817 18.9461 21.3902 19.8839 20.635 20.6391C19.7768 21.4973 18.6846 21.8843 17.3079 22.0694C15.9645 22.25 14.2438 22.25 12.0531 22.25H11.9387C9.74804 22.25 8.02737 22.25 6.68396 22.0694C5.3073 21.8843 4.21505 21.4973 3.35685 20.6391C2.60168 19.8839 2.21018 18.9461 2.00122 17.7892C1.79615 16.6539 1.75684 15.2454 1.74826 13.5037L1.7504 11.9999C1.75213 10.0469 1.76906 8.12426 1.93303 6.90471C2.12184 5.50033 2.52195 4.34653 3.43434 3.43414C4.34673 2.52175 5.50054 2.12164 6.90492 1.93282C8.26505 1.74996 9.99978 1.74998 12.1757 1.75H12.8251ZM20.0852 7.17121C20.2409 8.32894 20.2497 10.2983 20.2502 12.4499C20.2502 12.6155 20.1159 12.75 19.9502 12.75L16.5703 12.75C15.2901 12.75 14.4348 13.7898 14.0243 14.6123C13.7341 15.1938 13.1705 15.75 11.9959 15.75C10.8213 15.75 10.2578 15.1938 9.96755 14.6123C9.55706 13.7898 8.70178 12.75 7.42159 12.75L4.0502 12.75C3.88452 12.75 3.75019 12.6155 3.75023 12.4499C3.75071 10.2983 3.75954 8.32894 3.91519 7.17121C4.07419 5.9886 4.3697 5.3272 4.84855 4.84835C5.32741 4.3695 5.98881 4.07399 7.17141 3.91499C8.38278 3.75212 10.4828 3.75 12.7502 3.75C15.0176 3.75 15.6176 3.75212 16.829 3.91499C18.0116 4.07399 18.673 4.3695 19.1519 4.84835C19.6307 5.3272 19.9262 5.9886 20.0852 7.17121Z" fill="currentColor" />
|
<path fillRule="evenodd" clipRule="evenodd" d="M12.8251 1.75C15.0007 1.74998 15.7354 1.74997 17.0955 1.93282C18.4999 2.12164 19.6537 2.52175 20.5661 3.43414C21.4785 4.34653 21.8786 5.50033 22.0674 6.90471C22.2313 8.12428 22.2483 10.047 22.25 12L22.2436 13.5037C22.235 15.2454 22.1957 16.6539 21.9907 17.7892C21.7817 18.9461 21.3902 19.8839 20.635 20.6391C19.7768 21.4973 18.6846 21.8843 17.3079 22.0694C15.9645 22.25 14.2438 22.25 12.0531 22.25H11.9387C9.74804 22.25 8.02737 22.25 6.68396 22.0694C5.3073 21.8843 4.21505 21.4973 3.35685 20.6391C2.60168 19.8839 2.21018 18.9461 2.00122 17.7892C1.79615 16.6539 1.75684 15.2454 1.74826 13.5037L1.7504 11.9999C1.75213 10.0469 1.76906 8.12426 1.93303 6.90471C2.12184 5.50033 2.52195 4.34653 3.43434 3.43414C4.34673 2.52175 5.50054 2.12164 6.90492 1.93282C8.26505 1.74996 9.99978 1.74998 12.1757 1.75H12.8251ZM20.0852 7.17121C20.2409 8.32894 20.2497 10.2983 20.2502 12.4499C20.2502 12.6155 20.1159 12.75 19.9502 12.75L16.5703 12.75C15.2901 12.75 14.4348 13.7898 14.0243 14.6123C13.7341 15.1938 13.1705 15.75 11.9959 15.75C10.8213 15.75 10.2578 15.1938 9.96755 14.6123C9.55706 13.7898 8.70178 12.75 7.42159 12.75L4.0502 12.75C3.88452 12.75 3.75019 12.6155 3.75023 12.4499C3.75071 10.2983 3.75954 8.32894 3.91519 7.17121C4.07419 5.9886 4.3697 5.3272 4.84855 4.84835C5.32741 4.3695 5.98881 4.07399 7.17141 3.91499C8.38278 3.75212 10.4828 3.75 12.7502 3.75C15.0176 3.75 15.6176 3.75212 16.829 3.91499C18.0116 4.07399 18.673 4.3695 19.1519 4.84835C19.6307 5.3272 19.9262 5.9886 20.0852 7.17121Z" fill="currentColor" />
|
||||||
@@ -72,12 +53,6 @@ export const Folder01Icon = (props) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const CouponPercentIcon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M14.0534 2.75C15.6601 2.74999 16.9289 2.74998 17.9391 2.86271C18.9748 2.97828 19.8256 3.21963 20.5575 3.76216C21.0606 4.13512 21.4961 4.5968 21.8456 5.12508C22.4908 6.10053 22.6811 7.28307 22.749 8.8459C22.7814 9.59249 22.1524 10.0938 21.5352 10.0938C20.6033 10.0938 19.776 10.9064 19.776 12C19.776 13.0936 20.6033 13.9062 21.5352 13.9062C22.1524 13.9062 22.7814 14.4075 22.749 15.1541C22.6811 16.7169 22.4908 17.8995 21.8456 18.8749C21.4961 19.4032 21.0606 19.8649 20.5575 20.2378C19.8256 20.7804 18.9748 21.0217 17.9391 21.1373C16.9289 21.25 15.6601 21.25 14.0534 21.25H14.0533H9.94687H9.94678C8.34009 21.25 7.07132 21.25 6.06107 21.1373C5.02537 21.0217 4.17461 20.7804 3.44269 20.2378C2.93955 19.8649 2.50404 19.4032 2.15462 18.8749C1.50935 17.8994 1.31903 16.7167 1.2512 15.1536C1.21882 14.4074 1.84739 13.9062 2.46441 13.9062C3.39631 13.9062 4.2236 13.0936 4.2236 12C4.2236 10.9064 3.39631 10.0938 2.46441 10.0938C1.84739 10.0938 1.21882 9.5926 1.2512 8.84643C1.31903 7.28333 1.50935 6.10064 2.15462 5.12508C2.50404 4.5968 2.93954 4.13512 3.44269 3.76216C4.17461 3.21963 5.02537 2.97828 6.06107 2.86271C7.07132 2.74998 8.3401 2.74999 9.94682 2.75H9.94683H14.0534H14.0534ZM13.7931 8.79289C14.1837 8.40237 14.8168 8.40237 15.2074 8.79289C15.5979 9.18342 15.5979 9.81658 15.2074 10.2071L10.2074 15.2071C9.81683 15.5976 9.18366 15.5976 8.79314 15.2071C8.40261 14.8166 8.40261 14.1834 8.79314 13.7929L13.7931 8.79289ZM9.51147 8.5H9.50024C8.94796 8.5 8.50024 8.94772 8.50024 9.5C8.50024 10.0523 8.94796 10.5 9.50024 10.5H9.51147C10.0638 10.5 10.5115 10.0523 10.5115 9.5C10.5115 8.94772 10.0638 8.5 9.51147 8.5ZM14.489 13.5C13.9367 13.5 13.489 13.9477 13.489 14.5C13.489 15.0523 13.9367 15.5 14.489 15.5H14.5002C15.0525 15.5 15.5002 15.0523 15.5002 14.5C15.5002 13.9477 15.0525 13.5 14.5002 13.5H14.489Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const Settings02Icon = (props) => (
|
export const Settings02Icon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M8.70208 2.00968C8.41768 1.9716 8.17792 2.05387 8.01469 2.1251C7.86464 2.19058 7.69535 2.28616 7.53113 2.37889L5.28197 3.66739C5.13616 3.77054 4.93913 3.93475 4.82604 4.20047C4.70258 4.49056 4.74241 4.78294 4.77174 4.95206C4.80348 5.13505 4.86932 5.387 4.93233 5.62811C5.32857 7.14492 4.36065 8.77664 2.79378 9.19656L2.76618 9.20395C2.52912 9.26746 2.30699 9.32697 2.13327 9.3896C1.97074 9.4482 1.69912 9.55819 1.50772 9.80652C1.33182 10.0347 1.28519 10.2849 1.26684 10.4619C1.24992 10.6252 1.24996 10.8205 1.25 11.0105V12.9897C1.24996 13.1797 1.24992 13.375 1.26684 13.5383C1.28519 13.7153 1.33181 13.9654 1.5077 14.1936C1.69909 14.4419 1.97071 14.5519 2.13322 14.6105C2.30694 14.6732 2.79374 14.8036 2.79374 14.8036C4.36003 15.2235 5.32731 16.8549 4.93082 18.3719C4.93082 18.3719 4.80192 18.8649 4.77017 19.0479C4.74082 19.217 4.70097 19.5094 4.82441 19.7995C4.93749 20.0653 5.13453 20.2295 5.28035 20.3327L7.52952 21.6212L7.52962 21.6212C7.6938 21.7139 7.86312 21.8095 8.01315 21.875C8.17639 21.9462 8.41618 22.0285 8.70059 21.9904C9.00977 21.949 9.23894 21.7725 9.37072 21.6623C9.51065 21.5453 9.86249 21.1963 9.86249 21.1963C10.4459 20.6176 11.2229 20.3281 12 20.3279C12.7771 20.3281 13.5541 20.6176 14.1375 21.1963C14.1375 21.1963 14.4894 21.5453 14.6293 21.6623C14.7611 21.7725 14.9902 21.949 15.2994 21.9904C15.5838 22.0285 15.8236 21.9462 15.9869 21.875C16.1369 21.8095 16.3062 21.7139 16.4704 21.6212L16.4705 21.6212L18.7196 20.3327C18.8655 20.2295 19.0625 20.0653 19.1756 19.7995C19.299 19.5094 19.2592 19.217 19.2298 19.0479C19.1981 18.8649 19.0692 18.3719 19.0692 18.3719C18.6727 16.8549 19.64 15.2235 21.2063 14.8036C21.2063 14.8036 21.6931 14.6732 21.8668 14.6105C22.0293 14.5519 22.3009 14.4419 22.4923 14.1936C22.6682 13.9654 22.7148 13.7153 22.7332 13.5383C22.7501 13.375 22.75 13.1797 22.75 12.9897V11.0105C22.75 10.8205 22.7501 10.6252 22.7332 10.4619C22.7148 10.2849 22.6682 10.0347 22.4923 9.80652C22.3009 9.55819 22.0293 9.4482 21.8667 9.3896C21.693 9.32697 21.4709 9.26746 21.2338 9.20395L21.2062 9.19656C19.6393 8.77664 18.6714 7.14492 19.0677 5.62811C19.1307 5.387 19.1965 5.13505 19.2283 4.95206C19.2576 4.78294 19.2974 4.49056 19.174 4.20047C19.0609 3.93475 18.8638 3.77054 18.718 3.66739L16.4689 2.37889C16.3046 2.28616 16.1354 2.19058 15.9853 2.1251C15.8221 2.05387 15.5823 1.9716 15.2979 2.00968C14.9888 2.05108 14.7596 2.22753 14.6278 2.3377C14.4879 2.45467 14.136 2.80369 14.136 2.80369C13.5529 3.38184 12.7765 3.67103 12 3.67124C11.2235 3.67103 10.4471 3.38184 9.86405 2.80369C9.86405 2.80369 9.51213 2.45467 9.37221 2.3377C9.24043 2.22753 9.01124 2.05108 8.70208 2.00968ZM12 15.5C13.933 15.5 15.5 13.933 15.5 12C15.5 10.067 13.933 8.50004 12 8.50004C10.067 8.50004 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5Z" fill="currentColor"></path>
|
<path fillRule="evenodd" clipRule="evenodd" d="M8.70208 2.00968C8.41768 1.9716 8.17792 2.05387 8.01469 2.1251C7.86464 2.19058 7.69535 2.28616 7.53113 2.37889L5.28197 3.66739C5.13616 3.77054 4.93913 3.93475 4.82604 4.20047C4.70258 4.49056 4.74241 4.78294 4.77174 4.95206C4.80348 5.13505 4.86932 5.387 4.93233 5.62811C5.32857 7.14492 4.36065 8.77664 2.79378 9.19656L2.76618 9.20395C2.52912 9.26746 2.30699 9.32697 2.13327 9.3896C1.97074 9.4482 1.69912 9.55819 1.50772 9.80652C1.33182 10.0347 1.28519 10.2849 1.26684 10.4619C1.24992 10.6252 1.24996 10.8205 1.25 11.0105V12.9897C1.24996 13.1797 1.24992 13.375 1.26684 13.5383C1.28519 13.7153 1.33181 13.9654 1.5077 14.1936C1.69909 14.4419 1.97071 14.5519 2.13322 14.6105C2.30694 14.6732 2.79374 14.8036 2.79374 14.8036C4.36003 15.2235 5.32731 16.8549 4.93082 18.3719C4.93082 18.3719 4.80192 18.8649 4.77017 19.0479C4.74082 19.217 4.70097 19.5094 4.82441 19.7995C4.93749 20.0653 5.13453 20.2295 5.28035 20.3327L7.52952 21.6212L7.52962 21.6212C7.6938 21.7139 7.86312 21.8095 8.01315 21.875C8.17639 21.9462 8.41618 22.0285 8.70059 21.9904C9.00977 21.949 9.23894 21.7725 9.37072 21.6623C9.51065 21.5453 9.86249 21.1963 9.86249 21.1963C10.4459 20.6176 11.2229 20.3281 12 20.3279C12.7771 20.3281 13.5541 20.6176 14.1375 21.1963C14.1375 21.1963 14.4894 21.5453 14.6293 21.6623C14.7611 21.7725 14.9902 21.949 15.2994 21.9904C15.5838 22.0285 15.8236 21.9462 15.9869 21.875C16.1369 21.8095 16.3062 21.7139 16.4704 21.6212L16.4705 21.6212L18.7196 20.3327C18.8655 20.2295 19.0625 20.0653 19.1756 19.7995C19.299 19.5094 19.2592 19.217 19.2298 19.0479C19.1981 18.8649 19.0692 18.3719 19.0692 18.3719C18.6727 16.8549 19.64 15.2235 21.2063 14.8036C21.2063 14.8036 21.6931 14.6732 21.8668 14.6105C22.0293 14.5519 22.3009 14.4419 22.4923 14.1936C22.6682 13.9654 22.7148 13.7153 22.7332 13.5383C22.7501 13.375 22.75 13.1797 22.75 12.9897V11.0105C22.75 10.8205 22.7501 10.6252 22.7332 10.4619C22.7148 10.2849 22.6682 10.0347 22.4923 9.80652C22.3009 9.55819 22.0293 9.4482 21.8667 9.3896C21.693 9.32697 21.4709 9.26746 21.2338 9.20395L21.2062 9.19656C19.6393 8.77664 18.6714 7.14492 19.0677 5.62811C19.1307 5.387 19.1965 5.13505 19.2283 4.95206C19.2576 4.78294 19.2974 4.49056 19.174 4.20047C19.0609 3.93475 18.8638 3.77054 18.718 3.66739L16.4689 2.37889C16.3046 2.28616 16.1354 2.19058 15.9853 2.1251C15.8221 2.05387 15.5823 1.9716 15.2979 2.00968C14.9888 2.05108 14.7596 2.22753 14.6278 2.3377C14.4879 2.45467 14.136 2.80369 14.136 2.80369C13.5529 3.38184 12.7765 3.67103 12 3.67124C11.2235 3.67103 10.4471 3.38184 9.86405 2.80369C9.86405 2.80369 9.51213 2.45467 9.37221 2.3377C9.24043 2.22753 9.01124 2.05108 8.70208 2.00968ZM12 15.5C13.933 15.5 15.5 13.933 15.5 12C15.5 10.067 13.933 8.50004 12 8.50004C10.067 8.50004 8.5 10.067 8.5 12C8.5 13.933 10.067 15.5 12 15.5Z" fill="currentColor"></path>
|
||||||
@@ -156,26 +131,6 @@ export const BlockedIcon = (props) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const SlidersHorizontalIcon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M10 6L4.00004 6.00024C3.44776 6.00027 3.00002 5.55257 3 5.00029C2.99998 4.448 3.44767 4.00027 3.99996 4.00024L9.99996 4C10.5522 3.99998 11 4.44767 11 4.99996C11 5.55224 10.5523 5.99998 10 6Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 5C12 4.44772 12.4477 4 13 4L20 4C20.5523 4 21 4.44772 21 5C21 5.55229 20.5523 6 20 6L13 6C12.4477 6 12 5.55228 12 5Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M16 8C16.5523 8 17 8.44772 17 9L17 15C17 15.5523 16.5523 16 16 16C15.4477 16 15 15.5523 15 15L15 9C15 8.44772 15.4477 8 16 8Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M10 1C10.5523 1 11 1.44772 11 2L11 8C11 8.55228 10.5523 9 10 9C9.44772 9 9 8.55228 9 8L9 2C9 1.44772 9.44772 1 10 1Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 15C12.5523 15 13 15.4477 13 16L13 22C13 22.5523 12.5523 23 12 23C11.4477 23 11 22.5523 11 22L11 16C11 15.4477 11.4477 15 12 15Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M15 11.9999C15 11.4477 15.4478 11 16.0001 11L20.0001 11.0002C20.5523 11.0003 21 11.448 21 12.0003C21 12.5526 20.5522 13.0003 19.9999 13.0002L15.9999 13C15.4477 13 15 12.5522 15 11.9999Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M13 13L4.00003 13.0002C3.44774 13.0003 3.00002 12.5526 3 12.0003C2.99998 11.448 3.44769 11.0003 3.99997 11.0002L13 11C13.5523 11 14 11.4477 14 12C14 12.5523 13.5523 13 13 13Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M11 19C11 18.4477 11.4477 18 12 18L20 18C20.5523 18 21 18.4477 21 19C21 19.5523 20.5523 20 20 20L12 20C11.4477 20 11 19.5523 11 19Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M9.00005 20L4.00005 20.0002C3.44776 20.0003 3.00003 19.5526 3 19.0003C2.99997 18.448 3.44767 18.0003 3.99995 18.0002L8.99995 18C9.55224 18 9.99997 18.4477 10 19C10 19.5522 9.55233 20 9.00005 20Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const Recycle03Icon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M5.23138 2.35774C5.43514 1.8585 6.00547 1.61878 6.50527 1.82231L9.43707 3.01619C9.92228 3.21377 10.1651 3.75843 9.98762 4.25087L9.01035 6.9617C8.82748 7.46894 8.26758 7.73207 7.75978 7.54941C7.25197 7.36675 6.98855 6.80747 7.17141 6.30023L7.44465 5.54229C4.9263 6.83943 3.20454 9.46366 3.20454 12.488C3.20454 12.9326 3.24162 13.3678 3.31268 13.7908C3.40198 14.3225 3.04286 14.8258 2.51057 14.915C1.97828 15.0042 1.47438 14.6455 1.38508 14.1138C1.29617 13.5845 1.25 13.0413 1.25 12.488C1.25 8.7674 3.33323 5.53429 6.39763 3.88684L5.76742 3.6302C5.26762 3.42668 5.02763 2.85697 5.23138 2.35774ZM11.5248 3.66239C11.6141 3.13069 12.118 2.77198 12.6503 2.86118C17.273 3.63587 20.7954 7.65011 20.7954 12.488C20.7954 13.0034 20.7553 13.5098 20.6781 14.0041L21.2224 13.6337C21.6684 13.3301 22.2764 13.4452 22.5803 13.8908C22.8842 14.3363 22.7689 14.9436 22.3229 15.2471L19.4541 17.1995C19.2234 17.3565 18.9366 17.4074 18.6658 17.3395C18.3951 17.2716 18.1664 17.0913 18.0373 16.8441L16.5084 13.9156C16.2588 13.4376 16.4445 12.848 16.923 12.5987C17.4016 12.3494 17.9919 12.5348 18.2414 13.0128L18.7112 13.9127C18.7963 13.451 18.8408 12.9749 18.8408 12.488C18.8408 8.61944 16.0238 5.40615 12.3269 4.78663C11.7946 4.69743 11.4355 4.19409 11.5248 3.66239ZM2.7311 17.3689C2.7311 16.8298 3.16864 16.3927 3.70837 16.3927H7.11361C7.65334 16.3927 8.09088 16.8298 8.09088 17.3689C8.09088 17.9081 7.65334 18.3451 7.11361 18.3451H5.85114C7.22998 19.5609 9.04032 20.2975 11.0227 20.2975C13.0257 20.2975 14.8507 19.5463 16.2345 18.3092C16.6367 17.9496 17.2545 17.9838 17.6145 18.3855C17.9744 18.7872 17.9402 19.4044 17.538 19.7639C15.8097 21.3091 13.525 22.2498 11.0227 22.2498C8.60426 22.2498 6.39132 21.3719 4.68563 19.9194V20.7855C4.68563 21.3247 4.2481 21.7617 3.70837 21.7617C3.16864 21.7617 2.7311 21.3247 2.7311 20.7855V17.3689Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const CloudUploadIcon = (props) => (
|
export const CloudUploadIcon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M13.0059 21.25C13.0059 21.8023 12.5581 22.25 12.0059 22.25C11.4536 22.25 11.0059 21.8023 11.0059 21.25L11.0059 16.75L10.4116 16.75C10.236 16.7501 10.0203 16.7503 9.84387 16.7282L9.84053 16.7278C9.71408 16.712 9.13804 16.6402 8.86368 16.0746C8.58872 15.5078 8.89065 15.0076 8.95597 14.8994L8.95841 14.8954C9.05062 14.7424 9.18477 14.5715 9.29511 14.4309L9.31885 14.4007C9.61348 14.0249 9.99545 13.5406 10.3759 13.1496C10.5657 12.9545 10.783 12.7533 11.0139 12.5944C11.2191 12.4532 11.5693 12.25 12 12.25C12.4307 12.25 12.7809 12.4532 12.9861 12.5944C13.217 12.7533 13.4343 12.9545 13.6241 13.1496C14.0046 13.5406 14.3865 14.0249 14.6812 14.4007L14.7049 14.4309C14.8152 14.5715 14.9494 14.7424 15.0416 14.8954L15.044 14.8994C15.1093 15.0076 15.4113 15.5078 15.1363 16.0746C14.862 16.6402 14.2859 16.712 14.1595 16.7278L14.1561 16.7282C13.9797 16.7503 13.764 16.7501 13.5884 16.75L13.0059 16.75L13.0059 21.25Z" fill="currentColor"></path>
|
<path fillRule="evenodd" clipRule="evenodd" d="M13.0059 21.25C13.0059 21.8023 12.5581 22.25 12.0059 22.25C11.4536 22.25 11.0059 21.8023 11.0059 21.25L11.0059 16.75L10.4116 16.75C10.236 16.7501 10.0203 16.7503 9.84387 16.7282L9.84053 16.7278C9.71408 16.712 9.13804 16.6402 8.86368 16.0746C8.58872 15.5078 8.89065 15.0076 8.95597 14.8994L8.95841 14.8954C9.05062 14.7424 9.18477 14.5715 9.29511 14.4309L9.31885 14.4007C9.61348 14.0249 9.99545 13.5406 10.3759 13.1496C10.5657 12.9545 10.783 12.7533 11.0139 12.5944C11.2191 12.4532 11.5693 12.25 12 12.25C12.4307 12.25 12.7809 12.4532 12.9861 12.5944C13.217 12.7533 13.4343 12.9545 13.6241 13.1496C14.0046 13.5406 14.3865 14.0249 14.6812 14.4007L14.7049 14.4309C14.8152 14.5715 14.9494 14.7424 15.0416 14.8954L15.044 14.8994C15.1093 15.0076 15.4113 15.5078 15.1363 16.0746C14.862 16.6402 14.2859 16.712 14.1595 16.7278L14.1561 16.7282C13.9797 16.7503 13.764 16.7501 13.5884 16.75L13.0059 16.75L13.0059 21.25Z" fill="currentColor"></path>
|
||||||
@@ -227,14 +182,6 @@ export const ScrollIcon = (props) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const Menu01Icon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M3 5C3 4.44772 3.44772 4 4 4L20 4C20.5523 4 21 4.44772 21 5C21 5.55229 20.5523 6 20 6L4 6C3.44772 6 3 5.55228 3 5Z" fill="currentColor" />
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M3 12C3 11.4477 3.44772 11 4 11L20 11C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13L4 13C3.44772 13 3 12.5523 3 12Z" fill="currentColor" />
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M3 19C3 18.4477 3.44772 18 4 18L20 18C20.5523 18 21 18.4477 21 19C21 19.5523 20.5523 20 20 20L4 20C3.44772 20 3 19.5523 3 19Z" fill="currentColor" />
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const MailEdit01Icon = (props) => (
|
export const MailEdit01Icon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path d="M18.3285 13.8039C18.6619 13.4705 18.8285 13.3039 19.0019 13.2037C19.4725 12.9321 20.0522 12.9321 20.5227 13.2037C20.6961 13.3039 20.8628 13.4705 21.1961 13.8039C21.5295 14.1372 21.6961 14.3039 21.7963 14.4773C22.0679 14.9478 22.0679 15.5275 21.7963 15.9981C21.6961 16.1715 21.5295 16.3381 21.1961 16.6715L17.8883 19.9793C17.2274 20.6402 16.2301 20.6671 15.3477 20.8557C14.6578 21.0032 14.3128 21.077 14.1179 20.8821C13.923 20.6872 13.9968 20.3422 14.1443 19.6523C14.3329 18.7699 14.3598 17.7726 15.0207 17.1117L18.3285 13.8039Z" fill="currentColor"></path>
|
<path d="M18.3285 13.8039C18.6619 13.4705 18.8285 13.3039 19.0019 13.2037C19.4725 12.9321 20.0522 12.9321 20.5227 13.2037C20.6961 13.3039 20.8628 13.4705 21.1961 13.8039C21.5295 14.1372 21.6961 14.3039 21.7963 14.4773C22.0679 14.9478 22.0679 15.5275 21.7963 15.9981C21.6961 16.1715 21.5295 16.3381 21.1961 16.6715L17.8883 19.9793C17.2274 20.6402 16.2301 20.6671 15.3477 20.8557C14.6578 21.0032 14.3128 21.077 14.1179 20.8821C13.923 20.6872 13.9968 20.3422 14.1443 19.6523C14.3329 18.7699 14.3598 17.7726 15.0207 17.1117L18.3285 13.8039Z" fill="currentColor"></path>
|
||||||
@@ -336,7 +283,6 @@ export const CancelCircleIcon = (props) => (
|
|||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
export const Link02Icon = (props) => (
|
export const Link02Icon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.2071 8.79285C15.5976 9.18337 15.5976 9.81654 15.2071 10.2071L10.2071 15.2071C9.81658 15.5976 9.18342 15.5976 8.79289 15.2071C8.40237 14.8165 8.40237 14.1834 8.79289 13.7928L13.7929 8.79285C14.1834 8.40232 14.8166 8.40232 15.2071 8.79285Z" fill="currentColor"></path>
|
<path fillRule="evenodd" clipRule="evenodd" d="M15.2071 8.79285C15.5976 9.18337 15.5976 9.81654 15.2071 10.2071L10.2071 15.2071C9.81658 15.5976 9.18342 15.5976 8.79289 15.2071C8.40237 14.8165 8.40237 14.1834 8.79289 13.7928L13.7929 8.79285C14.1834 8.40232 14.8166 8.40232 15.2071 8.79285Z" fill="currentColor"></path>
|
||||||
@@ -353,30 +299,9 @@ export const UserGroupIcon = (props) => (
|
|||||||
);
|
);
|
||||||
|
|
||||||
export const Copy01Icon = (props) => (
|
export const Copy01Icon = (props) => (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={64} height={64} color={"currentColor"} fill={"none"} {...props}>
|
||||||
<path d="M9.15051 5.25H8.9426C7.55182 5.24998 6.44301 5.24997 5.56489 5.37061C4.65689 5.49531 3.89785 5.76091 3.29285 6.39285C2.68785 7.02479 2.43531 7.81689 2.31561 8.76489C2.19997 9.68301 2.19998 10.8418 2.25 12.2926V16.2074C2.19998 17.6582 2.19997 18.817 2.31561 19.7351C2.43531 20.6831 2.68785 21.4752 3.29285 22.1072C3.89785 22.7391 4.65689 22.9847 5.56489 23.0994C6.44301 23.2151 7.55182 23.215 8.9426 23.215H12.7074C14.0982 23.215 15.207 23.2151 16.0851 23.0994C16.9931 22.9847 17.7522 22.7391 18.3572 22.1072C18.9622 21.4752 19.2147 20.6831 19.3344 19.7351C19.4501 18.817 19.45 17.6582 19.4 16.2074V16.0995C19.45 15.3995 19.45 14.5995 19.45 13.6995" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
|
<path d="M16.0549 8.25C17.4225 8.24998 18.5248 8.24996 19.3918 8.36652C20.2919 8.48754 21.0497 8.74643 21.6517 9.34835C22.2536 9.95027 22.5125 10.7081 22.6335 11.6083C22.75 12.4752 22.75 13.5775 22.75 14.9451V14.9451V16.0549V16.0549C22.75 17.4225 22.75 18.5248 22.6335 19.3918C22.5125 20.2919 22.2536 21.0497 21.6517 21.6517C21.0497 22.2536 20.2919 22.5125 19.3918 22.6335C18.5248 22.75 17.4225 22.75 16.0549 22.75H16.0549H14.9451H14.9451C13.5775 22.75 12.4752 22.75 11.6082 22.6335C10.7081 22.5125 9.95027 22.2536 9.34835 21.6516C8.74643 21.0497 8.48754 20.2919 8.36652 19.3918C8.24996 18.5248 8.24998 17.4225 8.25 16.0549V16.0549V14.9451V14.9451C8.24998 13.5775 8.24996 12.4752 8.36652 11.6082C8.48754 10.7081 8.74643 9.95027 9.34835 9.34835C9.95027 8.74643 10.7081 8.48754 11.6083 8.36652C12.4752 8.24996 13.5775 8.24998 14.9451 8.25H14.9451H16.0549H16.0549Z" fill="currentColor" />
|
||||||
<path d="M19.25 11.25H14.75C12.9551 11.25 11.5 9.79493 11.5 8V3.5M19.25 11.25C19.25 10.3839 18.8978 9.56607 18.3033 8.94625L13.8037 4.19675C13.1713 3.53775 12.3017 3.16 11.5 3.16V3.5M19.25 11.25V14.5074C19.25 15.9582 19.25 17.117 19.1344 18.0351C19.0147 18.9831 18.7622 19.7752 18.1572 20.4072C17.5522 21.0391 16.7931 21.2847 15.8851 21.3994C15.007 21.5151 13.8982 21.515 12.5074 21.515H8.7426C7.35182 21.515 6.24301 21.5151 5.36489 21.3994C4.45689 21.2847 3.69785 21.0391 3.09285 20.4072C2.48785 19.7752 2.23531 18.9831 2.11561 18.0351C1.99997 17.117 1.99998 15.9582 2 14.5074V10.7926C1.99998 9.34182 1.99997 8.18301 2.11561 7.26489C2.23531 6.31689 2.48785 5.52479 3.09285 4.89285C3.69785 4.26091 4.45689 4.01531 5.36489 3.90061C6.24301 3.78497 7.35182 3.78498 8.7426 3.785H11.5" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
|
<path d="M6.75 14.8569C6.74991 13.5627 6.74983 12.3758 6.8799 11.4084C7.0232 10.3425 7.36034 9.21504 8.28769 8.28769C9.21504 7.36034 10.3425 7.0232 11.4084 6.8799C12.3758 6.74983 13.5627 6.74991 14.8569 6.75L17.0931 6.75C17.3891 6.75 17.5371 6.75 17.6261 6.65419C17.7151 6.55838 17.7045 6.4142 17.6833 6.12584C17.6648 5.87546 17.6412 5.63892 17.6111 5.41544C17.4818 4.45589 17.2232 3.6585 16.6718 2.98663C16.4744 2.74612 16.2539 2.52558 16.0134 2.3282C15.3044 1.74638 14.4557 1.49055 13.4248 1.36868C12.4205 1.24998 11.1512 1.24999 9.54893 1.25H9.45109C7.84883 1.24999 6.57947 1.24998 5.57525 1.36868C4.54428 1.49054 3.69558 1.74638 2.98663 2.3282C2.74612 2.52558 2.52558 2.74612 2.3282 2.98663C1.74638 3.69558 1.49055 4.54428 1.36868 5.57525C1.24998 6.57947 1.24999 7.84882 1.25 9.45108V9.54891C1.24999 11.1512 1.24998 12.4205 1.36868 13.4247C1.49054 14.4557 1.74638 15.3044 2.3282 16.0134C2.52558 16.2539 2.74612 16.4744 2.98663 16.6718C3.6585 17.2232 4.45589 17.4818 5.41544 17.6111C5.63892 17.6412 5.87546 17.6648 6.12584 17.6833C6.4142 17.7045 6.55838 17.7151 6.65419 17.6261C6.75 17.5371 6.75 17.3891 6.75 17.0931V14.8569Z" fill="currentColor" />
|
||||||
<path d="M6.5 0.75H13.0574C14.4482 0.74998 15.557 0.74997 16.4351 0.87061C17.3431 0.99531 18.1022 1.24091 18.7072 1.87285C19.3122 2.50479 19.5647 3.29689 19.6844 4.24489C19.8001 5.16301 19.8 6.32182 19.75 7.77261" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const Pdf01Icon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.5874 1.2501C12.1574 1.24934 12.6619 1.24866 13.1373 1.41733C13.2353 1.45209 13.3314 1.49208 13.4251 1.53715C13.8799 1.75582 14.2362 2.11489 14.6387 2.52054L19.4215 7.32819C19.8889 7.79654 20.3036 8.2122 20.5277 8.75596C20.7518 9.29971 20.7509 9.88846 20.7499 10.5518L20.7498 17.0262V17.0262C20.75 18.4009 20.75 19.5066 20.6346 20.3822C20.5149 21.2911 20.2621 22.0595 19.6558 22.6658C19.0495 23.2721 18.2811 23.5249 17.3722 23.6446C16.4966 23.76 15.3909 23.76 14.0162 23.75H9.98378H9.98376C8.60909 23.76 7.50342 23.76 6.62779 23.6446C5.71893 23.5249 4.95053 23.2721 4.34422 22.6658C3.73791 22.0595 3.48515 21.2911 3.36542 20.3822C3.25003 19.5066 3.25005 18.4009 3.25006 17.0262L3.25006 6.97378C3.25005 5.5991 3.25003 4.49343 3.36542 3.6178C3.48515 2.70894 3.73791 1.94054 4.34422 1.33423C4.95053 0.727916 5.71893 0.475156 6.62779 0.355432C7.50341 0.240045 8.60906 0.240063 9.98373 0.240107L11.5874 1.2501ZM18.7314 9.50391C18.6746 9.36608 18.5692 9.2357 17.9511 8.6144L13.3462 3.98554C12.8133 3.44983 12.4902 3.26172 12.4902 3.26172V3.2701C12.4902 4.63195 12.4902 5.27967 12.6065 6.14486C12.7275 7.04497 12.9864 7.80284 13.5884 8.40476C14.1903 9.00667 14.9481 9.26557 15.8483 9.38658C16.7152 9.50314 17.3638 9.50393 18.7314 9.50391ZM7.25 13C7.25 12.5858 7.58579 12.25 8 12.25H10C10.4142 12.25 10.75 12.5858 10.75 13C10.75 13.4142 10.4142 13.75 10 13.75H8C7.58579 13.75 7.25 13.4142 7.25 13ZM8 16.25C7.58579 16.25 7.25 16.5858 7.25 17C7.25 17.4142 7.58579 17.75 8 17.75H14C14.4142 17.75 14.75 17.4142 14.75 17C14.75 16.5858 14.4142 16.25 14 16.25H8Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const ArrowUp01Icon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 4.25C12.4142 4.25 12.75 4.58579 12.75 5V19C12.75 19.4142 12.4142 19.75 12 19.75C11.5858 19.75 11.25 19.4142 11.25 19V5C11.25 4.58579 11.5858 4.25 12 4.25Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.4697 4.46967C11.7626 4.17678 12.2374 4.17678 12.5303 4.46967L18.5303 10.4697C18.8232 10.7626 18.8232 11.2374 18.5303 11.5303C18.2374 11.8232 17.7626 11.8232 17.4697 11.5303L12 6.06066L6.53033 11.5303C6.23744 11.8232 5.76256 11.8232 5.46967 11.5303C5.17678 11.2374 5.17678 10.7626 5.46967 10.4697L11.4697 4.46967Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const ArrowDown01Icon = (props) => (
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={24} height={24} color={"currentColor"} fill={"none"} {...props}>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M12 4.25C12.4142 4.25 12.75 4.58579 12.75 5V19C12.75 19.4142 12.4142 19.75 12 19.75C11.5858 19.75 11.25 19.4142 11.25 19V5C11.25 4.58579 11.5858 4.25 12 4.25Z" fill="currentColor"></path>
|
|
||||||
<path fillRule="evenodd" clipRule="evenodd" d="M5.46967 12.4697C5.76256 12.1768 6.23744 12.1768 6.53033 12.4697L12 17.9393L17.4697 12.4697C17.7626 12.1768 18.2374 12.1768 18.5303 12.4697C18.8232 12.7626 18.8232 13.2374 18.5303 13.5303L12.5303 19.5303C12.2374 19.8232 11.7626 19.8232 11.4697 19.5303L5.46967 13.5303C5.17678 13.2374 5.17678 12.7626 5.46967 12.4697Z" fill="currentColor"></path>
|
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -572,3 +497,24 @@ export const User03Icon = (props) => (
|
|||||||
<path d="M4.25 19C4.25 15.8244 6.82436 13.25 10 13.25H14C17.1756 13.25 19.75 15.8244 19.75 19C19.75 20.5188 18.5188 21.75 17 21.75H7C5.48122 21.75 4.25 20.5188 4.25 19Z" fill="currentColor"></path>
|
<path d="M4.25 19C4.25 15.8244 6.82436 13.25 10 13.25H14C17.1756 13.25 19.75 15.8244 19.75 19C19.75 20.5188 18.5188 21.75 17 21.75H7C5.48122 21.75 4.25 20.5188 4.25 19Z" fill="currentColor"></path>
|
||||||
</svg>
|
</svg>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
export const Logout02Icon = (props) => (
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={64} height={64} color={"currentColor"} fill={"none"} {...props}>
|
||||||
|
<path d="M11.6856 3.25027C11.7518 3.76376 11.75 4.41982 11.75 5.19656L11.75 18.863C11.7501 19.614 11.7501 20.2498 11.6856 20.7503C11.6176 21.2766 11.4638 21.7901 11.0469 22.1848C10.925 22.3003 10.79 22.4021 10.6455 22.4876C10.1515 22.7798 9.61553 22.7866 9.09084 22.7073C8.59102 22.6317 7.9783 22.4567 7.25445 22.2499L7.15469 22.2214C6.42537 22.0131 5.82294 21.841 5.34572 21.6497C4.84346 21.4484 4.41446 21.2011 4.06642 20.8079C3.95414 20.681 3.85193 20.5454 3.76076 20.4026C3.47827 19.9601 3.3584 19.4798 3.30275 18.9417C3.24997 18.4311 3.24999 17.8059 3.25002 17.0492V6.95133C3.24999 6.1946 3.24997 5.5694 3.30275 5.05887C3.3584 4.52076 3.47827 4.04049 3.76076 3.59793C3.85192 3.45513 3.95414 3.31952 4.06642 3.19265C4.41446 2.79943 4.84346 2.55219 5.34572 2.35086C5.82295 2.15956 6.42538 1.98749 7.1547 1.77918L7.20119 1.7659C7.94828 1.55248 8.57881 1.37065 9.09084 1.29324C9.61553 1.21396 10.1515 1.22077 10.6455 1.51297C10.79 1.59847 10.925 1.70028 11.0469 1.8157C11.4638 2.21046 11.6176 2.72394 11.6856 3.25027Z" fill="currentColor" />
|
||||||
|
<path d="M16.8483 16.7549C16.2988 16.7005 15.8091 17.1019 15.7546 17.6514C15.699 18.2122 15.5908 18.3696 15.5056 18.4541C15.4273 18.5317 15.2875 18.627 14.8483 18.6856C14.3805 18.748 13.7452 18.75 12.7663 18.75H10.7497C10.1974 18.75 9.74971 19.1978 9.74971 19.75C9.74971 20.3023 10.1974 20.75 10.7497 20.75H12.7663C13.6891 20.75 14.4813 20.7521 15.112 20.668C15.7706 20.5802 16.4013 20.3822 16.9138 19.8741C17.4873 19.3054 17.6715 18.5879 17.7448 17.8487C17.7993 17.2991 17.3979 16.8094 16.8483 16.7549ZM10.7497 3.25004C10.1974 3.25004 9.74971 3.69776 9.74971 4.25004C9.74971 4.80233 10.1974 5.25004 10.7497 5.25004H12.7663C13.7452 5.25004 14.3805 5.25213 14.8483 5.3145C15.2875 5.37309 15.4273 5.46837 15.5056 5.54594C15.5908 5.63048 15.699 5.78789 15.7546 6.34868C15.8091 6.89823 16.2988 7.29963 16.8483 7.24516C17.3979 7.19064 17.7993 6.70096 17.7448 6.15141C17.6715 5.41215 17.4873 4.69466 16.9138 4.12602C16.4013 3.61792 15.7706 3.41987 15.112 3.33207C14.4813 3.24801 13.6891 3.25004 12.7663 3.25004H10.7497Z" fill="currentColor" />
|
||||||
|
<path d="M19.8428 8.69444C19.3982 8.36731 18.7728 8.46282 18.4453 8.90733C18.1178 9.35202 18.2126 9.97728 18.6573 10.3048C18.722 10.3537 18.913 10.4983 19.0254 10.586C19.1727 10.701 19.3494 10.8445 19.5371 11.0001H14.25C13.6978 11.0001 13.2501 11.4478 13.25 12.0001C13.25 12.5524 13.6977 13.0001 14.25 13.0001H19.5371C19.3494 13.1557 19.1727 13.2992 19.0254 13.4142C18.913 13.5019 18.6429 13.711 18.5782 13.7599C18.2024 14.1001 18.1383 14.6759 18.4453 15.0929C18.7728 15.5374 19.3982 15.6329 19.8428 15.3058C19.9147 15.2514 20.134 15.0855 20.2559 14.9903C20.4986 14.8009 20.8254 14.5385 21.1553 14.2521C21.4802 13.97 21.8311 13.645 22.1084 13.3312C22.2461 13.1753 22.3873 12.998 22.4991 12.8126C22.5943 12.6546 22.75 12.3607 22.75 12.0001C22.75 11.6395 22.5943 11.3456 22.4991 11.1876C22.3873 11.0022 22.2461 10.8249 22.1084 10.669C21.8311 10.3552 21.4802 10.0302 21.1553 9.74815C20.8254 9.46171 20.4986 9.19929 20.2559 9.00987C20.134 8.91474 19.9147 8.74878 19.8428 8.69444Z" fill="currentColor" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const SmartPhone01Icon = (props) => (
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={64} height={64} color={"currentColor"} fill={"none"} {...props}>
|
||||||
|
<path d="M14.3643 1.25195C15.1368 1.25654 15.7946 1.27495 16.3428 1.34863C17.1067 1.45134 17.7692 1.67346 18.2979 2.20215C18.8265 2.73084 19.0487 3.39328 19.1514 4.15723C19.2496 4.88804 19.25 5.81361 19.25 6.94629V17.0537C19.25 18.1864 19.2496 19.112 19.1514 19.8428C19.0487 20.6067 18.8265 21.2692 18.2979 21.7979C17.7692 22.3265 17.1067 22.5487 16.3428 22.6514C15.612 22.7496 14.6864 22.75 13.5537 22.75H10.4463L9.63574 22.748C8.86316 22.7435 8.20542 22.725 7.65723 22.6514C6.89328 22.5487 6.23084 22.3265 5.70215 21.7979C5.17346 21.2692 4.95134 20.6067 4.84863 19.8428C4.75041 19.112 4.74998 18.1864 4.75 17.0537V6.94629L4.75195 6.13574C4.75654 5.36316 4.77495 4.70542 4.84863 4.15723C4.95134 3.39328 5.17346 2.73084 5.70215 2.20215C6.23084 1.67346 6.89328 1.45134 7.65723 1.34863C8.38804 1.25041 9.31361 1.24998 10.4463 1.25H13.5537L14.3643 1.25195ZM12 18C11.4477 18 11 18.4477 11 19C11 19.5523 11.4477 20 12 20C12.5523 20 13 19.5523 13 19C13 18.4477 12.5523 18 12 18Z" fill="#ffffff"></path>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
|
||||||
|
export const ComputerIcon = (props) => (
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={64} height={64} color={"currentColor"} fill={"none"} {...props}>
|
||||||
|
<path d="M16.0549 2.25C17.4225 2.24998 18.5248 2.24996 19.3918 2.36652C20.2919 2.48754 21.0497 2.74643 21.6517 3.34835C22.2536 3.95027 22.5125 4.70814 22.6335 5.60825C22.75 6.47522 22.75 7.57754 22.75 8.94513V11.0549C22.75 12.4225 22.75 13.5248 22.6335 14.3918C22.5125 15.2919 22.2536 16.0497 21.6517 16.6517C21.0497 17.2536 20.2919 17.5125 19.3918 17.6335C18.5248 17.75 17.4225 17.75 16.0549 17.75H16.0549H7.94513H7.94512C6.57754 17.75 5.47522 17.75 4.60825 17.6335C3.70814 17.5125 2.95027 17.2536 2.34835 16.6517C1.74643 16.0497 1.48754 15.2919 1.36652 14.3918C1.24996 13.5248 1.24998 12.4225 1.25 11.0549V11.0549V8.94513V8.94511C1.24998 7.57753 1.24996 6.47521 1.36652 5.60825C1.48754 4.70814 1.74643 3.95027 2.34835 3.34835C2.95027 2.74643 3.70814 2.48754 4.60825 2.36652C5.47521 2.24996 6.57753 2.24998 7.94511 2.25H7.94513H16.0549H16.0549Z" fill="currentColor" />
|
||||||
|
<path fillRule="evenodd" clipRule="evenodd" d="M10.5 16.75C10.5 16.1977 10.9477 15.75 11.5 15.75H12.5C13.0523 15.75 13.5 16.1977 13.5 16.75V19.25C13.5 19.5261 13.7239 19.75 14 19.75H16C16.5523 19.75 17 20.1977 17 20.75C17 21.3023 16.5523 21.75 16 21.75H8C7.44772 21.75 7 21.3023 7 20.75C7 20.1977 7.44772 19.75 8 19.75H10C10.2761 19.75 10.5 19.5261 10.5 19.25V16.75Z" fill="currentColor" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
Reference in New Issue
Block a user