빌드 설정 개선 및 이미지 경로 문제 해결
- package.json: preview 및 build 스크립트에 환경변수 설정 추가 - 이미지 파일을 public/images 디렉토리로 이동하여 빌드 호환성 확보 - IMAGE_ROOT 상수를 '/images'로 변경하여 빌드 환경 지원 - .env.production 파일 추가로 프로덕션 환경 설정 분리 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
5
.env.production
Normal file
@@ -0,0 +1,5 @@
|
||||
VITE_APP_ENV=development
|
||||
VITE_APP_AUTH_PROXY_HOST='http://3.35.79.250:8090'
|
||||
VITE_APP_API_PROXY_HOST='http://3.35.79.250:8080'
|
||||
GENERATE_SOURCEMAP=false
|
||||
SENTRY_AUTH_TOKEN=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
|
||||
5
.gitignore
vendored
@@ -22,3 +22,8 @@ dist-ssr
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
.vite/
|
||||
|
||||
AGENTS.md
|
||||
CLAUDE.md
|
||||
@@ -6,9 +6,9 @@
|
||||
"scripts": {
|
||||
"dev": "env-cmd -f .env.development vite --host --open",
|
||||
"build:development": "env-cmd -f .env.development vite build && rm -rf dist/development && mv build dist",
|
||||
"build": "vite build",
|
||||
"build": "env-cmd -f .env.production vite build",
|
||||
"lint": "eslint . --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||
"preview": "vite preview"
|
||||
"preview": "env-cmd -f .env.development vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/plugin-transform-react-jsx": "^7.27.1",
|
||||
|
||||
3
public/images/Forward.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="22" height="38" viewBox="0 0 22 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.20503 13.2115C6.93166 13.4936 6.93166 13.9509 7.20503 14.2329L12.3101 19.5L7.20503 24.7671C6.93166 25.0491 6.93166 25.5064 7.20503 25.7885C7.47839 26.0705 7.92161 26.0705 8.19498 25.7885L13.795 20.0107C14.0683 19.7286 14.0683 19.2714 13.795 18.9893L8.19498 13.2115C7.92161 12.9295 7.47839 12.9295 7.20503 13.2115Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 485 B |
3
public/images/alarm.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.2664 2C13.1869 2 13.9334 2.74652 13.9334 3.66699C13.9334 3.68927 13.9303 3.71134 13.9295 3.7334C16.0745 4.34798 17.7613 6.12394 18.1961 8.40625L19.0467 12.873C19.0479 12.8793 19.0502 12.8852 19.0535 12.8906L20.4099 15.0947C21.6393 17.0933 20.2008 19.6667 17.8543 19.667H14.7576C14.6714 20.9696 13.5908 22 12.2664 22C10.9421 21.9999 9.86135 20.9695 9.77518 19.667H6.67947C4.33258 19.667 2.89491 17.0935 4.12479 15.0947L5.48026 12.8906C5.48352 12.8853 5.48588 12.8792 5.48709 12.873L6.33865 8.40625C6.77333 6.12436 8.45892 4.34925 10.6033 3.73438C10.6024 3.712 10.6004 3.68959 10.6004 3.66699C10.6004 2.74661 11.346 2.00015 12.2664 2ZM11.7976 19.667C11.8666 19.8604 12.0493 19.9999 12.2664 20C12.4836 20 12.6671 19.8605 12.7361 19.667H11.7976ZM12.2674 5.5C10.3299 5.5 8.66604 6.87708 8.3035 8.78027L7.45193 13.2471C7.40531 13.4918 7.31484 13.7263 7.18436 13.9385L5.82791 16.1426C5.4179 16.8088 5.89717 17.667 6.67947 17.667H17.8543C18.6363 17.6667 19.1156 16.8087 18.7058 16.1426L17.3504 13.9385C17.2197 13.7261 17.1285 13.492 17.0818 13.2471L16.2312 8.78027C15.8688 6.87728 14.2045 5.50033 12.2674 5.5Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/android-icon-192x192.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/images/apple-icon-180x180.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
9
public/images/chart-active.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_1334_385" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
|
||||
<path d="M24 0H0V24H24V0Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_1334_385)">
|
||||
<path d="M15.3839 19.7248L18.76 23.101C19.3398 23.6808 20.1111 24 20.9305 24C21.75 24 22.5212 23.6808 23.1 23.101C23.6798 22.5212 24 21.751 24 20.9305C24 20.1111 23.6808 19.3398 23.101 18.76L19.7248 15.3838C18.6993 17.1954 17.1954 18.6993 15.3839 19.7248ZM0 9.76825C0 15.1546 4.38165 19.5354 9.76715 19.5354C15.1527 19.5354 19.5343 15.1546 19.5343 9.76825C19.5354 4.38193 15.1535 0 9.76822 0C4.38272 0 0.00107002 4.38086 0.00107002 9.76718L0 9.76825Z" fill="#3E6AFC"/>
|
||||
<path d="M4.7024 9.35355C4.7024 9.20863 4.7446 9.08361 4.8298 8.97612C4.915 8.86941 5.0639 8.81606 5.27731 8.81606H5.63563L5.33384 7.17494C5.28368 6.8859 5.30995 6.64702 5.41426 6.4583C5.51778 6.26958 5.68579 6.15651 5.9191 6.11909C6.15798 6.08166 6.36661 6.11272 6.54577 6.21305C6.72493 6.31338 6.83959 6.50846 6.88976 6.79751L7.21066 8.81606H8.18211L8.6535 6.81662C8.68456 6.6717 8.73711 6.55385 8.80957 6.46308C8.88203 6.3723 8.96325 6.29984 9.05483 6.24649C9.1464 6.19314 9.24195 6.15571 9.34228 6.13342C9.44261 6.11112 9.53737 6.09998 9.62496 6.09998C9.71255 6.09998 9.8073 6.11112 9.90764 6.13342C10.008 6.15571 10.1043 6.19314 10.1951 6.24649C10.2867 6.29984 10.3679 6.3723 10.4403 6.46308C10.5128 6.55465 10.5646 6.6725 10.5956 6.81662L11.0582 8.81606H12.0385L12.3594 6.79751C12.4095 6.50846 12.5242 6.31338 12.7033 6.21305C12.8825 6.11272 13.0919 6.08086 13.3308 6.11909C13.5569 6.15651 13.7226 6.27038 13.8261 6.4583C13.9296 6.64702 13.9567 6.88271 13.9065 7.16539L13.5952 8.81606H13.963C14.1764 8.81606 14.3261 8.86941 14.4106 8.97612C14.4958 9.08282 14.538 9.20863 14.538 9.35355C14.538 9.49847 14.4942 9.62826 14.4058 9.74452C14.3174 9.86077 14.1701 9.9189 13.9622 9.9189H13.3961L12.8777 12.7481C12.8276 13.0307 12.7097 13.2545 12.5242 13.4177C12.3386 13.581 12.1388 13.6725 11.9254 13.6909C11.8123 13.7036 11.6976 13.6988 11.5814 13.6765C11.4651 13.6542 11.3552 13.6136 11.2509 13.5539C11.1474 13.4942 11.0559 13.4122 10.977 13.3086C10.8982 13.2051 10.8401 13.0745 10.8026 12.9169L10.1234 9.91811H9.12331L8.44408 12.9169C8.40666 13.0737 8.34774 13.2043 8.2697 13.3086C8.19087 13.4122 8.10009 13.4942 7.99658 13.5539C7.89306 13.6136 7.78238 13.6542 7.66613 13.6765C7.54987 13.698 7.43521 13.7028 7.32214 13.6909C7.10794 13.6717 6.90887 13.581 6.72334 13.4177C6.53781 13.2545 6.41996 13.0307 6.36979 12.7481L5.84186 9.9189H5.27571C5.06789 9.9189 4.92057 9.86077 4.83219 9.74452C4.7438 9.62826 4.70001 9.49767 4.70001 9.35355H4.7024ZM7.6072 11.3148L7.9281 9.9189H7.38106L7.6072 11.3148ZM9.37095 8.81606H9.87101L9.62575 7.70287L9.37095 8.81606ZM11.6435 11.306L11.8601 9.9197H11.313L11.6435 11.306Z" fill="white"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
11
public/images/chart.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1040_409)">
|
||||
<path d="M15.3839 19.7248L18.76 23.101C19.3398 23.6808 20.1111 24 20.9305 24C21.75 24 22.5212 23.6808 23.1 23.101H23.101C23.6808 22.5212 24 21.751 24 20.9305C24 20.1111 23.6808 19.3398 23.101 18.76L19.7248 15.3838C18.6993 17.1954 17.1954 18.6993 15.3839 19.7248ZM0 9.76825C0 15.1546 4.38165 19.5354 9.76715 19.5354C15.1527 19.5354 19.5343 15.1546 19.5343 9.76825C19.5354 4.38193 15.1535 0 9.76822 0C4.38272 0 0.00107002 4.38086 0.00107002 9.76718L0 9.76825Z" fill="#B3B8CE"/>
|
||||
<path d="M4.70239 9.35355C4.70239 9.20863 4.74459 9.08361 4.82979 8.97612C4.91499 8.86941 5.06389 8.81606 5.2773 8.81606H5.63562L5.33383 7.17494C5.28367 6.8859 5.30994 6.64702 5.41425 6.4583C5.51777 6.26958 5.68578 6.15651 5.91909 6.11909C6.15797 6.08166 6.3666 6.11272 6.54576 6.21305C6.72492 6.31338 6.83958 6.50846 6.88975 6.79751L7.21065 8.81606H8.1821L8.65349 6.81662C8.68455 6.6717 8.7371 6.55385 8.80956 6.46308C8.88202 6.3723 8.96324 6.29984 9.05482 6.24649C9.14639 6.19314 9.24194 6.15571 9.34227 6.13342C9.4426 6.11112 9.53736 6.09998 9.62495 6.09998C9.71254 6.09998 9.80729 6.11112 9.90763 6.13342C10.008 6.15571 10.1043 6.19314 10.1951 6.24649C10.2867 6.29984 10.3679 6.3723 10.4403 6.46308C10.5128 6.55465 10.5646 6.6725 10.5956 6.81662L11.0582 8.81606H12.0385L12.3594 6.79751C12.4095 6.50846 12.5242 6.31338 12.7033 6.21305C12.8825 6.11272 13.0919 6.08086 13.3308 6.11909C13.5569 6.15651 13.7226 6.27038 13.8261 6.4583C13.9296 6.64702 13.9567 6.88271 13.9065 7.16539L13.5952 8.81606H13.963C14.1764 8.81606 14.3261 8.86941 14.4106 8.97612C14.4958 9.08282 14.538 9.20863 14.538 9.35355C14.538 9.49847 14.4942 9.62826 14.4058 9.74452C14.3174 9.86077 14.1701 9.9189 13.9622 9.9189H13.3961L12.8777 12.7481C12.8276 13.0307 12.7097 13.2545 12.5242 13.4177C12.3386 13.581 12.1388 13.6725 11.9254 13.6909C11.8123 13.7036 11.6976 13.6988 11.5814 13.6765C11.4651 13.6542 11.3552 13.6136 11.2509 13.5539C11.1474 13.4942 11.0559 13.4122 10.977 13.3086C10.8982 13.2051 10.8401 13.0745 10.8026 12.9169L10.1234 9.91811H9.1233L8.44407 12.9169C8.40665 13.0737 8.34773 13.2043 8.26969 13.3086C8.19086 13.4122 8.10008 13.4942 7.99657 13.5539C7.89305 13.6136 7.78237 13.6542 7.66612 13.6765C7.54986 13.698 7.4352 13.7028 7.32213 13.6909C7.10793 13.6717 6.90886 13.581 6.72333 13.4177C6.5378 13.2545 6.41995 13.0307 6.36978 12.7481L5.84185 9.9189H5.2757C5.06788 9.9189 4.92056 9.86077 4.83218 9.74452C4.74379 9.62826 4.7 9.49767 4.7 9.35355H4.70239ZM7.60719 11.3148L7.92809 9.9189H7.38105L7.60719 11.3148ZM9.37094 8.81606H9.871L9.62574 7.70287L9.37094 8.81606ZM11.6435 11.306L11.8601 9.9197H11.313L11.6435 11.306Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1040_409">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
3
public/images/chk_off.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="0.5" y="0.5" width="17" height="17" rx="1.5" stroke="#CCCCCC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 176 B |
4
public/images/chk_on.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="18" height="18" rx="2" fill="#4968BD"/>
|
||||
<path d="M5 8.75L8 12L13.75 6.25" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 273 B |
7
public/images/chk_scrap_off.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="path-1-inside-1_1402_1946" fill="white">
|
||||
<path d="M20.8901 7.48949C21.7048 8.30452 21.705 9.62593 20.8901 10.4408C20.2242 11.1065 19.2206 11.227 18.4311 10.8047L15.6504 13.5855C16.2504 15.4738 15.8028 17.6231 14.3052 19.1208C14.1303 19.2958 13.8463 19.2957 13.6713 19.1208L4.87941 10.329C4.70443 10.154 4.70443 9.87003 4.87941 9.69506C6.37686 8.19772 8.52533 7.75031 10.4133 8.3499L13.1948 5.56843C12.7725 4.77893 12.893 3.77538 13.5587 3.10943C14.3737 2.29451 15.695 2.29467 16.5101 3.10943L20.8901 7.48949Z"/>
|
||||
</mask>
|
||||
<path d="M20.8901 7.48949L21.8588 6.52128L21.8585 6.52107L20.8901 7.48949ZM20.8901 10.4408L21.8584 11.4094L21.8585 11.4093L20.8901 10.4408ZM18.4311 10.8047L19.077 9.59706L18.1811 9.11792L17.4627 9.83633L18.4311 10.8047ZM15.6504 13.5855L14.6819 12.6171L14.0928 13.2063L14.3451 14.0003L15.6504 13.5855ZM14.3052 19.1208L15.2736 20.0893L15.2736 20.0892L14.3052 19.1208ZM13.6713 19.1208L12.7029 20.0893L12.7033 20.0897L13.6713 19.1208ZM4.87941 9.69506L3.91102 8.7266L3.91099 8.72664L4.87941 9.69506ZM10.4133 8.3499L9.99881 9.65521L10.7927 9.90734L11.3818 9.31832L10.4133 8.3499ZM13.1948 5.56843L14.1632 6.53684L14.8817 5.81841L14.4025 4.92248L13.1948 5.56843ZM13.5587 3.10943L12.5903 2.14102L12.5901 2.1412L13.5587 3.10943ZM16.5101 3.10943L17.4785 2.14102L17.4783 2.14086L16.5101 3.10943ZM20.8901 7.48949L19.9215 8.4577C20.2018 8.73815 20.2016 9.19256 19.9217 9.47242L20.8901 10.4408L21.8585 11.4093C23.2085 10.0593 23.2078 7.8709 21.8588 6.52128L20.8901 7.48949ZM20.8901 10.4408L19.9219 9.47223C19.6955 9.69851 19.3508 9.74347 19.077 9.59706L18.4311 10.8047L17.7853 12.0124C19.0905 12.7105 20.7529 12.5145 21.8584 11.4094L20.8901 10.4408ZM18.4311 10.8047L17.4627 9.83633L14.6819 12.6171L15.6504 13.5855L16.6188 14.5539L19.3996 11.7732L18.4311 10.8047ZM15.6504 13.5855L14.3451 14.0003C14.7965 15.4206 14.458 17.0311 13.3367 18.1525L14.3052 19.1208L15.2736 20.0892C17.1476 18.2151 17.7044 15.527 16.9556 13.1707L15.6504 13.5855ZM14.3052 19.1208L13.3368 18.1524C13.6972 17.792 14.28 17.793 14.6392 18.152L13.6713 19.1208L12.7033 20.0897C13.4126 20.7983 14.5634 20.7995 15.2736 20.0893L14.3052 19.1208ZM13.6713 19.1208L14.6397 18.1524L5.84782 9.36055L4.87941 10.329L3.91099 11.2974L12.7029 20.0893L13.6713 19.1208ZM4.87941 10.329L5.84782 9.36055C6.20769 9.72042 6.20769 10.3036 5.84782 10.6635L4.87941 9.69506L3.91099 8.72664C3.20117 9.43646 3.20117 10.5876 3.91099 11.2974L4.87941 10.329ZM4.87941 9.69506L5.84779 10.6635C6.96886 9.54252 8.57859 9.20418 9.99881 9.65521L10.4133 8.3499L10.8279 7.04459C8.47207 6.29644 5.78486 6.85291 3.91102 8.7266L4.87941 9.69506ZM10.4133 8.3499L11.3818 9.31832L14.1632 6.53684L13.1948 5.56843L12.2264 4.60001L9.44493 7.38148L10.4133 8.3499ZM13.1948 5.56843L14.4025 4.92248C14.2561 4.64879 14.301 4.3041 14.5273 4.07767L13.5587 3.10943L12.5901 2.1412C11.4851 3.24666 11.289 4.90906 11.9872 6.21437L13.1948 5.56843ZM13.5587 3.10943L14.5271 4.07785C14.8071 3.79793 15.2614 3.79773 15.5418 4.07801L16.5101 3.10943L17.4783 2.14086C16.1287 0.791621 13.9402 0.791092 12.5903 2.14102L13.5587 3.10943ZM16.5101 3.10943L15.5417 4.07785L19.9217 8.45791L20.8901 7.48949L21.8585 6.52107L17.4785 2.14102L16.5101 3.10943Z" fill="#BEBEBE" mask="url(#path-1-inside-1_1402_1946)"/>
|
||||
<path d="M9.09684 15.1136C8.95481 15.2529 8.78661 15.4186 8.59689 15.6025C8.00149 16.1795 7.20296 16.9409 6.38787 17.683C6.15804 17.8923 5.92715 18.0985 5.70079 18.2983C5.90063 18.0719 6.10681 17.8411 6.31606 17.6112C7.05816 16.7961 7.81956 15.9976 8.39663 15.4022C8.58052 15.2125 8.74621 15.0443 8.88553 14.9023L9.09684 15.1136Z" stroke="#BEBEBE" stroke-width="1.35764"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
4
public/images/chk_scrap_on.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.8901 7.48949C21.7048 8.30452 21.705 9.62593 20.8901 10.4408C20.2242 11.1065 19.2206 11.227 18.4311 10.8047L15.6504 13.5855C16.2504 15.4738 15.8028 17.6231 14.3052 19.1208C14.1303 19.2958 13.8463 19.2957 13.6713 19.1208L4.87941 10.329C4.70443 10.154 4.70443 9.87003 4.87941 9.69506C6.37686 8.19772 8.52533 7.75031 10.4133 8.3499L13.1948 5.56843C12.7725 4.77893 12.893 3.77538 13.5587 3.10943C14.3737 2.29451 15.695 2.29467 16.5101 3.10943L20.8901 7.48949Z" fill="#999999"/>
|
||||
<path d="M9.09684 15.1136C8.95481 15.2529 8.78661 15.4186 8.59689 15.6025C8.00149 16.1795 7.20296 16.9409 6.38787 17.683C6.15804 17.8923 5.92715 18.0985 5.70079 18.2983C5.90063 18.0719 6.10681 17.8411 6.31606 17.6112C7.05816 16.7961 7.81956 15.9976 8.39663 15.4022C8.58052 15.2125 8.74621 15.0443 8.88553 14.9023L9.09684 15.1136Z" stroke="#999999" stroke-width="1.35764"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 962 B |
BIN
public/images/favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
4
public/images/home-active.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 19.8643C2 21.5933 3.38141 23 5.08159 23H18.9184C20.6175 23 22 21.5943 22 19.8643V10.0211C22 9.08935 21.598 8.21443 20.8953 7.61761L13.9771 1.73182C12.8314 0.756062 11.1698 0.756062 10.0241 1.73182L3.10579 7.61761C2.40311 8.2144 2.00111 9.08932 2.00111 10.0211L2 19.8643Z" fill="#3E6AFC"/>
|
||||
<path d="M15.5 11V18H14.1353L10.1 13.2141H10.0294V18H8.5V11H9.88824L13.9 15.7859H13.9824V11H15.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 518 B |
BIN
public/images/home-banner01.png
Normal file
|
After Width: | Height: | Size: 225 KiB |
4
public/images/home.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 19.8643C2 21.5933 3.38141 23 5.08159 23H18.9184C20.6175 23 22 21.5943 22 19.8643V10.0211C22 9.08935 21.598 8.21443 20.8953 7.61761L13.9771 1.73182C12.8314 0.756062 11.1698 0.756062 10.0241 1.73182L3.10579 7.61761C2.40311 8.2144 2.00111 9.08932 2.00111 10.0211L2 19.8643Z" fill="#B3B8CE"/>
|
||||
<path d="M15.5 11V18H14.1353L10.1 13.2141H10.0294V18H8.5V11H9.88824L13.9 15.7859H13.9824V11H15.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 518 B |
5
public/images/ico_alert.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#FF4757"/>
|
||||
<rect x="41" y="25" width="8" height="26" rx="4" fill="#FF4757"/>
|
||||
<circle cx="45" cy="61" r="4" fill="#FF4757"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 278 B |
3
public/images/ico_alone_check.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 9.5L7 14.5L18 5" stroke="#3E6AFC" stroke-width="2.38889" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 221 B |
11
public/images/ico_app_delete.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="36" height="36" rx="6" fill="#F5F5F5"/>
|
||||
<g clip-path="url(#clip0_2269_6765)">
|
||||
<rect x="9" y="17" width="18" height="2" rx="1" fill="#999999"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2269_6765">
|
||||
<rect x="8" y="8" width="20" height="20" rx="10" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 387 B |
3
public/images/ico_arrow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 6L14 12L8 18" stroke="black" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 163 B |
4
public/images/ico_back.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 12H19.5" stroke="#2D3436" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M11 5L4 12L11 19" stroke="#2D3436" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 293 B |
4
public/images/ico_close.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.20711 18.9879C4.81658 18.5974 4.81658 17.9642 5.20711 17.5737L17.7687 5.01211C18.1592 4.62159 18.7924 4.62159 19.1829 5.01211C19.5734 5.40263 19.5734 6.0358 19.1829 6.42632L6.62132 18.9879C6.2308 19.3784 5.59763 19.3784 5.20711 18.9879Z" fill="black"/>
|
||||
<path d="M18.7929 18.9879C19.1834 18.5974 19.1834 17.9642 18.7929 17.5737L6.23133 5.01211C5.8408 4.62159 5.20764 4.62159 4.81711 5.01211C4.42659 5.40263 4.42659 6.0358 4.81711 6.42632L17.3787 18.9879C17.7692 19.3784 18.4024 19.3784 18.7929 18.9879Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 633 B |
6
public/images/ico_date.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2.75" y="3.63867" width="14.5" height="13.6111" rx="2.80556" stroke="#111111" stroke-width="1.5"/>
|
||||
<rect x="5.55554" y="2" width="1.33333" height="4.44444" rx="0.666667" fill="#111111"/>
|
||||
<rect x="13.1111" y="2" width="1.33333" height="4.44444" rx="0.666667" fill="#111111"/>
|
||||
<line x1="2.88892" y1="8.36133" x2="17.1111" y2="8.36133" stroke="#111111" stroke-width="1.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 483 B |
10
public/images/ico_date_next.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1961_5168)">
|
||||
<path d="M8 6L14 12L8 18" stroke="black" stroke-width="2"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1961_5168">
|
||||
<rect width="22" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 309 B |
10
public/images/ico_date_prev.svg
Normal file
@@ -0,0 +1,10 @@
|
||||
<svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1961_5172)">
|
||||
<path d="M14 6L8 12L14 18" stroke="black" stroke-width="2"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1961_5172">
|
||||
<rect width="22" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 310 B |
5
public/images/ico_delete.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="0.416667" y="0.416667" width="19.1667" height="19.1667" rx="9.58333" fill="white"/>
|
||||
<rect x="0.416667" y="0.416667" width="19.1667" height="19.1667" rx="9.58333" stroke="#BEBEBE" stroke-width="0.833333"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.622 6.78854C12.7847 6.62582 13.0485 6.62582 13.2113 6.78854C13.374 6.95126 13.374 7.21508 13.2113 7.3778L10.5892 9.99984L13.2113 12.6219C13.374 12.7846 13.374 13.0484 13.2113 13.2111C13.0485 13.3739 12.7847 13.3739 12.622 13.2111L9.99996 10.5891L7.37792 13.2111C7.2152 13.3739 6.95138 13.3739 6.78866 13.2111C6.62595 13.0484 6.62595 12.7846 6.78866 12.6219L9.4107 9.99984L6.78867 7.3778C6.62595 7.21508 6.62595 6.95126 6.78867 6.78854C6.95138 6.62582 7.2152 6.62582 7.37792 6.78854L9.99996 9.41058L12.622 6.78854Z" fill="white" stroke="#999999" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 964 B |
3
public/images/ico_divTop_arrow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 19.5L16.5 13.5L10.5 19.5" stroke="black" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 178 B |
4
public/images/ico_download.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20.1867 14.2009C19.6601 14.2009 19.2295 14.6549 19.2295 15.2101V17.6114C19.2295 18.368 18.6455 18.9837 17.9278 18.9837L6.21614 18.9827C5.49845 18.9827 4.91443 18.367 4.91443 17.6104V15.2091C4.91443 14.654 4.48382 14.2 3.95722 14.2C3.43061 14.2 3 14.654 3 15.2091V17.6104C3 19.4764 4.44524 21 6.21522 21H17.9179C19.6879 21 21.1331 19.4764 21.1331 17.6104V15.2091C21.1439 14.6549 20.7133 14.2009 20.1867 14.2009Z" fill="black"/>
|
||||
<path d="M12.0588 4C11.5914 4 11.2092 4.51691 11.2092 5.14905V13.5455L10.1302 11.9948C9.80777 11.535 9.27268 11.5124 8.93267 11.9485C8.59266 12.3846 8.57595 13.1083 8.89843 13.5681L11.4465 17.2328C11.6081 17.4622 11.8287 17.6 12.0668 17.6C12.3048 17.6 12.5254 17.474 12.687 17.2328L15.2351 13.5681C15.5575 13.1083 15.5408 12.3739 15.2008 11.9485C14.8608 11.5124 14.3178 11.535 14.0033 11.9948L12.9084 13.5563V5.14797C12.9084 4.51691 12.5262 4 12.0588 4Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1010 B |
18
public/images/ico_email.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="36" height="24" viewBox="0 0 36 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1692_3422)">
|
||||
<g clip-path="url(#clip1_1692_3422)">
|
||||
<rect x="1" y="0.5" width="34" height="23.6111" rx="4" fill="#A4B9FF"/>
|
||||
<path d="M1 2.30566C2.08958 3.39525 12.3381 10.5628 17.4638 14.1918C17.8183 14.4428 18.2913 14.4348 18.6391 14.1746L34.5 2.30566" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M2.5 23L13.5 12.5" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M34 23.8057L22 11.8057" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1692_3422">
|
||||
<rect width="36" height="24" rx="4" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_1692_3422">
|
||||
<rect width="36" height="23" fill="white" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 856 B |
5
public/images/ico_error.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#FF4757"/>
|
||||
<path d="M58 32L32 58" stroke="#FF4757" stroke-width="6" stroke-linecap="round"/>
|
||||
<path d="M32 32L58 58" stroke="#FF4757" stroke-width="6" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 329 B |
20
public/images/ico_menu01.svg
Normal file
@@ -0,0 +1,20 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1123_1269)">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<circle cx="5.5" cy="15.5" r="7.5" fill="#FDE155"/>
|
||||
<circle cx="19" cy="11" r="11" fill="#FDC255"/>
|
||||
<circle cx="6" cy="5" r="5" fill="#E4FD55"/>
|
||||
<g clip-path="url(#clip1_1123_1269)">
|
||||
<circle cx="10.8636" cy="8.95455" r="3.18182" fill="white"/>
|
||||
<path d="M9.91962 4.62115C16.9483 4.90081 16.9532 14.9471 9.91962 15.2268C8.02612 15.2249 6.27724 14.2145 5.33144 12.5744C4.38498 10.9344 4.38498 8.91405 5.33144 7.27414C6.27728 5.63407 8.02612 4.62306 9.91962 4.62115ZM9.91962 7.17902C10.6473 7.17964 11.3452 7.46799 11.8604 7.98256C12.3756 8.4965 12.6651 9.19377 12.667 9.92204C12.672 10.1942 12.8938 10.4124 13.1667 10.4124C13.4388 10.4124 13.6613 10.1942 13.6663 9.92204C13.6638 8.92896 13.2679 7.9781 12.5657 7.27651C11.8635 6.57552 10.912 6.1809 9.91954 6.18028C9.6461 6.18401 9.42735 6.40649 9.42735 6.6793C9.42735 6.95211 9.64618 7.17468 9.91962 7.17902ZM14.3853 15.527C14.2504 15.6681 14.2504 15.8906 14.3853 16.0316L16.3889 18.0297C16.8444 18.474 17.5721 18.4696 18.0221 18.0197C18.4721 17.5698 18.4764 16.8421 18.0321 16.3865L16.034 14.3829C15.7482 14.1306 15.5058 14.3891 15.3094 14.6029L14.7004 13.9932C14.4941 14.2549 14.2598 14.4929 14.0007 14.7029L14.6053 15.307L14.3853 15.527Z" fill="#18A9E0"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1123_1269">
|
||||
<rect width="20" height="20" rx="10" fill="white"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_1123_1269">
|
||||
<rect width="14" height="14" fill="white" transform="matrix(-1 0 0 1 18.5 4.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
6
public/images/ico_menu02.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<path d="M9.52946 18V11.8302C9.35759 11.7851 9.1949 11.717 9.04509 11.6296L4.68933 15.9892C5.99265 17.1501 7.67747 17.8915 9.52946 18Z" fill="#FF9100"/>
|
||||
<path d="M10 2.00087H9.52942V8.12372H10C11.0377 8.12372 11.8824 8.9691 11.8824 10.0077C11.8824 10.8834 11.2803 11.6212 10.4706 11.83V17.9997C14.6635 17.755 18 14.265 18 10.0068C18 5.74954 14.4118 2 10 2V2.00087Z" fill="#F96A6A"/>
|
||||
<path d="M8.38142 10.9635C8.2169 10.6829 8.11764 10.3582 8.11764 10.0077V9.53674H2V10.0077C2 12.0472 2.76746 13.9073 4.0239 15.3228L8.37966 10.9634L8.38142 10.9635Z" fill="#FFD504"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 723 B |
8
public/images/ico_menu03.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<path d="M17.3042 9.56998C16.8692 10.2939 15.739 10.3583 15.1224 9.7991C14.8173 9.53479 14.6496 9.18082 14.651 8.80095C14.6525 8.52799 14.4135 8.30485 14.1164 8.29889C13.8193 8.29291 13.5695 8.50676 13.5586 8.7797C13.539 9.25785 13.3421 9.60386 13.0611 9.82965C12.78 10.0568 12.4139 10.1637 12.0536 10.1637C11.3338 10.1637 10.5893 9.73535 10.5494 8.7797C10.5436 8.64555 10.4804 8.52601 10.3823 8.43835C10.0671 8.14016 9.45843 8.35666 9.45698 8.7797C9.45408 10.5463 6.51688 10.6916 6.44771 8.7797C6.40848 8.13617 5.36402 8.1541 5.35385 8.79895C5.35458 9.56136 4.67037 10.181 3.83218 10.1743C2.86034 10.2035 2.19212 9.12171 2.64463 8.35128L5.21806 3.5H14.786L17.3595 8.35128C17.565 8.73911 17.544 9.19535 17.3035 9.57059L17.3042 9.56998Z" fill="#37CAFF"/>
|
||||
<path d="M16.2815 11.1705V17.5H12.3535V13.6096C12.3535 13.3334 12.1087 13.1096 11.8066 13.1096H8.22145C7.9193 13.1096 7.67452 13.3334 7.67452 13.6096V17.5H3.74725V11.1723C4.60433 11.2036 5.40184 10.841 5.89432 10.2625C6.85235 11.4566 9.04584 11.4526 10.0025 10.2718C10.9685 11.4592 13.1592 11.4499 14.1107 10.2638C14.6206 10.8669 15.4564 11.2117 16.2815 11.1705Z" fill="#909BF9"/>
|
||||
<rect x="7" y="12.5" width="6" height="5" fill="#909BF9"/>
|
||||
<rect x="6" y="13" width="3" height="2.5" fill="white"/>
|
||||
<rect x="11" y="13" width="3" height="2.5" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
8
public/images/ico_menu04.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="19" height="19" rx="9.5" fill="#F4F8FF"/>
|
||||
<path d="M17.0001 5.98442C17.0001 4.61415 15.9132 3.50199 14.5704 3.5H4.43004C3.08728 3.50199 2.00037 4.61415 2.00037 5.98442V6.24951H17.0002L17.0001 5.98442Z" fill="#00D1C6"/>
|
||||
<path d="M4.4298 15.5H14.5703C15.9131 15.4976 17 14.1489 17 12.4873V7.5H2V12.4873C2 14.1489 3.08703 15.4976 4.4298 15.5ZM11.4298 11.998C11.4298 11.7212 11.6114 11.4977 11.8351 11.4977H13.4298C13.6534 11.4977 13.8351 11.7212 13.8351 11.998V12.3267C13.838 12.4608 13.796 12.5901 13.7198 12.6844C13.6427 12.7798 13.5382 12.8306 13.4298 12.8282H11.8448C11.7364 12.8306 11.632 12.7798 11.5558 12.6844C11.4786 12.5901 11.4376 12.4608 11.4406 12.3267L11.4298 11.998Z" fill="#00D1C6"/>
|
||||
<rect x="2" y="6" width="15" height="2" fill="white"/>
|
||||
<circle cx="10" cy="11.5" r="2" fill="#F7CF05"/>
|
||||
<circle cx="13" cy="11.5" r="2" fill="#DE192C"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 966 B |
18
public/images/ico_menu05.svg
Normal file
@@ -0,0 +1,18 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<g clip-path="url(#clip0_1123_1254)">
|
||||
<path d="M1.86648 14.0318C3.64128 13.3962 4.95565 13.0094 6.72944 12.3747C7.17974 12.2136 7.63307 12.0515 8.10872 11.9629C8.66854 11.8591 9.24459 11.8609 9.81557 11.8626C11.0518 11.8662 12.9696 12.1223 13.212 12.1787C13.2212 12.1805 13.2364 12.184 13.2404 12.1849C13.9777 12.4607 18.287 13.7041 18.7139 14.3183C18.8863 14.5663 18.9502 14.8608 18.9969 15.1491C19.0689 15.5976 19.1044 16.0497 19.1034 16.5027C19.1034 16.7578 19.0892 17.0183 18.9837 17.2555C18.7667 17.7443 18.2089 18.0371 17.6643 18.2376C16.2191 18.7694 14.1258 18.9028 12.565 18.9645C9.89974 19.0702 7.17365 18.9762 4.66053 18.175C4.36946 18.0818 4.07738 17.9771 3.84108 17.7998C3.57131 17.5975 3.39484 17.3164 3.22446 17.0416C2.78938 16.3415 -0.557642 16.4853 -0.992722 15.7852C-1.15905 15.5167 1.58454 14.3371 1.76405 14.0757" fill="#0A0807"/>
|
||||
<path d="M8.30141 8.81091C8.32575 9.43937 8.26287 11.331 8.16146 11.5038C7.95659 11.8529 7.48399 12.0212 7.11584 12.2415C7.71319 12.6201 8.56713 13.1949 9.2233 13.4876C9.86527 13.7741 10.6269 14.0257 11.3429 14.108C11.7679 14.1573 12.2192 14.1197 12.5903 13.9299C12.8834 13.7804 13.1218 13.5243 13.1958 13.2298C13.284 12.8789 13.2648 12.6228 13.2414 12.1851C13.2414 12.1851 12.2648 11.9693 11.8865 11.5933C11.4413 11.1511 11.3693 9.23436 11.3693 9.23436L8.30141 8.81091Z" fill="#E3B7A1"/>
|
||||
<path d="M7.09567 6.71959C6.95672 6.56381 6.74983 6.49041 6.55714 6.52801C6.36445 6.56561 6.19204 6.71511 6.10786 6.91475C6.02064 7.12334 6.03078 7.374 6.10583 7.58796C6.18088 7.80282 6.31678 7.98455 6.47094 8.13585C6.61292 8.2755 6.77214 8.39278 6.94253 8.4823C7.07335 8.55124 7.21331 8.60584 7.32386 8.71059" fill="#EDBFA9"/>
|
||||
<path d="M12.8673 6.70434C13.0063 6.56021 13.2131 6.49217 13.4058 6.52708C13.5985 6.562 13.7709 6.69986 13.8551 6.88428C13.9423 7.07676 13.9322 7.30862 13.8571 7.50737C13.7821 7.70611 13.6462 7.87352 13.492 8.01407C13.3501 8.14298 13.1908 8.25131 13.0205 8.33456C12.8896 8.39812 12.6766 8.45542 12.5661 8.55211" fill="#EDBFA9"/>
|
||||
<path d="M12.9748 4.72591C13.1888 5.30423 13.2354 5.93179 13.1655 6.53787C13.1239 6.90223 13.0103 7.25674 12.8886 7.60678C12.6766 8.21822 12.7385 8.82967 12.3338 9.35965C11.9292 9.88963 11.0387 10.3363 10.3359 10.4894C10.0438 10.553 9.7335 10.5646 9.44447 10.493C9.1605 10.4223 8.90898 10.2764 8.66355 10.1322C8.37045 9.96035 7.97189 9.78489 7.75485 9.54049C7.49117 9.24237 7.37048 8.86727 7.26805 8.50022C6.92729 7.28002 6.86441 6.43402 6.7995 5.17801C6.7995 5.17801 6.94352 3.3186 9.54386 3.3186C12.1442 3.3186 12.8085 4.27561 12.9748 4.72681V4.72591Z" fill="#EDBFA9"/>
|
||||
<path d="M6.81455 6.55657C6.87338 6.57269 6.93118 6.58791 6.99 6.60402C7.04578 6.52972 7.11576 6.46347 7.18473 6.39722C7.276 6.31038 7.36728 6.22355 7.45855 6.13671C7.55997 6.04092 7.66037 5.94423 7.76179 5.84844C8.36421 5.27549 8.97069 4.70612 9.5802 4.13854C9.54369 4.60138 9.19178 4.99528 8.8145 5.31757C9.79825 5.22715 10.6999 4.62376 11.0629 3.81178C11.0629 3.81178 11.352 4.62018 10.8875 5.09823C10.8875 5.09823 11.9331 4.8413 12.0487 4.44829C12.0487 4.44829 12.7617 5.63448 12.8438 6.61118C12.8438 6.61118 13.3306 6.48316 13.5274 6.57627C13.5466 6.58522 13.5669 6.59596 13.5862 6.6085C13.5862 6.6085 13.9635 5.02841 13.8083 4.49037C13.6531 3.95233 12.2992 2.65424 11.2353 2.57725C11.2353 2.57725 11.0903 2.26123 9.92908 2.21826C8.76785 2.17529 8.1492 2.35523 7.28817 3.0383C6.42714 3.72136 6.13708 4.61839 6.13708 4.71239C6.13708 4.80639 6.81455 6.55568 6.81455 6.55568V6.55657Z" fill="#261F1B"/>
|
||||
<path d="M7.91293 2.62036C7.73443 2.65349 7.58129 2.75106 7.43424 2.84596C7.16244 3.02143 6.88354 3.20316 6.70911 3.4574C7.03263 3.33386 7.38962 3.28015 7.74153 3.30163" fill="#261F1B"/>
|
||||
<path d="M11.7233 2.73483C11.5478 2.41792 11.1218 2.19321 10.6604 2.08937C10.199 1.98552 9.70302 1.9882 9.22028 2.01775C9.46875 2.04281 9.71316 2.09205 9.93425 2.17531C10.0347 2.21291 10.132 2.25856 10.2071 2.31854C10.2517 2.35525 10.2882 2.39733 10.3338 2.43313C10.3916 2.48058 10.4636 2.51818 10.5174 2.56832C10.635 2.67753 10.6452 2.82346 10.6513 2.96043" fill="#261F1B"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1123_1254">
|
||||
<rect x="2" y="2" width="16" height="16" rx="8" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
15
public/images/ico_menu06.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<g clip-path="url(#clip0_1123_1221)">
|
||||
<path d="M12.7524 5.61519L13.7959 2.84892C13.9373 2.47602 13.6343 2.08594 13.2027 2.08594H6.7858C6.35425 2.08594 6.05116 2.4747 6.19261 2.84892L7.23611 5.61519C4.74786 6.66643 3.0058 9.09685 3.0058 11.9279C3.0058 15.7216 6.13488 17.9524 9.99281 17.9524C13.8508 17.9524 16.9798 15.723 16.9798 11.9279C16.9798 9.09685 15.2378 6.66643 12.7495 5.61519H12.7524Z" fill="#27C590"/>
|
||||
<path d="M9.06768 6.20894H8.41964C8.14109 6.20894 7.91449 6.00134 7.91449 5.74614C7.91449 5.49093 8.14109 5.28333 8.41964 5.28333H9.06768C9.34624 5.28333 9.57284 5.49093 9.57284 5.74614C9.57284 6.00134 9.34624 6.20894 9.06768 6.20894Z" fill="#DCEFE8"/>
|
||||
<path d="M11.504 6.20894H10.8559C10.5774 6.20894 10.3508 6.00134 10.3508 5.74614C10.3508 5.49093 10.5774 5.28333 10.8559 5.28333H11.504C11.7825 5.28333 12.0091 5.49093 12.0091 5.74614C12.0091 6.00134 11.7825 6.20894 11.504 6.20894Z" fill="#DCEFE8"/>
|
||||
<path d="M9.99569 16.2056C12.2372 16.2056 14.0543 14.5409 14.0543 12.4873C14.0543 10.4337 12.2372 8.76892 9.99569 8.76892C7.75421 8.76892 5.93713 10.4337 5.93713 12.4873C5.93713 14.5409 7.75421 16.2056 9.99569 16.2056Z" fill="white"/>
|
||||
<path d="M11.426 12.7239C11.3683 12.5851 11.2745 12.4608 11.1446 12.3563C11.0291 12.2638 10.8804 12.1831 10.7058 12.1196C10.5485 12.0614 10.3551 12.0099 10.1285 11.9662C9.99713 11.9411 9.88744 11.9147 9.80518 11.8882C9.72002 11.8604 9.6825 11.838 9.66951 11.83C9.66373 11.8261 9.6594 11.8234 9.65796 11.8221C9.65651 11.8155 9.65362 11.8009 9.65362 11.7824V11.7388C9.65362 11.7388 9.65363 11.7282 9.6594 11.7203C9.66806 11.7044 9.6825 11.6912 9.70559 11.6766C9.72435 11.6647 9.75899 11.6462 9.81816 11.6304C9.87301 11.6158 9.94084 11.6079 10.0173 11.6079C10.1299 11.6079 10.2295 11.6158 10.3147 11.633C10.394 11.6489 10.4749 11.6753 10.5557 11.7124C10.6841 11.7679 10.8184 11.7785 10.9454 11.7441C11.0753 11.7084 11.1864 11.6238 11.2557 11.5087C11.3336 11.3871 11.3538 11.2522 11.312 11.1186C11.2716 10.989 11.1778 10.8819 11.0507 10.8211C10.8761 10.7312 10.6712 10.669 10.4402 10.6347C10.4287 10.3768 10.1963 10.1705 9.91198 10.1705C9.62765 10.1705 9.38373 10.3874 9.38373 10.6545V10.6915C9.21342 10.7444 9.06476 10.8185 8.94063 10.9123C8.80352 11.0168 8.69672 11.1411 8.62455 11.2852C8.55239 11.4281 8.5163 11.5814 8.5163 11.7441V11.7957C8.5163 11.9715 8.54806 12.1276 8.61012 12.2598C8.67507 12.3986 8.77466 12.519 8.90744 12.6168C9.02579 12.7041 9.17157 12.7768 9.34332 12.8337C9.49342 12.8826 9.6695 12.9262 9.86579 12.9633C9.99713 12.9897 10.1054 13.0162 10.1905 13.0413C10.2699 13.0664 10.3132 13.0889 10.3334 13.1034C10.3507 13.1153 10.3507 13.118 10.3507 13.118C10.3536 13.1246 10.3608 13.1444 10.3608 13.1828V13.2304C10.3608 13.2555 10.3565 13.278 10.3103 13.311C10.2844 13.3295 10.2006 13.3745 9.98847 13.3745C9.8629 13.3745 9.74311 13.36 9.63486 13.3295C9.52228 13.2978 9.41837 13.2568 9.33033 13.2092C9.1961 13.1299 9.04456 13.1061 8.90167 13.1431C8.77033 13.1761 8.66352 13.2515 8.5827 13.3652C8.50332 13.4776 8.47301 13.5993 8.49177 13.7262C8.51342 13.873 8.60724 13.9986 8.74147 14.0687C8.89734 14.1626 9.08641 14.2393 9.3029 14.2948C9.32888 14.3014 9.3563 14.3081 9.38373 14.3133V14.3213C9.38373 14.5884 9.62043 14.8052 9.91198 14.8052C10.2035 14.8052 10.4316 14.5963 10.4402 14.3358C10.6899 14.2895 10.9021 14.2023 11.0695 14.078C11.3582 13.8638 11.5039 13.5702 11.5039 13.2039V13.1444C11.5039 12.9937 11.478 12.8522 11.426 12.7266V12.7239Z" fill="#FFD255"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1123_1221">
|
||||
<rect width="14" height="16" fill="white" transform="translate(3 2)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
8
public/images/ico_menu07.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<rect x="2" y="4" width="16" height="12" rx="4" fill="#5793EB"/>
|
||||
<rect x="4" y="6" width="12" height="8" rx="2" fill="white"/>
|
||||
<rect x="6" y="9" width="2" height="5" fill="#EE6E6E"/>
|
||||
<rect x="9" y="8" width="2" height="6" fill="#40D925"/>
|
||||
<rect x="12" y="9" width="2" height="5" fill="#5793EB"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 453 B |
15
public/images/ico_menu08.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1123_1290)">
|
||||
<rect width="20" height="20" rx="10" fill="#F4F8FF"/>
|
||||
<path d="M14.5454 18C14.5454 18 13.6013 16.9467 13.0649 15.8636C13.8289 14.9788 14.281 13.8812 14.281 12.6923C14.281 9.76108 11.5319 7.38464 8.14052 7.38464C4.74916 7.38464 2 9.76085 2 12.6923C2 15.6238 4.74916 18 8.14052 18C9.33574 18 10.451 17.7044 11.3946 17.1939C11.8971 17.4537 12.9531 17.8891 14.5452 18H14.5454Z" fill="#0CCB88"/>
|
||||
<circle cx="5" cy="13" r="1" fill="white"/>
|
||||
<circle cx="8" cy="13" r="1" fill="white"/>
|
||||
<circle cx="11" cy="13" r="1" fill="white"/>
|
||||
<path d="M7.99999 11C7.99999 11 8.80042 10.107 9.25519 9.1887C8.6075 8.43857 8.22414 7.50799 8.22414 6.5C8.22414 4.01481 10.555 2 13.4302 2C16.3055 2 18.6364 4.01462 18.6364 6.5C18.6364 8.98538 16.3055 11 13.4302 11C12.4169 11 11.4714 10.7494 10.6713 10.3165C10.2453 10.5369 9.35003 10.906 8.00018 11H7.99999Z" fill="#FF9A15"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1123_1290">
|
||||
<rect width="20" height="20" rx="10" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
7
public/images/ico_menu_01.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M32.4952 12.4059C29.7522 12.4059 27.1875 13.1736 24.9986 14.5046C29.2009 17.0617 32.0097 21.7036 32.0097 27.0083C32.0097 32.313 29.2009 36.9549 24.9986 39.512C27.1848 40.843 29.7522 41.6106 32.4952 41.6106C40.5046 41.6106 47 35.0716 47 27.0083C47 18.945 40.5046 12.4059 32.4952 12.4059Z" fill="#97F1B8"/>
|
||||
<path d="M22.4067 41.5601C30.4445 41.5601 37.004 35.0443 37.0579 27.0067C37.1118 18.9692 30.6395 12.4534 22.6018 12.4534C14.564 12.4534 8.00442 18.9692 7.95056 27.0067C7.89669 35.0443 14.3689 41.5601 22.4067 41.5601Z" fill="#31DF71"/>
|
||||
<path d="M18.1516 29.2947H16.1191C15.3922 29.2947 14.8025 28.701 14.8025 27.9693C14.8025 27.2375 15.3922 26.6438 16.1191 26.6438H18.1516C18.8785 26.6438 19.4683 27.2375 19.4683 27.9693C19.4683 28.701 18.8785 29.2947 18.1516 29.2947Z" fill="white"/>
|
||||
<path d="M28.5749 29.2947H26.5424C25.8155 29.2947 25.2258 28.701 25.2258 27.9693C25.2258 27.2375 25.8155 26.6438 26.5424 26.6438H28.5749C29.3018 26.6438 29.8916 27.2375 29.8916 27.9693C29.8916 28.701 29.3018 29.2947 28.5749 29.2947Z" fill="white"/>
|
||||
<path d="M24.7485 32.6775C24.1807 32.6775 23.676 32.3102 23.4977 31.769L22.3457 28.262L21.1936 31.769C21.0126 32.3157 20.5133 32.683 19.9318 32.6775C19.3613 32.6719 18.8566 32.2964 18.6865 31.7469L16.4153 24.4347C16.1987 23.736 16.5854 22.9932 17.2794 22.775C17.9734 22.5541 18.7112 22.9463 18.9279 23.6449L19.9785 27.0249L21.0949 23.6256C21.2731 23.0816 21.7779 22.7171 22.3457 22.7171C22.9134 22.7171 23.4182 23.0843 23.5964 23.6256L24.7128 27.0249L25.7634 23.6449C25.9801 22.9463 26.7179 22.5569 27.4119 22.775C28.1059 22.9932 28.4926 23.736 28.276 24.4347L26.0048 31.7469C25.8347 32.2964 25.33 32.6719 24.7595 32.6775H24.7485Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
7
public/images/ico_menu_02.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="10" y="13" width="34" height="25" rx="4" fill="#E0BFFA"/>
|
||||
<rect x="9" y="36" width="36" height="5" rx="2.5" fill="#A756E5"/>
|
||||
<rect x="18" y="23" width="4" height="10" rx="2" fill="white"/>
|
||||
<rect x="25" y="26" width="4" height="7" rx="2" fill="white"/>
|
||||
<rect x="32" y="21" width="4" height="12" rx="2" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 428 B |
17
public/images/ico_menu_03.svg
Normal file
@@ -0,0 +1,17 @@
|
||||
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1032_3096)">
|
||||
<path d="M10 17.5V42.5H44V17.5H10Z" fill="#A4B9FF"/>
|
||||
<path d="M41 14.5H13C11.3431 14.5 10 15.8431 10 17.5C10 19.1569 11.3431 20.5 13 20.5H41C42.6569 20.5 44 19.1569 44 17.5C44 15.8431 42.6569 14.5 41 14.5Z" fill="#3B31FF"/>
|
||||
<path d="M19.1706 16.5279V14.0933C19.1706 13.2133 18.4572 12.5 17.5773 12.5C16.6973 12.5 15.984 13.2133 15.984 14.0933V16.5279C15.984 17.4079 16.6973 18.1212 17.5773 18.1212C18.4572 18.1212 19.1706 17.4079 19.1706 16.5279Z" fill="#A4B9FF"/>
|
||||
<path d="M25.6588 16.5279V14.0933C25.6588 13.2133 24.9455 12.5 24.0656 12.5C23.1856 12.5 22.4723 13.2133 22.4723 14.0933V16.5279C22.4723 17.4079 23.1856 18.1212 24.0656 18.1212C24.9455 18.1212 25.6588 17.4079 25.6588 16.5279Z" fill="#A4B9FF"/>
|
||||
<path d="M32.1471 16.5279V14.0933C32.1471 13.2133 31.4338 12.5 30.5538 12.5C29.6739 12.5 28.9606 13.2133 28.9606 14.0933V16.5279C28.9606 17.4079 29.6739 18.1212 30.5538 18.1212C31.4338 18.1212 32.1471 17.4079 32.1471 16.5279Z" fill="#A4B9FF"/>
|
||||
<path d="M38.6357 16.5279V14.0933C38.6357 13.2133 37.9223 12.5 37.0424 12.5C36.1624 12.5 35.4491 13.2133 35.4491 14.0933V16.5279C35.4491 17.4079 36.1624 18.1212 37.0424 18.1212C37.9223 18.1212 38.6357 17.4079 38.6357 16.5279Z" fill="#A4B9FF"/>
|
||||
<path d="M34 25.6357V35.4571H31.409V28.0232H31.3547L29.1842 29.3255V27.1143L31.6125 25.6357H34Z" fill="white"/>
|
||||
<path d="M23.9611 35.5928C21.6618 35.5928 20.0203 34.3108 20 32.4998H22.6046C22.6249 33.0832 23.1879 33.5037 23.9747 33.5037C24.7547 33.5037 25.2906 33.0628 25.2906 32.432C25.2906 31.808 24.6733 31.3671 23.7712 31.3603H22.7809V29.5697H23.7712C24.5919 29.5697 25.1617 29.1288 25.1549 28.5116C25.1617 27.9147 24.6801 27.4941 23.9883 27.4941C23.2354 27.4941 22.686 27.9282 22.6724 28.5387H20.2035C20.2103 26.7548 21.7839 25.5 23.9883 25.5C26.1452 25.5 27.6578 26.7073 27.651 28.3488C27.6578 29.4476 26.8167 30.2005 25.6568 30.3293V30.4107C27.2169 30.5871 28.024 31.4417 28.0173 32.6491C28.024 34.3719 26.3419 35.5928 23.9611 35.5928Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1032_3096">
|
||||
<rect x="10" y="11.5" width="34" height="31" rx="4" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
11
public/images/ico_menu_plus.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2269_6819)">
|
||||
<rect x="1" y="9" width="18" height="2" rx="1" fill="#999999"/>
|
||||
<rect x="11" y="1" width="18" height="2" rx="1" transform="rotate(90 11 1)" fill="#999999"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2269_6819">
|
||||
<rect width="20" height="20" rx="10" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 414 B |
12
public/images/ico_pie.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1032_2985)">
|
||||
<path d="M15.4543 1.69421L11.3614 9.15485L19.9486 10.1555C19.9486 10.1555 20.8068 4.76386 15.4543 1.69421Z" fill="#79EF58"/>
|
||||
<path d="M17.1135 16.8145C18.826 15.3888 19.8535 12.4911 19.8535 11.1098L11.3633 10.1942" fill="#F9D45B"/>
|
||||
<path d="M9.84893 10.0011L14.545 1.21138C13.057 0.388434 11.3388 -0.0558816 9.52165 0.00593622C4.08544 0.189458 -0.174858 4.81227 0.00590457 10.3334C0.186668 15.8526 4.73999 20.1779 10.1781 19.9943C12.5375 19.9151 14.6743 18.9995 16.3221 17.5371" fill="#FF969D"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1032_2985">
|
||||
<rect width="20" height="20" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 745 B |
4
public/images/ico_set.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 8.66667C10.1591 8.66667 8.66667 10.1591 8.66667 12C8.66667 13.8409 10.1591 15.3333 12 15.3333C13.8409 15.3333 15.3333 13.8409 15.3333 12C15.3333 10.1591 13.8409 8.66667 12 8.66667ZM10.3333 12C10.3333 11.0795 11.0795 10.3333 12 10.3333C12.9205 10.3333 13.6667 11.0795 13.6667 12C13.6667 12.9205 12.9205 13.6667 12 13.6667C11.0795 13.6667 10.3333 12.9205 10.3333 12Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.6598 2C10.4157 2 9.36085 2.91483 9.1849 4.14645L9.07236 4.93422L8.4349 4.45612C7.4396 3.70964 6.04686 3.80862 5.16713 4.68835L4.68598 5.1695C3.80625 6.04923 3.70728 7.44197 4.45375 8.43727L4.93048 9.0729L4.14645 9.1849C2.91482 9.36085 2 10.4157 2 11.6598V12.3402C2 13.5843 2.91483 14.6391 4.14645 14.8151L4.93214 14.9273L4.45562 15.5627C3.70915 16.558 3.80813 17.9507 4.68786 18.8305L5.169 19.3116C6.04873 20.1913 7.44147 20.2903 8.43677 19.5438L9.07254 19.067L9.1849 19.8536C9.36085 21.0852 10.4157 22 11.6598 22H12.3402C13.5843 22 14.6391 21.0852 14.8151 19.8536L14.9272 19.069L15.5604 19.5439C16.5557 20.2903 17.9484 20.1914 18.8281 19.3116L19.3093 18.8305C20.189 17.9508 20.288 16.558 19.5415 15.5627L19.0652 14.9277L19.8536 14.8151C21.0852 14.6391 22 13.5843 22 12.3402V11.6598C22 10.4157 21.0852 9.36085 19.8536 9.1849L19.0669 9.07253L19.5434 8.43724C20.2898 7.44194 20.1909 6.0492 19.3111 5.16947L18.83 4.68832C17.9503 3.8086 16.5575 3.70962 15.5622 4.45609L14.9274 4.93224L14.8151 4.14645C14.6391 2.91482 13.5843 2 12.3402 2H11.6598ZM10.8348 4.38215C10.8935 3.97161 11.2451 3.66667 11.6598 3.66667H12.3402C12.7549 3.66667 13.1065 3.97161 13.1652 4.38215L13.3708 5.82123C13.4148 6.12962 13.6272 6.38768 13.9214 6.49025C14.1321 6.56372 14.3373 6.64897 14.5363 6.74523C14.8169 6.88095 15.1498 6.84873 15.3992 6.66171L16.5622 5.78943C16.894 5.5406 17.3582 5.57359 17.6515 5.86684L18.1326 6.34798C18.4259 6.64123 18.4589 7.10547 18.21 7.43724L17.3379 8.60005C17.1509 8.84945 17.1187 9.18239 17.2545 9.46301C17.3508 9.66222 17.4362 9.86769 17.5098 10.0786C17.6123 10.3728 17.8704 10.5852 18.1788 10.6292L19.6178 10.8348C20.0284 10.8935 20.3333 11.2451 20.3333 11.6598V12.3402C20.3333 12.7549 20.0284 13.1065 19.6179 13.1652L18.1788 13.3708C17.8704 13.4148 17.6123 13.6272 17.5098 13.9214C17.436 14.1328 17.3505 14.3387 17.2538 14.5383C17.1179 14.819 17.1501 15.152 17.3372 15.4014L18.2082 16.5627C18.457 16.8945 18.424 17.3587 18.1308 17.652L17.6496 18.1331C17.3564 18.4264 16.8921 18.4594 16.5604 18.2105L15.3981 17.3388C15.1488 17.1518 14.8159 17.1196 14.5354 17.2552C14.3367 17.3513 14.1317 17.4364 13.9214 17.5098C13.6272 17.6123 13.4148 17.8704 13.3708 18.1788L13.1652 19.6178C13.1065 20.0284 12.7549 20.3333 12.3402 20.3333H11.6598C11.2451 20.3333 10.8935 20.0284 10.8348 19.6178L10.6292 18.1788C10.5852 17.8704 10.3728 17.6123 10.0786 17.5098C9.86772 17.4362 9.66228 17.3509 9.46309 17.2545C9.18247 17.1187 8.84954 17.1509 8.60015 17.338L7.43677 18.2105C7.105 18.4593 6.64076 18.4263 6.34751 18.1331L5.86637 17.652C5.57312 17.3587 5.54013 16.8945 5.78896 16.5627L6.66166 15.3991C6.84868 15.1497 6.8809 14.8168 6.74519 14.5362C6.64895 14.3373 6.56371 14.132 6.49025 13.9214C6.38768 13.6272 6.12962 13.4148 5.82123 13.3708L4.38215 13.1652C3.97161 13.1065 3.66667 12.7549 3.66667 12.3402V11.6598C3.66667 11.2451 3.97161 10.8935 4.38215 10.8348L5.82123 10.6292C6.12962 10.5852 6.38768 10.3728 6.49025 10.0786C6.56355 9.86842 6.64857 9.66363 6.74455 9.46506C6.88017 9.18449 6.84791 8.8517 6.66094 8.6024L5.78709 7.43727C5.53826 7.1055 5.57125 6.64125 5.8645 6.34801L6.34564 5.86687C6.63889 5.57362 7.10313 5.54063 7.4349 5.78945L8.59904 6.66256C8.84848 6.84964 9.18148 6.88182 9.46212 6.74598C9.66161 6.64941 9.86738 6.56391 10.0786 6.49025C10.3728 6.38768 10.5852 6.12962 10.6292 5.82123L10.8348 4.38215Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
8
public/images/ico_setting.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2 5.80901H22" stroke="#333333" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M2 11.859H22" stroke="#333333" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M2 17.91H22" stroke="#333333" stroke-width="2" stroke-linecap="round"/>
|
||||
<path d="M18 7.75C19.1046 7.75 20 6.85457 20 5.75C20 4.64543 19.1046 3.75 18 3.75C16.8954 3.75 16 4.64543 16 5.75C16 6.85457 16.8954 7.75 18 7.75Z" fill="white" stroke="#333333" stroke-width="2"/>
|
||||
<path d="M7 13.75C8.10457 13.75 9 12.8546 9 11.75C9 10.6454 8.10457 9.75 7 9.75C5.89543 9.75 5 10.6454 5 11.75C5 12.8546 5.89543 13.75 7 13.75Z" fill="white" stroke="#333333" stroke-width="2"/>
|
||||
<path d="M18 19.75C19.1046 19.75 20 18.8546 20 17.75C20 16.6454 19.1046 15.75 18 15.75C16.8954 15.75 16 16.6454 16 17.75C16 18.8546 16.8954 19.75 18 19.75Z" fill="white" stroke="#333333" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 946 B |
4
public/images/ico_sucess.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle opacity="0.1" cx="45" cy="45" r="45" fill="#00B894"/>
|
||||
<path d="M28.25 45.5742L39.6986 57.0742L63.25 34.0742" stroke="#00B894" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 303 B |
7
public/images/ico_trash.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6.12891 7H17.8711C18.4479 7 18.9051 7.4868 18.8691 8.0625L18.1191 20.0625C18.0861 20.5895 17.6491 21 17.1211 21H6.87891C6.35088 21 5.91386 20.5895 5.88086 20.0625L5.13086 8.0625C5.09488 7.4868 5.55209 7 6.12891 7Z" stroke="#2D3436" stroke-width="2"/>
|
||||
<path d="M9.72361 1.55279C9.893 1.214 10.2393 1 10.618 1H13.382C13.7607 1 14.107 1.214 14.2764 1.55279L15 3H9L9.72361 1.55279Z" fill="#2D3436"/>
|
||||
<rect x="15" y="9" width="10" height="2" rx="1" transform="rotate(90 15 9)" fill="#2D3436"/>
|
||||
<rect x="11" y="9" width="10" height="2" rx="1" transform="rotate(90 11 9)" fill="#2D3436"/>
|
||||
<rect x="3" y="4" width="18" height="3" rx="1" stroke="#2D3436" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 778 B |
4
public/images/ico_won.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M20 10.0004C20 15.5234 15.5234 20 10.0004 20C4.47745 20 0 15.5234 0 10.0004C0 4.47745 4.47665 0 10.0004 0C15.5241 0 20 4.47745 20 10.0004Z" fill="#FFAE00"/>
|
||||
<path d="M5.21479 9.91123C5.21479 9.7663 5.25699 9.64129 5.3422 9.53379C5.4274 9.42709 5.5763 9.37374 5.7897 9.37374H6.14802L5.84624 7.73262C5.79607 7.44358 5.82235 7.20469 5.92666 7.01598C6.03018 6.82726 6.19819 6.71419 6.4315 6.67676C6.67038 6.63934 6.879 6.67039 7.05816 6.77072C7.23733 6.87105 7.35199 7.06614 7.40215 7.35519L7.72305 9.37374H8.69451L9.1659 7.3743C9.19695 7.22938 9.24951 7.11153 9.32197 7.02075C9.39443 6.92998 9.47565 6.85752 9.56722 6.80417C9.65879 6.75082 9.75435 6.71339 9.85468 6.6911C9.95501 6.6688 10.0498 6.65765 10.1374 6.65765C10.2249 6.65765 10.3197 6.6688 10.42 6.6911C10.5204 6.71339 10.6167 6.75082 10.7075 6.80417C10.7991 6.85752 10.8803 6.92998 10.9527 7.02075C11.0252 7.11233 11.077 7.23017 11.108 7.3743L11.5706 9.37374H12.5509L12.8718 7.35519C12.9219 7.06614 13.0366 6.87105 13.2157 6.77072C13.3949 6.67039 13.6043 6.63854 13.8432 6.67676C14.0694 6.71419 14.235 6.82806 14.3385 7.01598C14.442 7.20469 14.4691 7.44039 14.4189 7.72307L14.1076 9.37374H14.4755C14.6889 9.37374 14.8386 9.42709 14.923 9.53379C15.0082 9.64049 15.0504 9.7663 15.0504 9.91123C15.0504 10.0561 15.0066 10.1859 14.9182 10.3022C14.8298 10.4185 14.6825 10.4766 14.4747 10.4766H13.9085L13.3901 13.3057C13.34 13.5884 13.2221 13.8122 13.0366 13.9754C12.8511 14.1386 12.6512 14.2302 12.4378 14.2485C12.3247 14.2613 12.2101 14.2565 12.0938 14.2342C11.9775 14.2119 11.8677 14.1713 11.7633 14.1116C11.6598 14.0518 11.5683 13.9698 11.4894 13.8663C11.4106 13.7628 11.3525 13.6322 11.315 13.4746L10.6358 10.4758H9.6357L8.95648 13.4746C8.91906 13.6314 8.86013 13.762 8.7821 13.8663C8.70326 13.9698 8.61249 14.0518 8.50897 14.1116C8.40546 14.1713 8.29478 14.2119 8.17852 14.2342C8.06226 14.2557 7.9476 14.2605 7.83453 14.2485C7.62033 14.2294 7.42126 14.1386 7.23573 13.9754C7.0502 13.8122 6.93235 13.5884 6.88219 13.3057L6.35426 10.4766H5.78811C5.58028 10.4766 5.43297 10.4185 5.34458 10.3022C5.2562 10.1859 5.2124 10.0554 5.2124 9.91123H5.21479ZM8.1196 11.8724L8.4405 10.4766H7.89345L8.1196 11.8724ZM9.88334 9.37374H10.3834L10.1381 8.26055L9.88334 9.37374ZM12.1559 11.8637L12.3725 10.4774H11.8255L12.1559 11.8637Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
23
public/images/icon_ing01.svg
Normal file
@@ -0,0 +1,23 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 40C0 17.9086 17.9086 0 40 0C62.0914 0 80 17.9086 80 40C80 62.0914 62.0914 80 40 80C17.9086 80 0 62.0914 0 40Z" fill="white"/>
|
||||
<rect x="41" y="19" width="26" height="42" rx="4" fill="#95A8FC"/>
|
||||
<rect x="43" y="21" width="22" height="38" rx="3" fill="white"/>
|
||||
<circle cx="54.5" cy="39.5" r="8.5" fill="#7B93FF"/>
|
||||
<path d="M50 39.6667L52.1956 42.1966C52.5735 42.632 53.2404 42.6586 53.6517 42.2545L59 37" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
||||
<g filter="url(#filter0_d_1409_2377)">
|
||||
<rect x="13" y="27.6953" width="34" height="23.6111" rx="3.77778" fill="#FFC273"/>
|
||||
</g>
|
||||
<rect x="13" y="33.3613" width="34" height="3.77778" fill="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1409_2377" x="13" y="27.6953" width="38" height="27.6113" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1409_2377"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1409_2377" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
22
public/images/icon_ing02.svg
Normal file
@@ -0,0 +1,22 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="white"/>
|
||||
<rect x="15.5" y="27.5" width="47" height="24" rx="3.5" fill="white" stroke="#3E6AFC"/>
|
||||
<rect x="46" y="33" width="1" height="13" fill="#3E6AFC"/>
|
||||
<path d="M25.6348 44H24.1172V35.6055H24.0625L21.6973 37.1504V35.7148L24.1582 34.1016H25.6348V44ZM28.1504 42.9062L31.582 39.4473C31.9967 39.0098 32.3135 38.6589 32.5322 38.3945C32.751 38.1302 32.9173 37.8727 33.0312 37.6221C33.1497 37.3669 33.209 37.1003 33.209 36.8223C33.209 36.5033 33.1292 36.223 32.9697 35.9814C32.8102 35.7399 32.5915 35.5531 32.3135 35.4209C32.0355 35.2887 31.7233 35.2227 31.377 35.2227C31.0169 35.2227 30.7002 35.2956 30.4268 35.4414C30.1533 35.5872 29.9414 35.7923 29.791 36.0566C29.6452 36.321 29.5723 36.6263 29.5723 36.9727H28.1504C28.1458 36.3802 28.2826 35.8561 28.5605 35.4004C28.8385 34.9447 29.2259 34.5915 29.7227 34.3408C30.2194 34.0902 30.7799 33.9648 31.4043 33.9648C32.0332 33.9648 32.5915 34.0879 33.0791 34.334C33.5713 34.5755 33.9541 34.9105 34.2275 35.3389C34.501 35.7673 34.64 36.248 34.6445 36.7812C34.64 37.1595 34.5671 37.5241 34.4258 37.875C34.2845 38.2214 34.043 38.6087 33.7012 39.0371C33.3594 39.4609 32.8763 39.9805 32.252 40.5957L30.2422 42.6328V42.7148H34.8086V44H28.1504V42.9062ZM39.9902 44.1367C39.3158 44.1367 38.7096 44.0228 38.1719 43.7949C37.6387 43.5671 37.2171 43.248 36.9072 42.8379C36.6019 42.4232 36.4401 41.9492 36.4219 41.416H37.9531C37.9714 41.7031 38.0693 41.9538 38.2471 42.168C38.4294 42.3822 38.6709 42.5485 38.9717 42.667C39.2725 42.7809 39.6074 42.8379 39.9766 42.8379C40.3685 42.8379 40.7217 42.7695 41.0361 42.6328C41.3506 42.4961 41.5967 42.307 41.7744 42.0654C41.9521 41.8193 42.041 41.5391 42.041 41.2246C42.041 40.901 41.9521 40.6117 41.7744 40.3564C41.5967 40.1012 41.3392 39.903 41.002 39.7617C40.6693 39.6159 40.2728 39.543 39.8125 39.543H38.9648V38.3125H39.8125C40.1816 38.3125 40.512 38.2464 40.8037 38.1143C41.0954 37.9821 41.321 37.7975 41.4805 37.5605C41.6445 37.3236 41.7266 37.0501 41.7266 36.7402C41.7266 36.4395 41.6559 36.1751 41.5146 35.9473C41.3734 35.7194 41.1729 35.5417 40.9131 35.4141C40.6533 35.2865 40.3503 35.2227 40.0039 35.2227C39.6667 35.2227 39.3545 35.2819 39.0674 35.4004C38.7803 35.5189 38.5479 35.6875 38.3701 35.9062C38.1969 36.125 38.1035 36.3802 38.0898 36.6719H36.6406C36.6543 36.1478 36.8115 35.6807 37.1123 35.2705C37.4176 34.8558 37.8255 34.5345 38.3359 34.3066C38.8464 34.0788 39.4069 33.9648 40.0176 33.9648C40.6465 33.9648 41.2002 34.0856 41.6787 34.3271C42.1618 34.5687 42.5332 34.8968 42.793 35.3115C43.0527 35.7217 43.1803 36.1706 43.1758 36.6582C43.1803 37.2142 43.0231 37.6882 42.7041 38.0801C42.3896 38.4674 41.9635 38.7272 41.4258 38.8594V38.9277C42.0957 39.0234 42.6175 39.2809 42.9912 39.7002C43.3695 40.1195 43.5586 40.6458 43.5586 41.2793C43.5586 41.8216 43.4036 42.3115 43.0938 42.749C42.7839 43.182 42.3577 43.5215 41.8154 43.7676C41.2731 44.0137 40.6647 44.1367 39.9902 44.1367Z" fill="black"/>
|
||||
<g filter="url(#filter0_d_1409_2647)">
|
||||
<circle cx="57.5" cy="49.5" r="10.5" fill="#54DD86"/>
|
||||
</g>
|
||||
<path d="M51.9412 49.7062L54.6534 52.8314C55.1202 53.3693 55.944 53.4021 56.4521 52.9029L63.0588 46.4121" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1409_2647" x="47" y="39" width="25.9412" height="25.9412" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.47059" dy="2.47059"/>
|
||||
<feGaussianBlur stdDeviation="1.23529"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1409_2647"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1409_2647" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
30
public/images/icon_ing03.svg
Normal file
@@ -0,0 +1,30 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="white"/>
|
||||
<path d="M41 23C41 20.7909 42.7909 19 45 19H63C65.2091 19 67 20.7909 67 23V57C67 59.2091 65.2091 61 63 61H45C42.7909 61 41 59.2091 41 57V23Z" fill="#95A8FC"/>
|
||||
<rect x="43" y="21" width="22" height="38" rx="3" fill="white"/>
|
||||
<circle cx="54.5" cy="39.5" r="8.5" fill="#7B93FF"/>
|
||||
<path d="M50 39.6667L52.1956 42.1966C52.5735 42.632 53.2404 42.6586 53.6517 42.2545L59 37" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
||||
<g filter="url(#filter0_d_1409_2656)">
|
||||
<g clip-path="url(#clip0_1409_2656)">
|
||||
<rect x="14" y="28" width="34" height="23.6111" rx="4" fill="#B69BFF"/>
|
||||
<path d="M14 29.8047C15.0896 30.8943 25.3381 38.0619 30.4638 41.6908C30.8183 41.9418 31.2913 41.9338 31.6391 41.6736L47.5 29.8047" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M15.5 50.5L26.5 40" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M47 51.3047L35 39.3047" stroke="white" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1409_2656" x="14" y="28" width="38" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1409_2656"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1409_2656" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_1409_2656">
|
||||
<rect x="14" y="28" width="34" height="23.6111" rx="4" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
37
public/images/icon_ing04.svg
Normal file
@@ -0,0 +1,37 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="white"/>
|
||||
<path d="M22 24C22 21.7909 23.7909 20 26 20H54C56.2091 20 58 21.7909 58 24V44H22V24Z" fill="#86CBFF"/>
|
||||
<path d="M16.2192 51.5035C15.3593 52.4708 16.046 54 17.3403 54H62.6597C63.954 54 64.6407 52.4708 63.7808 51.5035L58.2983 45.3356C58.1086 45.1221 57.8366 45 57.5509 45H22.4491C22.1634 45 21.8914 45.1221 21.7017 45.3356L16.2192 51.5035Z" fill="#499EF3"/>
|
||||
<rect x="27" y="29" width="20" height="2" rx="1" fill="white"/>
|
||||
<rect x="27" y="33" width="14" height="2" rx="1" fill="white"/>
|
||||
<g filter="url(#filter0_d_1409_2665)">
|
||||
<path d="M59 55.5L65 62" stroke="#9B72EC" stroke-width="2" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_1409_2665)">
|
||||
<circle cx="53.5" cy="48.5" r="9.5" fill="white"/>
|
||||
<circle cx="53.5" cy="48.5" r="8.5" stroke="#9B72EC" stroke-width="2"/>
|
||||
</g>
|
||||
<path d="M58.5 49.5C57.5 51.5 55.5 53.5 53.5 53.5" stroke="#9B72EC" stroke-width="2" stroke-linecap="round"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1409_2665" x="58" y="54.5" width="12" height="12.5" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1409_2665"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1409_2665" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_1409_2665" x="44" y="39" width="23" height="23" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1409_2665"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1409_2665" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
26
public/images/icon_ing05.svg
Normal file
@@ -0,0 +1,26 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 40C0 17.9086 17.9086 0 40 0C62.0914 0 80 17.9086 80 40C80 62.0914 62.0914 80 40 80C17.9086 80 0 62.0914 0 40Z" fill="#F4F8FF"/>
|
||||
<path d="M64.9238 35.5664H32.0764V57.9996H64.9238V35.5664Z" fill="#F15D92"/>
|
||||
<path d="M33.6252 40.3438C31.3285 40.3438 29.6103 38.473 30.0768 36.4803L32.1748 27.5293H38.3171L37.2327 37.4427C37.0536 39.0885 35.491 40.3438 33.6252 40.3438Z" fill="#FF9AB9"/>
|
||||
<path d="M41.1178 40.3438H40.8914C38.7521 40.3438 37.0773 38.7102 37.2839 36.8237L38.3014 27.5293H45.0441L44.741 37.2212C44.6859 38.9595 43.0799 40.342 41.1178 40.342V40.3438Z" fill="#FFE9F4"/>
|
||||
<path d="M48.6455 40.344H48.3543C46.3134 40.344 44.6759 38.8516 44.731 37.0454L45.0282 27.5312H51.9716L52.2688 37.0454C52.3259 38.8516 50.6865 40.344 48.6455 40.344Z" fill="#FF9AB9"/>
|
||||
<path d="M56.1087 40.344H55.8823C53.9201 40.344 52.3142 38.9597 52.2591 37.2232L51.956 27.5312H58.6987L59.7162 36.8257C59.9228 38.7121 58.248 40.3457 56.1087 40.3457V40.344Z" fill="#FFE9F4"/>
|
||||
<path d="M63.3747 40.3438C61.509 40.3438 59.9483 39.0885 59.7672 37.4427L58.6828 27.5293H64.8252L66.9232 36.4803C67.3896 38.473 65.6734 40.3438 63.3747 40.3438Z" fill="#FF9AB9"/>
|
||||
<path d="M53.5938 58.0005H43.6707V48.1417C43.6707 45.4472 45.8913 43.2637 48.6313 43.2637C51.3714 43.2637 53.5919 45.4472 53.5919 48.1417V58.0005H53.5938Z" fill="#FF9AB9"/>
|
||||
<g filter="url(#filter0_d_1411_1823)">
|
||||
<rect x="12.5" y="21.5" width="30" height="30" rx="15" fill="#FFC273"/>
|
||||
</g>
|
||||
<path d="M20.2535 36.323C20.2535 36.1155 20.3157 35.9366 20.4413 35.7827C20.5669 35.63 20.7863 35.5536 21.1009 35.5536H21.629L21.1842 33.2047C21.1103 32.7909 21.149 32.449 21.3027 32.1789C21.4553 31.9088 21.7029 31.7469 22.0468 31.6934C22.3989 31.6398 22.7064 31.6843 22.9704 31.8279C23.2345 31.9715 23.4035 32.2507 23.4774 32.6644L23.9504 35.5536H25.3822L26.077 32.6918C26.1228 32.4843 26.2002 32.3157 26.307 32.1857C26.4138 32.0558 26.5335 31.9521 26.6685 31.8757C26.8035 31.7994 26.9443 31.7458 27.0922 31.7139C27.24 31.682 27.3797 31.666 27.5088 31.666C27.6379 31.666 27.7776 31.682 27.9254 31.7139C28.0733 31.7458 28.2153 31.7994 28.3491 31.8757C28.4841 31.9521 28.6038 32.0558 28.7106 32.1857C28.8174 32.3168 28.8937 32.4855 28.9394 32.6918L29.6213 35.5536H31.066L31.539 32.6644C31.6129 32.2507 31.7819 31.9715 32.046 31.8279C32.3101 31.6843 32.6187 31.6387 32.9708 31.6934C33.3041 31.7469 33.5482 31.9099 33.7008 32.1789C33.8534 32.449 33.8933 32.7864 33.8193 33.191L33.3604 35.5536H33.9027C34.2172 35.5536 34.4378 35.63 34.5622 35.7827C34.6878 35.9354 34.75 36.1155 34.75 36.323C34.75 36.5304 34.6855 36.7162 34.5552 36.8826C34.4249 37.049 34.2078 37.1322 33.9015 37.1322H33.067L32.303 41.1816C32.2291 41.5862 32.0554 41.9065 31.7819 42.1401C31.5085 42.3738 31.2139 42.5049 30.8994 42.5311C30.7327 42.5493 30.5637 42.5425 30.3924 42.5106C30.221 42.4786 30.0591 42.4205 29.9053 42.335C29.7528 42.2496 29.6178 42.1322 29.5016 41.984C29.3854 41.8358 29.2997 41.6489 29.2446 41.4233L28.2435 37.131H26.7694L25.7683 41.4233C25.7132 41.6478 25.6263 41.8347 25.5113 41.984C25.3951 42.1322 25.2613 42.2496 25.1088 42.335C24.9562 42.4205 24.7931 42.4786 24.6217 42.5106C24.4504 42.5413 24.2814 42.5482 24.1147 42.5311C23.799 42.5037 23.5056 42.3738 23.2322 42.1401C22.9587 41.9065 22.785 41.5862 22.7111 41.1816L21.933 37.1322H21.0985C20.7922 37.1322 20.5751 37.049 20.4448 36.8826C20.3145 36.7162 20.25 36.5292 20.25 36.323H20.2535ZM24.5349 39.1301L25.0078 37.1322H24.2016L24.5349 39.1301ZM27.1344 35.5536H27.8714L27.51 33.9603L27.1344 35.5536ZM30.4839 39.1176L30.8031 37.1333H29.9969L30.4839 39.1176Z" fill="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_1823" x="12.5" y="21.5" width="34" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_1823"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_1823" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
27
public/images/icon_ing06.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="#F4F8FF"/>
|
||||
<path d="M21 52.628C21 54.1266 22.529 55.1395 23.9089 54.5551L27.2469 53.1414C27.7686 52.9204 28.3575 52.9204 28.8792 53.1414L34.2787 55.4282C34.8187 55.6569 35.4298 55.6486 35.9634 55.4052L40.8747 53.1651C41.3922 52.9291 41.9835 52.9138 42.5125 53.1229L46.3901 54.6557C47.7636 55.1987 49.2522 54.1864 49.2522 52.7095V25.6514C49.2522 22.5308 46.7224 20.001 43.6018 20.001H27.2783C23.8109 20.001 21 22.8119 21 26.2792V52.628Z" fill="#86CBFF"/>
|
||||
<path d="M52.0767 20C53.9601 20.0001 55.8442 21.4128 55.8442 25.1797V32.7139C55.8442 33.2339 55.4219 33.6552 54.9019 33.6553H49.2515C49.2515 26.122 49.2517 20.0007 47.8394 20H52.0767Z" fill="#499EF3"/>
|
||||
<path d="M53.0194 20C48.7815 20.4709 49.0954 25.4935 49.2524 27.0631L44.5437 20H53.0194Z" fill="#86CBFF"/>
|
||||
<path d="M31.359 28.4766L32.9995 36.0105L35.6505 31.1234L38.1942 36.0105L39.8347 28.4766" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<rect x="28.844" y="30.8945" width="3.5" height="2" rx="1" fill="white"/>
|
||||
<rect x="38.844" y="30.8945" width="3.5" height="2" rx="1" fill="white"/>
|
||||
<path d="M29.4758 42.6016H41.483" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M29.4758 46.8398H35.8326" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<g filter="url(#filter0_d_1411_2584)">
|
||||
<circle cx="52.344" cy="49.3945" r="10.5" fill="#FFC273"/>
|
||||
</g>
|
||||
<path d="M46.7852 49.6008L49.4974 52.726C49.9642 53.2639 50.788 53.2966 51.2961 52.7975L57.9028 46.3066" stroke="white" stroke-width="2" stroke-linecap="round"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_2584" x="41.844" y="38.8945" width="25.9412" height="25.9412" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2.47059" dy="2.47059"/>
|
||||
<feGaussianBlur stdDeviation="1.23529"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_2584"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_2584" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
30
public/images/icon_ing07.svg
Normal file
@@ -0,0 +1,30 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="#F4F8FF"/>
|
||||
<g clip-path="url(#clip0_1411_1786)">
|
||||
<rect x="27" y="31" width="39" height="27.0833" rx="4.58824" fill="#A9B3DE"/>
|
||||
<path d="M27 33.0703C28.2498 34.3201 40.0055 42.5418 45.8849 46.7044C46.2915 46.9923 46.8342 46.9831 47.2331 46.6846L65.4265 33.0703" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
<path d="M28.7206 56.8097L41.3382 44.7656" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
<path d="M64.853 57.7335L51.0883 43.9688" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g filter="url(#filter0_d_1411_1786)">
|
||||
<circle cx="28" cy="37" r="15" fill="#54DD86"/>
|
||||
<rect x="24.758" y="35.0508" width="6.40003" height="9.1429" rx="3.20002" transform="rotate(45 24.758 35.0508)" stroke="white" stroke-width="1.82858"/>
|
||||
<rect x="32.5158" y="27.293" width="6.40003" height="9.1429" rx="3.20002" transform="rotate(45 32.5158 27.293)" stroke="white" stroke-width="1.82858"/>
|
||||
<rect x="29.6569" y="33" width="2" height="8" rx="1" transform="rotate(45 29.6569 33)" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_1786" x="13" y="22" width="34" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_1786"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_1786" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_1411_1786">
|
||||
<rect x="27" y="31" width="39" height="27.0833" rx="4.58824" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
35
public/images/icon_ing08.svg
Normal file
@@ -0,0 +1,35 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="#F4F8FF"/>
|
||||
<path d="M19.3328 41.0871C20.2883 34.1599 26.2087 29 33.2015 29H36.7985C43.7913 29 49.7117 34.1599 50.6672 41.0871L50.8051 42.0871C51.9655 50.4999 45.4289 58 36.9364 58H33.0636C24.5711 58 18.0345 50.4999 19.1949 42.0871L19.3328 41.0871Z" fill="#FFC273"/>
|
||||
<path d="M28.0035 42.6569C28.0035 42.4495 28.0657 42.2706 28.1913 42.1167C28.3169 41.964 28.5363 41.8876 28.8509 41.8876H29.379L28.9342 39.5386C28.8603 39.1249 28.899 38.783 29.0527 38.5129C29.2053 38.2428 29.4529 38.0809 29.7968 38.0274C30.1489 37.9738 30.4564 38.0182 30.7204 38.1618C30.9845 38.3054 31.1535 38.5847 31.2274 38.9984L31.7004 41.8876H33.1322L33.827 39.0258C33.8728 38.8183 33.9502 38.6496 34.057 38.5197C34.1638 38.3898 34.2835 38.2861 34.4185 38.2097C34.5535 38.1333 34.6943 38.0798 34.8422 38.0479C34.99 38.016 35.1297 38 35.2588 38C35.3879 38 35.5276 38.016 35.6754 38.0479C35.8233 38.0798 35.9653 38.1333 36.0991 38.2097C36.2341 38.2861 36.3538 38.3898 36.4606 38.5197C36.5674 38.6508 36.6437 38.8195 36.6894 39.0258L37.3713 41.8876H38.816L39.289 38.9984C39.3629 38.5847 39.5319 38.3054 39.796 38.1618C40.0601 38.0182 40.3687 37.9726 40.7208 38.0274C41.0541 38.0809 41.2982 38.2439 41.4508 38.5129C41.6034 38.783 41.6433 39.1204 41.5693 39.525L41.1104 41.8876H41.6527C41.9672 41.8876 42.1878 41.964 42.3122 42.1167C42.4378 42.2694 42.5 42.4495 42.5 42.6569C42.5 42.8644 42.4355 43.0501 42.3052 43.2165C42.1749 43.3829 41.9578 43.4661 41.6515 43.4661H40.817L40.053 47.5156C39.9791 47.9202 39.8054 48.2405 39.5319 48.4741C39.2585 48.7078 38.9639 48.8388 38.6494 48.8651C38.4827 48.8833 38.3137 48.8765 38.1424 48.8445C37.971 48.8126 37.8091 48.7545 37.6553 48.669C37.5028 48.5835 37.3678 48.4661 37.2516 48.318C37.1354 48.1698 37.0497 47.9829 36.9946 47.7572L35.9935 43.465H34.5194L33.5183 47.7572C33.4632 47.9818 33.3763 48.1687 33.2613 48.318C33.1451 48.4661 33.0113 48.5835 32.8588 48.669C32.7062 48.7545 32.5431 48.8126 32.3717 48.8445C32.2004 48.8753 32.0314 48.8822 31.8647 48.8651C31.549 48.8377 31.2556 48.7078 30.9822 48.4741C30.7087 48.2405 30.535 47.9202 30.4611 47.5156L29.683 43.4661H28.8485C28.5422 43.4661 28.3251 43.3829 28.1948 43.2165C28.0645 43.0501 28 42.8632 28 42.6569H28.0035ZM32.2849 45.4641L32.7578 43.4661H31.9516L32.2849 45.4641ZM34.8844 41.8876H35.6214L35.26 40.2943L34.8844 41.8876ZM38.2339 45.4516L38.5531 43.4673H37.7469L38.2339 45.4516Z" fill="white"/>
|
||||
<path d="M25.7973 24.5579L29.1587 29.5579C29.3445 29.8343 29.6556 30 29.9886 30H38.9584C39.2717 30 39.567 29.8531 39.756 29.6032L43.5375 24.6032C44.0357 23.9445 43.5658 23 42.7399 23H26.6272C25.8268 23 25.3508 23.8936 25.7973 24.5579Z" fill="#FFC273"/>
|
||||
<rect x="28" y="28" width="13" height="2" rx="1" fill="#F04C4C"/>
|
||||
<g filter="url(#filter0_d_1411_1834)">
|
||||
<path d="M55.0329 29.2309C50.7724 34.1479 46.2518 37.0709 43 38C50.2306 38 56.4124 33.7842 58.6282 31.4253C58.7615 31.2835 58.9917 31.2957 59.105 31.454L61.518 34.8264C61.6813 35.0546 62.0405 34.9538 62.0612 34.674L62.9643 22.4826C62.9807 22.2605 62.7581 22.0986 62.5519 22.1826L50.3753 27.1434C50.1042 27.2538 50.1356 27.6474 50.4207 27.7135L54.8743 28.7461C55.0929 28.7968 55.1798 29.0613 55.0329 29.2309Z" fill="#F05D92"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_1411_1834)">
|
||||
<path d="M55.0329 50.7691C50.7724 45.8521 46.2518 42.9291 43 42C50.2306 42 56.4124 46.2158 58.6282 48.5747C58.7615 48.7165 58.9917 48.7043 59.105 48.546L61.518 45.1736C61.6813 44.9454 62.0405 45.0462 62.0612 45.326L62.9643 57.5174C62.9807 57.7395 62.7581 57.9014 62.5519 57.8174L50.3753 52.8566C50.1042 52.7462 50.1356 52.3526 50.4207 52.2865L54.8743 51.2539C55.0929 51.2032 55.1798 50.9387 55.0329 50.7691Z" fill="#F05D92"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_1834" x="43" y="22.1602" width="23.9651" height="19.8398" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_1834"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_1834" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_1411_1834" x="43" y="42" width="23.9651" height="19.8398" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_1834"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_1834" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
23
public/images/icon_ing09.svg
Normal file
@@ -0,0 +1,23 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="#F4F8FF"/>
|
||||
<circle cx="32" cy="34" r="17" fill="#FFC273"/>
|
||||
<path d="M34.207 42H31.2578V30.6523H31.1797L27.9375 32.6836V30.0859L31.4336 27.8594H34.207V42Z" fill="white"/>
|
||||
<g filter="url(#filter0_d_1411_1847)">
|
||||
<rect x="33" y="39" width="34" height="24" rx="4" fill="#B87EFF"/>
|
||||
</g>
|
||||
<circle cx="43.4003" cy="47.4755" r="3.73333" stroke="white" stroke-width="2.07407" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M49 58.2091V57.2758C49 54.183 46.4928 51.6758 43.4 51.6758V51.6758C40.3072 51.6758 37.8 54.183 37.8 57.2758V58.2091" stroke="white" stroke-width="2.07407" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M54 50.7143L56.5 53.5L62 49" stroke="#FFDAA8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_1847" x="33" y="39" width="38" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="2" dy="2"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_1847"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_1847" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
34
public/images/icon_ing10.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg width="80" height="80" viewBox="0 0 80 80" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="80" height="80" rx="40" fill="#F4F8FF"/>
|
||||
<g clip-path="url(#clip0_1411_2597)">
|
||||
<g clip-path="url(#clip1_1411_2597)">
|
||||
<rect x="28.6396" y="29.8984" width="39" height="27.0833" rx="4.58824" fill="#75E19C"/>
|
||||
<path d="M28.6396 31.9688C29.8895 33.2186 41.6451 41.4402 47.5246 45.6028C47.9312 45.8907 48.4738 45.8816 48.8727 45.5831L67.0661 31.9688" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
<path d="M30.3602 55.7082L42.9779 43.6641" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
<path d="M66.4926 56.6319L52.7279 42.8672" stroke="white" stroke-width="1.72059" stroke-linecap="round"/>
|
||||
</g>
|
||||
<g filter="url(#filter0_d_1411_2597)">
|
||||
<ellipse cx="5.6995" cy="5.76848" rx="5.6995" ry="5.76848" transform="matrix(0.946464 0.32281 -0.311874 0.950123 25.528 37.6855)" fill="#FF7A38"/>
|
||||
<path d="M22.2345 26.8287C24.3381 20.4199 31.2188 16.9897 37.6028 19.1672C43.9869 21.3446 47.4568 28.305 45.3532 34.7138L41.452 46.5987L18.3333 38.7136L22.2345 26.8287Z" fill="#FFC255"/>
|
||||
<path d="M19.8767 34.0165L42.9954 41.9016L44.2849 47.808C44.6223 49.3533 43.1647 50.6655 41.6753 50.1575L16.0567 41.4198C14.5673 40.9118 14.1779 38.9696 15.3597 37.9425L19.8767 34.0165Z" fill="#FFC255"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1411_2597" x="11.0001" y="13.7207" width="46.8711" height="46.0528" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="1.89553" dy="1.89553"/>
|
||||
<feGaussianBlur stdDeviation="0.947765"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1411_2597"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1411_2597" result="shape"/>
|
||||
</filter>
|
||||
<clipPath id="clip0_1411_2597">
|
||||
<rect width="56" height="56" fill="white" transform="translate(12 12)"/>
|
||||
</clipPath>
|
||||
<clipPath id="clip1_1411_2597">
|
||||
<rect x="28.6396" y="29.8984" width="39" height="27.0833" rx="4.58824" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
27
public/images/img_customer.svg
Normal file
@@ -0,0 +1,27 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M35.8998 31.9401C42.0303 30.2501 45.7017 23.7583 44.1002 17.4401C42.4986 11.1219 36.2306 7.36999 30.1002 9.05994C23.9697 10.7499 20.2983 17.2418 21.8998 23.5599C23.5014 29.8781 29.7694 33.63 35.8998 31.9401Z" fill="#FFC400"/>
|
||||
<path d="M30.1436 23.1951L28.5869 23.6317C28.0302 23.7879 27.4605 23.4536 27.3151 22.8853C27.1696 22.317 27.5033 21.7293 28.06 21.5731L29.6167 21.1364C30.1735 20.9802 30.7431 21.3146 30.8886 21.8828C31.034 22.4511 30.7004 23.0389 30.1436 23.1951Z" fill="white"/>
|
||||
<path d="M38.0935 21.0035L36.5368 21.4402C35.9801 21.5964 35.4104 21.262 35.265 20.6938C35.1195 20.1255 35.4532 19.5377 36.0099 19.3816L37.5666 18.9449C38.1233 18.7887 38.693 19.123 38.8385 19.6913C38.9839 20.2596 38.6502 20.8474 38.0935 21.0035Z" fill="white"/>
|
||||
<path d="M35.8584 24.4448C35.4234 24.5664 34.9632 24.388 34.7182 24.0041L33.1332 21.5156L32.9531 24.4976C32.9239 24.9628 32.615 25.3562 32.1684 25.4764C31.7302 25.5943 31.2683 25.4095 31.028 25.0173L27.8235 19.8007C27.5175 19.3022 27.6651 18.64 28.153 18.3212C28.6404 18.0003 29.2842 18.1481 29.5902 18.6466L31.072 21.0577L31.2464 18.1674C31.274 17.7049 31.5877 17.3125 32.0226 17.1909C32.4576 17.0693 32.9178 17.2476 33.1628 17.6316L34.6989 20.0437L34.8268 17.1825C34.8529 16.5912 35.3402 16.1295 35.9155 16.151C36.4908 16.1725 36.9359 16.669 36.9098 17.2603L36.6345 23.4499C36.6142 23.9149 36.3028 24.3159 35.8668 24.4424L35.8584 24.4448Z" fill="white"/>
|
||||
<g clip-path="url(#clip0_937_1658)">
|
||||
<path d="M51.6119 30.9404L52.9698 17.8287L58 16.1054L56.6229 12L48.9906 14.6141L47.3454 30.4896L51.6119 30.9404Z" fill="#D36A63"/>
|
||||
<path d="M23.3204 56C20.8325 56 18.8157 53.962 18.8157 51.4481C18.8157 48.9341 20.8325 46.8961 23.3204 46.8961C25.8083 46.8961 27.8251 48.9341 27.8251 51.4481C27.8251 53.962 25.8083 56 23.3204 56Z" fill="#FFC3BD"/>
|
||||
<path d="M45.8181 56C43.3302 56 41.3134 53.962 41.3134 51.4481C41.3134 48.9341 43.3302 46.8961 45.8181 46.8961C48.3059 46.8961 50.3228 48.9341 50.3228 51.4481C50.3228 53.962 48.3059 56 45.8181 56Z" fill="#FFC3BD"/>
|
||||
<path d="M19.0989 45.2227H50.3227L52.4678 22.7404H14L19.0989 45.2227Z" fill="#FF8B7B"/>
|
||||
</g>
|
||||
<path d="M18.1996 38.7031C23.4077 40.0986 28.7892 37.0156 30.2195 31.817C31.6499 26.6184 28.5875 21.2728 23.3794 19.8774C18.1714 18.4819 12.7899 21.5649 11.3595 26.7635C9.92914 31.962 12.9916 37.3076 18.1996 38.7031Z" fill="#FFC400"/>
|
||||
<path d="M17.5721 30.017L16.2551 29.6642C15.7841 29.538 15.5051 29.0509 15.6321 28.5767C15.7592 28.1026 16.2444 27.8203 16.7153 27.9465L18.0323 28.2994C18.5033 28.4256 18.7824 28.9126 18.6553 29.3868C18.5283 29.8609 18.0431 30.1432 17.5721 30.017Z" fill="white"/>
|
||||
<path d="M24.3258 31.8267L23.0088 31.4738C22.5378 31.3476 22.2588 30.8605 22.3858 30.3864C22.5129 29.9122 22.9981 29.6299 23.4691 29.7561L24.7861 30.109C25.257 30.2352 25.5361 30.7223 25.409 31.1964C25.282 31.6706 24.7968 31.9529 24.3258 31.8267Z" fill="white"/>
|
||||
<path d="M21.2592 33.3542C20.8913 33.2556 20.628 32.93 20.6065 32.5484L20.4689 30.076L19.1135 32.1484C18.9013 32.4712 18.5141 32.6225 18.1382 32.518C17.7695 32.4153 17.5077 32.0844 17.4929 31.6988L17.2908 26.5665C17.2717 26.0762 17.6513 25.6621 18.1388 25.6412C18.6268 25.6185 19.0368 26.0007 19.056 26.491L19.1498 28.8635L20.4634 26.8547C20.6733 26.5332 21.0637 26.3846 21.4316 26.4832C21.7995 26.5818 22.0627 26.9074 22.0843 27.289L22.2175 29.6854L23.485 27.6778C23.7467 27.2627 24.2924 27.1385 24.7042 27.4004C25.1159 27.6622 25.2376 28.2107 24.9759 28.6257L22.2347 32.9693C22.0291 33.2959 21.6369 33.4516 21.2663 33.3561L21.2592 33.3542Z" fill="white"/>
|
||||
<g opacity="0.7">
|
||||
<path d="M23.3213 23.199C26.8337 19.5612 26.8528 13.6434 23.3641 9.98136C19.8753 6.31927 14.1998 6.29957 10.6875 9.93737C7.17514 13.5752 7.156 19.4929 10.6447 23.155C14.1335 26.8171 19.809 26.8367 23.3213 23.199Z" fill="#FFC400"/>
|
||||
<path d="M16.0968 19.5681L15.2082 20.4936C14.8904 20.8246 14.3756 20.8256 14.0589 20.4959C13.7423 20.1663 13.7432 19.6303 14.061 19.2993L14.9496 18.3738C15.2674 18.0428 15.7821 18.0418 16.0988 18.3714C16.4155 18.7011 16.4146 19.2371 16.0968 19.5681Z" fill="white"/>
|
||||
<path d="M20.6515 14.8506L19.7629 15.7761C19.4451 16.1071 18.9304 16.1081 18.6137 15.7785C18.297 15.4488 18.2979 14.9128 18.6157 14.5818L19.5044 13.6563C19.8221 13.3253 20.3369 13.3243 20.6536 13.654C20.9702 13.9836 20.9693 14.5196 20.6515 14.8506Z" fill="white"/>
|
||||
<path d="M20.4502 18.1078C20.2018 18.3663 19.8215 18.4301 19.5086 18.2668L17.482 17.2075L18.5006 19.3154C18.6588 19.6447 18.5999 20.0378 18.3431 20.2999C18.0912 20.5571 17.7073 20.6172 17.3944 20.4465L13.2261 18.1781C12.828 17.9612 12.6747 17.4498 12.8835 17.0354C13.0912 16.6198 13.5842 16.4611 13.9823 16.678L15.9093 17.7262L14.9218 15.6831C14.7636 15.3563 14.8262 14.962 15.0745 14.7036C15.3229 14.4451 15.7032 14.3813 16.0161 14.5446L17.9804 15.5715L16.9724 13.5671C16.7639 13.153 16.9176 12.6414 17.3159 12.424C17.7142 12.2067 18.2059 12.3662 18.4144 12.7803L20.5957 17.1159C20.7599 17.4414 20.7021 17.8407 20.455 18.1029L20.4502 18.1078Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_937_1658">
|
||||
<rect width="44" height="44" fill="white" transform="matrix(-1 0 0 1 58 12)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
9
public/images/img_states.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="60" height="60" fill="white"/>
|
||||
<path d="M49.745 25H11.255C10.0078 25 9 24.2587 9 23.3415V19.9966C9 17.7883 11.4313 16 14.4338 16H46.5662C49.5687 16 52 17.7883 52 19.9966V23.3415C52 24.2587 50.9922 25 49.745 25Z" fill="#86A2FF"/>
|
||||
<path d="M49.6772 24.7262H11.2977V47.1308C11.2977 49.6192 13.2945 51.6379 15.756 51.6379H45.2188C47.6804 51.6379 49.6772 49.6192 49.6772 47.1308V24.7262Z" fill="#AEC1FF"/>
|
||||
<path d="M17.1877 18.9387V15.0029C17.1877 13.6994 18.2343 12.6414 19.5237 12.6414C20.813 12.6414 21.8596 13.6994 21.8596 15.0029V18.9387C21.8596 20.2422 20.813 21.3002 19.5237 21.3002C18.2343 21.3002 17.1877 20.2422 17.1877 18.9387Z" fill="#AEC1FF"/>
|
||||
<path d="M39.1153 18.9387V15.0029C39.1153 13.6994 40.1619 12.6414 41.4512 12.6414C42.7406 12.6414 43.7872 13.6994 43.7872 15.0029V18.9387C43.7872 20.2422 42.7406 21.3002 41.4512 21.3002C40.1619 21.3002 39.1153 20.2422 39.1153 18.9387Z" fill="#AEC1FF"/>
|
||||
<path d="M25.7319 45.4972C23.7434 45.4972 21.688 44.4985 20.7377 43.0723C20.2228 42.2978 20.4237 41.244 21.1898 40.7235C21.9559 40.2029 22.9983 40.4061 23.5132 41.1848C23.735 41.5191 24.6644 42.1116 25.7277 42.1116C26.498 42.1116 27.1887 41.8069 27.578 41.299C27.9255 40.8462 28.005 40.2495 27.8166 39.5343C27.3938 37.9261 25.7989 37.6679 25.6147 37.6425C24.9909 37.5748 24.4676 37.1601 24.2416 36.5718C24.0155 35.9793 24.1453 35.3106 24.5597 34.8367L25.6481 33.5967H23.555C22.6299 33.5967 21.8805 32.8391 21.8805 31.9038C21.8805 30.9685 22.6299 30.211 23.555 30.211H29.3739C30.0312 30.211 30.6298 30.6003 30.9019 31.2098C31.174 31.8192 31.0652 32.5302 30.6256 33.0296L28.6497 35.281C29.6711 35.9624 30.6214 37.0416 31.0484 38.6667C31.5047 40.4018 31.2117 42.0693 30.2279 43.3643C29.2106 44.7016 27.5278 45.4972 25.7235 45.4972H25.7319Z" fill="white"/>
|
||||
<path d="M37.6627 45.2349C36.7375 45.2349 35.9882 44.4773 35.9882 43.542V34.5404C35.2347 35.0229 34.23 34.8197 33.7151 34.0664C33.1918 33.2962 33.3843 32.2424 34.1421 31.7134L36.7082 29.9232C37.2189 29.5677 37.8846 29.5254 38.4371 29.8174C38.9897 30.1094 39.333 30.685 39.333 31.3156V43.5378C39.333 44.4731 38.5837 45.2306 37.6585 45.2306L37.6627 45.2349Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
3
public/images/money-active.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.2608 1H6.52162C4.57977 1 3 2.61501 3 4.59988V21.7999C3 22.4629 3.52534 22.9999 4.17392 22.9999C4.64544 22.9999 5.05239 22.7159 5.23827 22.306L6.90521 20.382L8.76685 22.569C8.98892 22.83 9.31077 22.981 9.65021 22.981H9.65315C9.99066 22.981 10.3125 22.832 10.5355 22.572L12.3903 20.411L14.2471 22.584C14.4701 22.845 14.792 22.995 15.1304 22.995C15.4689 22.995 15.7917 22.846 16.0148 22.586L17.8705 20.42L19.6989 22.556C19.9122 22.827 20.2409 23 20.6087 23C21.2573 23 21.7826 22.463 21.7826 21.8V4.59993C21.7826 2.61493 20.2025 1 18.2608 1ZM13.1739 15.0002H8.47827C7.8297 15.0002 7.30436 14.4632 7.30436 13.8002C7.30436 13.1372 7.8297 12.6002 8.47827 12.6002H13.1739C13.8225 12.6002 14.3479 13.1372 14.3479 13.8002C14.3479 14.4632 13.8225 15.0002 13.1739 15.0002ZM16.3044 15.0002C15.6558 15.0002 15.1305 14.4632 15.1305 13.8002C15.1305 13.1372 15.6558 12.6002 16.3044 12.6002C16.953 12.6002 17.4783 13.1372 17.4783 13.8002C17.4783 14.4632 16.953 15.0002 16.3044 15.0002ZM16.3044 9.40016H8.47827C7.8297 9.40016 7.30436 8.86314 7.30436 8.20015C7.30436 7.53716 7.8297 7.00015 8.47827 7.00015H16.3044C16.953 7.00015 17.4783 7.53716 17.4783 8.20015C17.4783 8.86314 16.953 9.40016 16.3044 9.40016Z" fill="#3E6AFC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
3
public/images/money.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M18.2608 1H6.52162C4.57977 1 3 2.61501 3 4.59988V21.7999C3 22.4629 3.52534 22.9999 4.17392 22.9999C4.64544 22.9999 5.05239 22.7159 5.23827 22.306L6.90521 20.382L8.76685 22.569C8.98892 22.83 9.31077 22.981 9.65021 22.981H9.65315C9.99066 22.981 10.3125 22.832 10.5355 22.572L12.3903 20.411L14.2471 22.584C14.4701 22.845 14.792 22.995 15.1304 22.995C15.4689 22.995 15.7917 22.846 16.0148 22.586L17.8705 20.42L19.6989 22.556C19.9122 22.827 20.2409 23 20.6087 23C21.2573 23 21.7826 22.463 21.7826 21.8V4.59993C21.7826 2.61493 20.2025 1 18.2608 1ZM13.1739 15.0002H8.47827C7.8297 15.0002 7.30436 14.4632 7.30436 13.8002C7.30436 13.1372 7.8297 12.6002 8.47827 12.6002H13.1739C13.8225 12.6002 14.3479 13.1372 14.3479 13.8002C14.3479 14.4632 13.8225 15.0002 13.1739 15.0002ZM16.3044 15.0002C15.6558 15.0002 15.1305 14.4632 15.1305 13.8002C15.1305 13.1372 15.6558 12.6002 16.3044 12.6002C16.953 12.6002 17.4783 13.1372 17.4783 13.8002C17.4783 14.4632 16.953 15.0002 16.3044 15.0002ZM16.3044 9.40016H8.47827C7.8297 9.40016 7.30436 8.86314 7.30436 8.20015C7.30436 7.53716 7.8297 7.00015 8.47827 7.00015H16.3044C16.953 7.00015 17.4783 7.53716 17.4783 8.20015C17.4783 8.86314 16.953 9.40016 16.3044 9.40016Z" fill="#B3B8CE"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
5
public/images/more-active.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 9C1.34309 9 0 10.3431 0 12C0 13.6569 1.34309 15 3 15C4.65691 15 6 13.6569 6 12C6 10.3431 4.65691 9 3 9Z" fill="#3E6AFC"/>
|
||||
<path d="M12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9Z" fill="#3E6AFC"/>
|
||||
<path d="M21 9C19.3431 9 18 10.3431 18 12C18 13.6569 19.3431 15 21 15C22.6569 15 24 13.6569 24 12C24 10.3431 22.6569 9 21 9Z" fill="#3E6AFC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 520 B |
5
public/images/more.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3 9C1.34309 9 0 10.3431 0 12C0 13.6569 1.34309 15 3 15C4.65691 15 6 13.6569 6 12C6 10.3431 4.65691 9 3 9Z" fill="#BBC0D3"/>
|
||||
<path d="M12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9Z" fill="#BBC0D3"/>
|
||||
<path d="M21 9C19.3431 9 18 10.3431 18 12C18 13.6569 19.3431 15 21 15C22.6569 15 24 13.6569 24 12C24 10.3431 22.6569 9 21 9Z" fill="#BBC0D3"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 520 B |
5
public/images/pay_01.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#3E6AFC"/>
|
||||
<rect x="6" y="8" width="12" height="8" rx="1" fill="#E3EFFF"/>
|
||||
<rect x="6" y="10" width="12" height="1.5" fill="#3E6AFC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 275 B |
4
public/images/pay_02.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#FFE000"/>
|
||||
<path d="M5 11.3307C5 8.38675 8.13322 6 12 6C15.8668 6 19 8.38667 19 11.3307C19 14.2745 15.8668 16.6613 12 16.6613C11.7031 16.6613 11.4116 16.6449 11.1246 16.6177L7.54931 18.9445C7.29518 19.1091 6.96639 18.8823 7.04553 18.5977L7.86928 15.6309C6.13167 14.6605 5 13.097 5 11.3307Z" fill="black"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 446 B |
5
public/images/pay_03.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#00DE5A"/>
|
||||
<path d="M17.8202 15.8891C18.5894 14.7379 18.9999 13.3846 19 12.0002C19 10.849 18.7161 9.71558 18.1735 8.70033C17.6308 7.68508 16.8462 6.81932 15.889 6.17975C14.9319 5.54019 13.8318 5.14655 12.6861 5.03371C11.5405 4.92087 10.3847 5.09231 9.32121 5.53285C8.25767 5.97339 7.31919 6.66942 6.5889 7.5593C5.85861 8.44917 5.35906 9.50542 5.13449 10.6345C4.90992 11.7635 4.96727 12.9306 5.30145 14.0322C5.63563 15.1338 6.23634 16.1359 7.05035 16.9499C8.02933 17.9288 9.2766 18.5955 10.6344 18.8655C11.9923 19.1356 13.3997 18.9969 14.6787 18.4671C15.9578 17.9373 17.051 17.0402 17.8202 15.8891Z" fill="black"/>
|
||||
<path d="M13.4607 12.2243V8.70703H15.5852V15.2834H13.5674L11.1174 11.7644V15.2922H9V8.70703H11.0107L13.4607 12.2243Z" fill="#00DE5A"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 889 B |
9
public/images/pay_04.svg
Normal file
|
After Width: | Height: | Size: 31 KiB |
7
public/images/pay_05.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#3E6AFC"/>
|
||||
<path d="M7 8C7 7.44772 7.44772 7 8 7H16C16.5523 7 17 7.44772 17 8V13C13.0948 13 10.9052 13 7 13V8Z" fill="#E3EFFF"/>
|
||||
<path d="M7.48452 12.2676C7.5709 12.1031 7.74139 12 7.92722 12H16.0728C16.2586 12 16.4291 12.1031 16.5155 12.2676L18.6155 16.2676C18.7903 16.6005 18.5488 17 18.1728 17H5.82722C5.45119 17 5.20973 16.6005 5.38452 16.2676L7.48452 12.2676Z" fill="#E3EFFF"/>
|
||||
<path d="M9 9H12.5" stroke="#3E6AFC" stroke-linecap="round"/>
|
||||
<path d="M7 13L17 13" stroke="#3E6AFC" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 649 B |
6
public/images/pay_06.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#3E6AFC"/>
|
||||
<path d="M8 7C8 6.44772 8.44772 6 9 6H15C15.5523 6 16 6.44772 16 7V17C16 17.5523 15.5523 18 15 18H9C8.44772 18 8 17.5523 8 17V7Z" fill="#E3EFFF"/>
|
||||
<rect x="11" y="7" width="2" height="0.5" rx="0.25" fill="#3E6AFC"/>
|
||||
<circle cx="12.2" cy="16.7" r="0.7" fill="#3E6AFC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 420 B |
10
public/images/pay_07.svg
Normal file
|
After Width: | Height: | Size: 30 KiB |
10
public/images/pay_08.svg
Normal file
|
After Width: | Height: | Size: 78 KiB |
4
public/images/pay_09.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#3E6AFC"/>
|
||||
<path d="M4.44434 7.80859H11.7695V9.19238H8.93848V17H7.28809V9.19238H4.44434V7.80859ZM16.0199 15.0576H16.1215L18.5209 7.80859H20.3363L17.0863 17H15.0551L11.8178 7.80859H13.6332L16.0199 15.0576Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 361 B |
9
public/images/pay_10.svg
Normal file
|
After Width: | Height: | Size: 31 KiB |
10
public/images/pay_11.svg
Normal file
|
After Width: | Height: | Size: 28 KiB |
4
public/images/pay_12.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#2456EA"/>
|
||||
<path d="M6.00002 11.5C7.14605 8.0619 11.1195 6.47836 13.2167 6.05253C13.3539 6.02468 13.4706 6.1469 13.4432 6.28414L13.053 8.23486C13.0267 8.3667 13.1369 8.48631 13.2709 8.4753C17.058 8.16399 18.2829 9.52293 18.5 10.5C19.4435 14.7457 14.4874 17.0239 11.2983 17.9189C11.1586 17.9581 11.027 17.8381 11.0508 17.695L11.4551 15.2695C11.4773 15.1361 11.3594 15.0201 11.2252 15.0369C5.88698 15.7073 5.50833 12.9751 6.00002 11.5Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 590 B |
11
public/images/pay_13.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#E93E3E"/>
|
||||
<g clip-path="url(#clip0_2112_6662)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23 12.0002C23 12.6743 22.7585 13.268 22.3158 13.6806C21.8931 14.0931 21.3196 14.3246 20.6656 14.3246C20.0216 14.3246 19.448 14.0931 19.0254 13.6806C18.5827 13.268 18.3412 12.6743 18.3412 12.0002C18.3412 11.3361 18.5827 10.7424 19.0254 10.3298C19.448 9.91728 20.0216 9.68584 20.6656 9.68584C21.3196 9.68584 21.8931 9.91728 22.3158 10.3298C22.7585 10.7424 23 11.3361 23 12.0002ZM21.5812 12.8857C21.7825 12.6542 21.9032 12.3624 21.9032 12.0102C21.9032 11.648 21.7825 11.3562 21.5812 11.1248C21.3598 10.8833 21.0479 10.7424 20.6656 10.7424C20.2832 10.7424 19.9713 10.8833 19.7499 11.1248C19.5486 11.3461 19.4379 11.648 19.4379 12.0102C19.4379 12.3624 19.5486 12.6542 19.7599 12.8857C19.9813 13.1271 20.2832 13.268 20.6656 13.268C21.0479 13.268 21.3598 13.1271 21.5812 12.8857ZM17.4154 12.7347L18.2204 13.3485L18.2104 13.3787C17.999 13.6705 17.7777 13.8919 17.4959 14.0529C17.184 14.234 16.8016 14.3246 16.3186 14.3246C15.574 14.3246 14.9401 14.0227 14.5074 13.5397C14.1552 13.1372 13.954 12.6039 13.954 12.0002C13.954 11.2857 14.2357 10.6719 14.7187 10.2493C15.1313 9.88709 15.6948 9.67578 16.3186 9.67578C16.7312 9.67578 17.0934 9.74622 17.3852 9.88709C17.6368 9.99777 17.9085 10.2091 18.1399 10.4908L18.16 10.511L17.3551 11.1851L17.3349 11.165C17.184 11.004 17.0331 10.8933 16.8519 10.8229C16.6909 10.7625 16.5199 10.7323 16.3488 10.7323C15.9765 10.7323 15.7149 10.8329 15.4935 11.0141C15.2218 11.2455 15.0508 11.5876 15.0508 12.0002C15.0508 12.3524 15.1715 12.6743 15.3828 12.8957C15.6143 13.1372 15.9564 13.268 16.3488 13.268C16.5501 13.268 16.7413 13.2278 16.8922 13.1573C17.0834 13.0768 17.2444 12.946 17.3953 12.7649L17.4154 12.7347ZM13.9641 9.78647L12.3239 12.785V14.2038H11.2271V12.785L9.58697 9.78647H10.8448L11.7705 11.6379L12.7163 9.78647H13.9641ZM10.3215 14.2038H9.21466L8.89267 13.3485H7.00096L6.68903 14.2038H5.56205L7.21227 9.78647H8.66124L10.3215 14.2038ZM7.3632 12.3624H8.52036L7.93675 10.8028L7.3632 12.3624ZM5.46143 10.3701C5.6828 10.6518 5.80355 11.0141 5.80355 11.3964C5.80355 11.6581 5.74317 11.9096 5.65261 12.131C5.51174 12.4328 5.27024 12.6945 4.95831 12.8454C4.72688 12.9561 4.39483 13.0165 4.12314 13.0165H3.09679V14.2139H2V9.79653H4.12314C4.35458 9.79653 4.64638 9.83678 4.83757 9.91728C5.08912 10.0179 5.30043 10.1688 5.46143 10.3701ZM4.44514 11.97C4.64638 11.8694 4.74701 11.6882 4.74701 11.4065C4.74701 11.2656 4.71682 11.165 4.66651 11.0744C4.6162 10.9738 4.52564 10.8933 4.39483 10.843C4.30426 10.8028 4.15333 10.7826 3.99233 10.7826H3.03642V12.0505H4.04264C4.23383 12.0505 4.36464 12.0002 4.44514 11.97Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2112_6662">
|
||||
<rect width="21" height="6" fill="white" transform="translate(2 9)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
9
public/images/pay_14.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#FFC041"/>
|
||||
<path d="M15.2007 9.39819C15.2007 10.1703 14.5746 10.7966 13.8018 10.7966C13.0306 10.7966 12.4039 10.1703 12.4039 9.39819C12.4039 8.62521 13.0306 8 13.8018 8C14.5746 8 15.2007 8.62521 15.2007 9.39819Z" fill="#4D493E"/>
|
||||
<path d="M11.5838 9.39819C11.5838 10.1703 10.9586 10.7966 10.1873 10.7966C9.41327 10.7966 8.78784 10.1703 8.78784 9.39819C8.78784 8.62521 9.41327 8 10.1873 8C10.9586 8 11.5838 8.62521 11.5838 9.39819Z" fill="#4D493E"/>
|
||||
<path d="M21.3859 11.5451H20.4079C20.0932 11.5451 19.9107 11.6481 19.7706 11.931L19.0563 13.3614L19.0135 13.4492L18.9712 13.3614L18.2571 11.931C18.1181 11.6481 17.936 11.5451 17.6203 11.5451H16.642C16.043 11.5362 15.898 11.9744 16.139 12.4624L17.8804 15.986C18.0694 16.3689 18.355 16.5392 18.782 16.5392H19.0135H19.2455C19.6725 16.5392 19.9577 16.3689 20.1471 15.986L21.889 12.4624C22.1301 11.9744 21.9854 11.5362 21.3859 11.5451Z" fill="white"/>
|
||||
<path d="M7.23837 14.296H7.15741H5.96583H5.24311V12.1871C5.24311 11.8336 4.95596 11.5449 4.60094 11.5449H4.5292H3.64282C3.28737 11.5449 3 11.8336 3 12.1871V12.2599V15.4188V15.5303C3 16.0887 3.45253 16.5391 4.00923 16.5391H5.96583H7.15741H7.22914C7.58329 16.5391 7.87067 16.2515 7.87067 15.8967V14.9379C7.87067 14.5879 7.58888 14.3022 7.23837 14.296Z" fill="white"/>
|
||||
<path d="M10.6637 11.5449H9.70641C9.35246 11.5449 9.06531 11.8334 9.06531 12.1869V15.8967C9.06531 16.2513 9.35246 16.5391 9.70641 16.5391H10.6654C11.02 16.5391 11.3073 16.2513 11.3073 15.8967V12.1869C11.3073 11.8334 11.02 11.5449 10.6637 11.5449Z" fill="white"/>
|
||||
<path d="M14.2805 11.5449H13.3239C12.9684 11.5449 12.6802 11.8334 12.6802 12.1869V15.8991C12.6817 16.2539 12.9695 16.5391 13.3239 16.5391H14.2805C14.6361 16.5391 14.9233 16.2513 14.9233 15.8967V12.1869C14.9233 11.8334 14.6348 11.5449 14.2805 11.5449Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
10
public/images/pay_15.svg
Normal file
|
After Width: | Height: | Size: 151 KiB |
10
public/images/pay_16.svg
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
5
public/images/pay_17.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#40A2E7"/>
|
||||
<path d="M6 7.51504C6 7.23251 6.23705 7 6.52565 7H8.14865C8.2877 7.0005 8.42091 7.05494 8.51919 7.15144C8.61747 7.24793 8.67283 7.37865 8.6732 7.51504V15.1133C8.67349 15.2497 8.7288 15.3804 8.82704 15.4768C8.92528 15.5733 9.05846 15.6277 9.19747 15.6281H13.688C13.8273 15.6284 13.9608 15.6828 14.0593 15.7794C14.1577 15.8761 14.2131 16.0071 14.2134 16.1437V17.2838C14.213 17.4203 14.1575 17.5512 14.0591 17.6477C13.9606 17.7442 13.8272 17.7986 13.688 17.7989H8.07973C7.79058 17.7989 7.38787 17.6347 7.18389 17.4347L6.37157 16.6371C6.16732 16.437 6 16.0418 6 15.7579V7.51504Z" fill="white"/>
|
||||
<path d="M16.5302 15.4156C16.6134 15.375 16.7077 15.3534 16.8058 15.3534C16.9032 15.3528 16.9995 15.374 17.0872 15.4156C17.1393 15.441 17.8513 15.7763 17.8571 15.779C17.9008 15.798 17.9377 15.8294 17.9631 15.869C17.9885 15.9087 18.0013 15.9549 17.9999 16.0017V17.3725C17.9999 17.4893 17.9208 17.6077 17.8119 17.6556L17.7485 17.6842C17.6052 17.7469 17.2675 17.8956 17.2336 17.9092C17.1289 17.954 16.9957 18 16.8083 18C16.6208 18 16.4861 17.9538 16.383 17.9092C16.3518 17.8962 16.0657 17.7702 15.9061 17.7004L15.8044 17.6556C15.6955 17.6077 15.6169 17.4893 15.6169 17.3725V16.0017C15.6157 15.9549 15.6286 15.9088 15.654 15.8692C15.6794 15.8296 15.7162 15.7982 15.7597 15.779C16.0168 15.6583 16.2736 15.5372 16.5302 15.4156Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
14
public/images/pay_18.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2216_17902)">
|
||||
<circle cx="12" cy="12" r="12" fill="#002023"/>
|
||||
<path d="M14.9217 9.76389C14.7113 9.76389 14.5415 9.59248 14.5415 9.38212V7.69922H14.4013C13.5302 7.69922 13.2061 7.84258 13.2061 8.63572V10.4931C13.2061 10.4973 13.2061 10.5009 13.2061 10.504V10.9123C13.2045 10.9263 13.2045 10.9388 13.2045 10.9528V13.5473C13.2045 13.8652 13.1438 14.1176 13.0175 14.3124C12.7791 14.6786 12.3101 14.8453 11.5575 14.8469C10.8048 14.8453 10.3343 14.6786 10.0974 14.3139C9.97118 14.1176 9.91041 13.8652 9.91041 13.5473V10.9528C9.91041 10.9388 9.90885 10.9263 9.90885 10.9123V10.504C9.90885 10.5009 9.90885 10.4973 9.90885 10.4931V8.63572C9.90885 7.84258 9.58474 7.69922 8.71368 7.69922H8.43943C7.56838 7.69922 7.24426 7.84258 7.24426 8.63572V10.504V12.4705V13.5473C7.24426 14.3373 7.4219 15.0074 7.76627 15.5465C8.43164 16.5905 9.71875 17.1484 11.5497 17.1484C11.5528 17.1484 11.5554 17.1484 11.5575 17.1484C11.5595 17.1484 11.5616 17.1484 11.5637 17.1484C13.3946 17.1484 14.6833 16.5905 15.3487 15.5465C15.693 15.0074 15.8707 14.3373 15.8707 13.5473V12.4705V10.504V9.76389H14.9217Z" fill="white"/>
|
||||
<path d="M18.7144 7.05191L17.485 7.05035C17.351 7.05035 17.2435 6.94283 17.2435 6.80883V5.56379C17.2435 5.42978 17.3525 5.32227 17.4866 5.32227H18.7144C18.8485 5.32227 18.9575 5.43134 18.9575 5.56535V6.80883C18.9575 6.94283 18.8485 7.05191 18.7144 7.05191Z" fill="white"/>
|
||||
<path d="M17.0767 5.3214H16.2431C16.1511 5.3214 16.0779 5.2466 16.0779 5.15622V4.31166C16.0779 4.21972 16.1527 4.14648 16.2431 4.14648H17.0767C17.1686 4.14648 17.2419 4.21972 17.2419 4.31166V5.15622C17.2419 5.2466 17.1686 5.3214 17.0767 5.3214Z" fill="white"/>
|
||||
<path d="M16.8524 7.04883H14.9233C14.7129 7.04883 14.5415 7.21868 14.5415 7.42904V7.69861H14.6755C15.5466 7.69861 15.8707 7.84197 15.8707 8.63512V9.76328H16.8508C17.0612 9.76328 17.2326 9.59343 17.2326 9.38307V7.4306C17.2326 7.22023 17.0627 7.04883 16.8524 7.04883Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_2216_17902">
|
||||
<rect width="24" height="24" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
11
public/images/pay_19.svg
Normal file
@@ -0,0 +1,11 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#08BF5B"/>
|
||||
<path d="M9.78592 6.3565H9.06805C9.01517 6.35652 8.96446 6.37796 8.92706 6.41612C8.88966 6.45427 8.86863 6.50602 8.86859 6.55998V11.1187C8.86861 11.1727 8.88963 11.2245 8.92703 11.2626C8.96443 11.3008 9.01516 11.3222 9.06805 11.3223H9.78592C9.8388 11.3222 9.8895 11.3008 9.92689 11.2626C9.96427 11.2244 9.98528 11.1727 9.9853 11.1187V6.55998C9.98526 6.50603 9.96424 6.4543 9.92686 6.41615C9.88948 6.37799 9.83879 6.35654 9.78592 6.3565Z" fill="black"/>
|
||||
<path d="M8.05106 10.1825H6.11671V6.55998C6.11667 6.50603 6.09565 6.4543 6.05827 6.41615C6.02089 6.37799 5.9702 6.35654 5.91733 6.3565H5.19938C5.14652 6.35654 5.09582 6.37799 5.05844 6.41615C5.02106 6.4543 5.00004 6.50603 5 6.55998V11.1187C5.00002 11.1727 5.02103 11.2244 5.05842 11.2626C5.0958 11.3008 5.1465 11.3222 5.19938 11.3223H8.05106C8.10394 11.3222 8.15464 11.3008 8.19203 11.2626C8.22941 11.2244 8.25042 11.1727 8.25044 11.1187V10.386C8.2504 10.3321 8.22938 10.2803 8.192 10.2422C8.15462 10.204 8.10393 10.1826 8.05106 10.1825Z" fill="black"/>
|
||||
<path d="M18.7198 7.49616C18.7726 7.49612 18.8233 7.47467 18.8607 7.43652C18.8981 7.39837 18.9191 7.34664 18.9191 7.29268V6.55998C18.9191 6.50603 18.8981 6.4543 18.8607 6.41615C18.8233 6.37799 18.7726 6.35654 18.7198 6.3565H15.8681C15.8152 6.35654 15.7645 6.37799 15.7271 6.41615C15.6898 6.4543 15.6687 6.50603 15.6687 6.55998V11.1187C15.6687 11.1727 15.6897 11.2244 15.7271 11.2626C15.7645 11.3008 15.8152 11.3222 15.8681 11.3223H18.7198C18.7726 11.3222 18.8233 11.3008 18.8607 11.2626C18.8981 11.2244 18.9191 11.1727 18.9191 11.1187V10.386C18.9191 10.3321 18.8981 10.2803 18.8607 10.2422C18.8233 10.204 18.7726 10.1826 18.7198 10.1825H16.7854V9.40918H18.7198C18.7726 9.40914 18.8233 9.38768 18.8607 9.34953C18.8981 9.31138 18.9191 9.25965 18.9191 9.2057V8.473C18.9191 8.41904 18.8981 8.36731 18.8607 8.32916C18.8233 8.29101 18.7726 8.26956 18.7198 8.26951H16.7854V7.49616H18.7198Z" fill="black"/>
|
||||
<path d="M14.7115 6.3565H13.9936C13.9407 6.35652 13.89 6.37796 13.8526 6.41612C13.8152 6.45427 13.7942 6.50602 13.7941 6.55998V9.19778L11.9154 6.4564C11.8622 6.37863 11.7828 6.3565 11.6946 6.3565C11.6835 6.35458 11.6721 6.3565 11.6604 6.3565H10.9425C10.8897 6.35654 10.839 6.37799 10.8016 6.41615C10.7642 6.4543 10.7432 6.50603 10.7432 6.55998V11.1187C10.7432 11.1727 10.7642 11.2244 10.8016 11.2626C10.839 11.3008 10.8897 11.3222 10.9425 11.3223H11.6604C11.7133 11.3222 11.764 11.3008 11.8014 11.2626C11.8388 11.2245 11.8599 11.1727 11.8599 11.1187V8.36372L13.8186 11.2219C13.8256 11.2322 13.8335 11.2415 13.8416 11.2503C13.8753 11.2908 13.9243 11.3183 13.9795 11.3223H14.0155H14.7115C14.7644 11.3222 14.8151 11.3008 14.8524 11.2626C14.8898 11.2244 14.9108 11.1727 14.9109 11.1187V6.55998C14.9108 6.50603 14.8898 6.4543 14.8524 6.41615C14.815 6.37799 14.7643 6.35654 14.7115 6.3565Z" fill="black"/>
|
||||
<path d="M18.5015 21H5.79222C5.66002 21 5.53324 20.9464 5.43976 20.851C5.34628 20.7556 5.29376 20.6262 5.29376 20.4913V12.7344C5.29378 12.5995 5.34631 12.4702 5.43978 12.3748C5.53326 12.2794 5.66003 12.2258 5.79222 12.2258H18.5015C18.6337 12.2258 18.7605 12.2794 18.854 12.3748C18.9475 12.4702 19 12.5995 19 12.7344V20.4913C19 20.6262 18.9475 20.7556 18.854 20.851C18.7605 20.9464 18.6337 21 18.5015 21Z" fill="#08BF5B"/>
|
||||
<path d="M8.46615 14.7254C8.46615 14.3586 8.2125 14.0782 7.8672 14.0782H7.12736V15.3726H7.8672C8.2125 15.3726 8.46615 15.0922 8.46615 14.7254ZM9.59351 14.7254C9.59351 15.6818 8.83957 16.4512 7.8672 16.4512H7.12736V17.8639C7.12736 17.9574 7.05309 18.0332 6.96144 18.0332H6.16602C6.07427 18.0332 6 17.9574 6 17.8639V13.169C6 13.0753 6.07427 12.9995 6.16602 12.9995H7.8672C8.83957 12.9995 9.59351 13.769 9.59351 14.7254Z" fill="white"/>
|
||||
<path d="M12.7229 16.2354C12.7229 15.6961 12.3706 15.3581 11.8844 15.3581C11.3982 15.3581 11.0459 15.6961 11.0459 16.2354C11.0459 16.7746 11.3982 17.1126 11.8844 17.1126C12.3706 17.1126 12.7229 16.7747 12.7229 16.2354ZM13.7798 14.5268V17.944C13.7798 17.9932 13.7407 18.0331 13.6924 18.0331H12.8102C12.762 18.0331 12.7229 17.9932 12.7229 17.944V17.6952C12.4903 17.9684 12.145 18.1338 11.673 18.1338C10.7499 18.1338 9.98895 17.3069 9.98895 16.2354C9.98895 15.1639 10.7499 14.3369 11.673 14.3369C12.145 14.3369 12.4903 14.5024 12.7229 14.7756V14.5268C12.7229 14.4775 12.762 14.4376 12.8102 14.4376H13.6924C13.7407 14.4376 13.7798 14.4775 13.7798 14.5268Z" fill="white"/>
|
||||
<path d="M17.2969 14.5318L16.4858 16.617L15.6471 14.5302C15.6361 14.503 15.6175 14.4797 15.5935 14.4633C15.5695 14.4469 15.5413 14.4381 15.5124 14.4381H14.6129C14.5508 14.4381 14.5085 14.5024 14.5321 14.5611L15.9314 18.0424L15.4214 19.3534C15.3987 19.412 15.4409 19.4756 15.5026 19.4756H16.4026C16.4317 19.4756 16.4602 19.4666 16.4843 19.4499C16.5084 19.4331 16.5271 19.4094 16.5378 19.3818L18.4134 14.5601C18.4361 14.5016 18.3938 14.4381 18.3322 14.4381H17.4323C17.4031 14.4381 17.3746 14.447 17.3505 14.4638C17.3264 14.4805 17.3077 14.5042 17.2969 14.5318Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
10
public/images/pay_20.svg
Normal file
|
After Width: | Height: | Size: 66 KiB |
3
public/images/radio_off.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="8.5" fill="white" stroke="#CCCCCC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 165 B |
4
public/images/radio_on.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="9" cy="9" r="8.5" fill="white" stroke="#4968BD"/>
|
||||
<circle cx="9" cy="9" r="4.5" fill="#4968BD"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 212 B |
BIN
public/images/sample_banner.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
3
public/images/select_arrow.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 1L7 7L1 1" stroke="black" stroke-width="2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 159 B |
9
public/images/two-states.svg
Normal file
@@ -0,0 +1,9 @@
|
||||
<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="60" height="60" fill="white"/>
|
||||
<path d="M49.745 25H11.255C10.0078 25 9 24.2587 9 23.3415V19.9966C9 17.7883 11.4313 16 14.4338 16H46.5662C49.5687 16 52 17.7883 52 19.9966V23.3415C52 24.2587 50.9922 25 49.745 25Z" fill="#86A2FF"/>
|
||||
<path d="M49.6772 24.7262H11.2977V47.1308C11.2977 49.6192 13.2945 51.6379 15.756 51.6379H45.2188C47.6804 51.6379 49.6772 49.6192 49.6772 47.1308V24.7262Z" fill="#AEC1FF"/>
|
||||
<path d="M17.1877 18.9387V15.0029C17.1877 13.6994 18.2343 12.6414 19.5237 12.6414C20.813 12.6414 21.8596 13.6994 21.8596 15.0029V18.9387C21.8596 20.2422 20.813 21.3002 19.5237 21.3002C18.2343 21.3002 17.1877 20.2422 17.1877 18.9387Z" fill="#AEC1FF"/>
|
||||
<path d="M39.1153 18.9387V15.0029C39.1153 13.6994 40.1619 12.6414 41.4512 12.6414C42.7406 12.6414 43.7872 13.6994 43.7872 15.0029V18.9387C43.7872 20.2422 42.7406 21.3002 41.4512 21.3002C40.1619 21.3002 39.1153 20.2422 39.1153 18.9387Z" fill="#AEC1FF"/>
|
||||
<path d="M25.7319 45.4972C23.7434 45.4972 21.688 44.4985 20.7377 43.0723C20.2228 42.2978 20.4237 41.244 21.1898 40.7235C21.9559 40.2029 22.9983 40.4061 23.5132 41.1848C23.735 41.5191 24.6644 42.1116 25.7277 42.1116C26.498 42.1116 27.1887 41.8069 27.578 41.299C27.9255 40.8462 28.005 40.2495 27.8166 39.5343C27.3938 37.9261 25.7989 37.6679 25.6147 37.6425C24.9909 37.5748 24.4676 37.1601 24.2416 36.5718C24.0155 35.9793 24.1453 35.3106 24.5597 34.8367L25.6481 33.5967H23.555C22.6299 33.5967 21.8805 32.8391 21.8805 31.9038C21.8805 30.9685 22.6299 30.211 23.555 30.211H29.3739C30.0312 30.211 30.6298 30.6003 30.9019 31.2098C31.174 31.8192 31.0652 32.5302 30.6256 33.0296L28.6497 35.281C29.6711 35.9624 30.6214 37.0416 31.0484 38.6667C31.5047 40.4018 31.2117 42.0693 30.2279 43.3643C29.2106 44.7016 27.5278 45.4972 25.7235 45.4972H25.7319Z" fill="white"/>
|
||||
<path d="M37.6627 45.2349C36.7375 45.2349 35.9882 44.4773 35.9882 43.542V34.5404C35.2347 35.0229 34.23 34.8197 33.7151 34.0664C33.1918 33.2962 33.3843 32.2424 34.1421 31.7134L36.7082 29.9232C37.2189 29.5677 37.8846 29.5254 38.4371 29.8174C38.9897 30.1094 39.333 30.685 39.333 31.3156V43.5378C39.333 44.4731 38.5837 45.2306 37.6585 45.2306L37.6627 45.2349Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
4
public/images/users-active.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.9" d="M18 7C18 10.3138 15.3138 13 12 13C8.6862 13 6 10.3138 6 7C6 3.6862 8.6862 1 12 1C15.3138 1 18 3.6862 18 7Z" fill="#3E6AFC"/>
|
||||
<path opacity="0.9" d="M11.9982 14C8.119 14 4.59179 15.481 1.96152 17.9038C-0.0179977 19.7231 1.26077 23 3.96022 23H20.0401C22.738 23 24.0184 19.7261 22.0388 17.9038C19.4044 15.4809 15.8771 14 12.0021 14H11.9982Z" fill="#3E6AFC"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 482 B |
4
public/images/users.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.9" d="M18 7C18 10.3138 15.3138 13 12 13C8.6862 13 6 10.3138 6 7C6 3.6862 8.6862 1 12 1C15.3138 1 18 3.6862 18 7Z" fill="#B3B8CE"/>
|
||||
<path opacity="0.9" d="M11.9982 14C8.119 14 4.59179 15.481 1.96152 17.9038C-0.0179967 19.7231 1.26077 23 3.96022 23H20.0401C22.738 23 24.0184 19.7261 22.0388 17.9038C19.4044 15.4809 15.8771 14 12.0021 14H11.9982Z" fill="#B3B8CE"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 482 B |
@@ -1 +1 @@
|
||||
export const IMAGE_ROOT = '/src/shared/ui/assets/images';
|
||||
export const IMAGE_ROOT = '/images';
|
||||