first commit
50
.gitignore
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
# Miscellaneous
|
||||
*.class
|
||||
*.log
|
||||
*.pyc
|
||||
*.swp
|
||||
.DS_Store
|
||||
.atom/
|
||||
.buildlog/
|
||||
.history
|
||||
.svn/
|
||||
|
||||
# IntelliJ related
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.idea/
|
||||
|
||||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
# is commented out by default.
|
||||
#.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
**/ios/Flutter/.last_build_id
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.packages
|
||||
.pub-cache/
|
||||
.pub/
|
||||
/build/
|
||||
|
||||
# Web related
|
||||
lib/generated_plugin_registrant.dart
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
|
||||
# Obfuscation related
|
||||
app.*.map.json
|
||||
|
||||
# Android Studio will place build artifacts here
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
/android/app/.cxx**
|
||||
|
||||
# FVM Version Cache
|
||||
.fvm/
|
||||
45
.metadata
Normal file
@@ -0,0 +1,45 @@
|
||||
# This file tracks properties of this Flutter project.
|
||||
# Used by Flutter tool to assess capabilities and perform upgrades etc.
|
||||
#
|
||||
# This file should be version controlled and should not be manually edited.
|
||||
|
||||
version:
|
||||
revision: "2663184aa79047d0a33a14a3b607954f8fdd8730"
|
||||
channel: "stable"
|
||||
|
||||
project_type: app
|
||||
|
||||
# Tracks metadata for the flutter migrate command
|
||||
migration:
|
||||
platforms:
|
||||
- platform: root
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: android
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: ios
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: linux
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: macos
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: web
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
- platform: windows
|
||||
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
|
||||
|
||||
# User provided section
|
||||
|
||||
# List of Local paths (relative to this file) that should be
|
||||
# ignored by the migrate tool.
|
||||
#
|
||||
# Files that are not part of the templates will be ignored by default.
|
||||
unmanaged_files:
|
||||
- 'lib/main.dart'
|
||||
- 'ios/Runner.xcodeproj/project.pbxproj'
|
||||
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"dart.flutterSdkPath": ".fvm/versions/3.38.5"
|
||||
}
|
||||
16
README.md
Normal file
@@ -0,0 +1,16 @@
|
||||
f# mobile_pos
|
||||
|
||||
A new Flutter project.
|
||||
|
||||
## Getting Started
|
||||
|
||||
This project is a starting point for a Flutter application.
|
||||
|
||||
A few resources to get you started if this is your first Flutter project:
|
||||
|
||||
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
|
||||
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
|
||||
|
||||
For help getting started with Flutter, view our
|
||||
[online documentation](https://flutter.dev/docs), which offers tutorials,
|
||||
samples, guidance on mobile development, and a full API reference.
|
||||
10
analysis_options.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
include: package:flutter_lints/flutter.yaml
|
||||
|
||||
formatter:
|
||||
page_width: 120
|
||||
trailing_commas: preserve
|
||||
|
||||
analyzer:
|
||||
errors:
|
||||
no_leading_underscores_for_local_identifiers: ignore
|
||||
unused_result: ignore
|
||||
13
android/.gitignore
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
gradle-wrapper.jar
|
||||
/.gradle
|
||||
/captures/
|
||||
/gradlew
|
||||
/gradlew.bat
|
||||
/local.properties
|
||||
GeneratedPluginRegistrant.java
|
||||
|
||||
# Remember to never publicly share your keystore.
|
||||
# See https://flutter.dev/to/reference-keystore
|
||||
key.properties
|
||||
**/*.keystore
|
||||
**/*.jks
|
||||
58
android/app/build.gradle
Normal file
@@ -0,0 +1,58 @@
|
||||
plugins {
|
||||
id "com.android.application"
|
||||
id "kotlin-android"
|
||||
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
|
||||
id "dev.flutter.flutter-gradle-plugin"
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.acnoo.pospro"
|
||||
compileSdk = 36
|
||||
ndkVersion = "27.0.12077973"
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = "17"
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId = "com.acnoo.pospro"
|
||||
// You can update the following values to match your application needs.
|
||||
// For more information, see: https://flutter.dev/to/review-gradle-config.
|
||||
minSdk = 23
|
||||
targetSdk = 35
|
||||
versionCode = flutter.versionCode
|
||||
versionName = flutter.versionName
|
||||
}
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias 'upload'
|
||||
keyPassword '123456789'
|
||||
storeFile file('pospro.jks')
|
||||
storePassword '123456789'
|
||||
}
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
// TODO: Add your own signing config for the release build.
|
||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||
signingConfig signingConfigs.release
|
||||
minifyEnabled false
|
||||
shrinkResources false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
flutter {
|
||||
source = "../.."
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'androidx.window:window:1.0.0'
|
||||
implementation 'androidx.window:window-java:1.0.0'
|
||||
}
|
||||
7
android/app/src/debug/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||
58
android/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,58 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation"/>
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
||||
|
||||
|
||||
<application
|
||||
android:label="POSPro"
|
||||
android:name="${applicationName}"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:enableOnBackInvokedCallback="true">
|
||||
|
||||
|
||||
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
android:launchMode="singleTop"
|
||||
android:taskAffinity=""
|
||||
android:theme="@style/LaunchTheme"
|
||||
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
||||
android:hardwareAccelerated="true"
|
||||
android:windowSoftInputMode="adjustResize">
|
||||
<!-- Specifies an Android theme to apply to this Activity as soon as
|
||||
the Android process has started. This theme is visible to the user
|
||||
while the Flutter UI initializes. After that, this theme continues
|
||||
to determine the Window background behind the Flutter UI. -->
|
||||
<meta-data
|
||||
android:name="io.flutter.embedding.android.NormalTheme"
|
||||
android:resource="@style/NormalTheme"
|
||||
/>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
<meta-data
|
||||
android:name="flutterEmbedding"
|
||||
android:value="2" />
|
||||
|
||||
</application>
|
||||
<!-- Required to query activities that can process text, see:
|
||||
https://developer.android.com/training/package-visibility and
|
||||
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
|
||||
|
||||
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
|
||||
<queries>
|
||||
<intent>
|
||||
<action android:name="android.intent.action.PROCESS_TEXT"/>
|
||||
<data android:mimeType="text/plain"/>
|
||||
</intent>
|
||||
</queries>
|
||||
</manifest>
|
||||
BIN
android/app/src/main/ic_launcher-playstore.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,5 @@
|
||||
package com.acnoo.pospro
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity: FlutterActivity()
|
||||
BIN
android/app/src/main/playstore-icon.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
12
android/app/src/main/res/drawable-v21/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Modify this file to customize your launch splash screen -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="?android:colorBackground" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
12
android/app/src/main/res/drawable/launch_background.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Modify this file to customize your launch splash screen -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@android:color/white" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
||||
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
android/app/src/main/res/mipmap-ldpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
BIN
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
|
After Width: | Height: | Size: 31 KiB |
BIN
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
After Width: | Height: | Size: 42 KiB |
BIN
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
18
android/app/src/main/res/values-night/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
the Flutter engine draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="ic_launcher_background">#c42424</color>
|
||||
</resources>
|
||||
18
android/app/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
the Flutter engine draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
|
||||
<item name="android:windowBackground">?android:colorBackground</item>
|
||||
</style>
|
||||
</resources>
|
||||
7
android/app/src/profile/AndroidManifest.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<!-- The INTERNET permission is required for development. Specifically,
|
||||
the Flutter tool needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
||||
37
android/build.gradle
Normal file
@@ -0,0 +1,37 @@
|
||||
allprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.buildDir = "../build"
|
||||
|
||||
subprojects {
|
||||
// fix for verifyReleaseResources
|
||||
// ============
|
||||
afterEvaluate { project ->
|
||||
if (project.plugins.hasPlugin("com.android.application") ||
|
||||
project.plugins.hasPlugin("com.android.library")) {
|
||||
project.android {
|
||||
compileSdkVersion 36
|
||||
buildToolsVersion "36.0.0"
|
||||
}
|
||||
}
|
||||
if (project.hasProperty("android")) {
|
||||
project.android {
|
||||
if (namespace == null) {
|
||||
namespace project.group
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// ============
|
||||
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
||||
project.evaluationDependsOn(":app")
|
||||
}
|
||||
|
||||
tasks.register("clean", Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
|
||||
4
android/gradle.properties
Normal file
@@ -0,0 +1,4 @@
|
||||
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
|
||||
android.useAndroidX=true
|
||||
#kotlin.jvm.target.validation.mode=IGNORE
|
||||
android.enableJetifier=true
|
||||
5
android/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
|
||||
25
android/settings.gradle
Normal file
@@ -0,0 +1,25 @@
|
||||
pluginManagement {
|
||||
def flutterSdkPath = {
|
||||
def properties = new Properties()
|
||||
file("local.properties").withInputStream { properties.load(it) }
|
||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||
return flutterSdkPath
|
||||
}()
|
||||
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version "8.7.0" apply false
|
||||
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
|
||||
}
|
||||
|
||||
include ":app"
|
||||
7
assets/account_delete.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#FEF0F1"/>
|
||||
<path d="M24.25 12.5835L23.7336 20.9377C23.6016 23.0722 23.5357 24.1394 23.0007 24.9067C22.7361 25.2861 22.3956 25.6062 22.0006 25.8468C21.2017 26.3335 20.1325 26.3335 17.9939 26.3335C15.8526 26.3335 14.7819 26.3335 13.9825 25.8459C13.5873 25.6049 13.2467 25.2842 12.9822 24.9042C12.4474 24.1357 12.3829 23.0669 12.2538 20.9295L11.75 12.5835" stroke="#C52127" stroke-width="1.25" stroke-linecap="round"/>
|
||||
<path d="M15.5 17.7793H20.5" stroke="#C52127" stroke-width="1.25" stroke-linecap="round"/>
|
||||
<path d="M16.75 21.0454H19.25" stroke="#C52127" stroke-width="1.25" stroke-linecap="round"/>
|
||||
<path d="M10.5 12.5832H25.5M21.3796 12.5832L20.8107 11.4096C20.4328 10.6301 20.2438 10.2403 19.9179 9.99718C19.8457 9.94325 19.7691 9.89529 19.689 9.85375C19.3281 9.6665 18.8949 9.6665 18.0286 9.6665C17.1405 9.6665 16.6965 9.6665 16.3296 9.8616C16.2483 9.90485 16.1707 9.95475 16.0976 10.0108C15.7679 10.2638 15.5837 10.6678 15.2153 11.4759L14.7106 12.5832" stroke="#C52127" stroke-width="1.25" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
19
assets/bank.svg
Normal file
@@ -0,0 +1,19 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.1875 6.56183L20.1041 10.6319C20.4052 10.8811 20.2288 11.3704 19.8382 11.3704H4.89055C4.49986 11.3704 4.32354 10.8811 4.62464 10.6319L9.54117 6.56183" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M15.476 5.83133H17.6942C17.7202 5.83133 17.746 5.83645 17.7701 5.84642C17.7942 5.85639 17.816 5.87101 17.8345 5.88943C17.8529 5.90786 17.8675 5.92974 17.8775 5.95381C17.8874 5.97789 17.8925 6.00369 17.8925 6.02974V6.85694C17.8925 7.02753 18.0881 7.12449 18.2239 7.0214L20.9182 4.97754C21.027 4.89491 21.027 4.73127 20.9182 4.64863L18.2239 2.60519C18.0881 2.50169 17.8925 2.59905 17.8925 2.76965V3.59643C17.8925 3.70607 17.8038 3.79525 17.6942 3.79525H15.3242" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9.40999 3.79525H7.04005C6.98738 3.79517 6.93691 3.77418 6.89971 3.7369C6.86252 3.69962 6.84164 3.64909 6.84168 3.59643V2.76965C6.84168 2.59905 6.64609 2.50169 6.51031 2.60519L3.81599 4.64863C3.70717 4.73127 3.70717 4.89491 3.81599 4.97754L6.51031 7.0214C6.64609 7.12449 6.84168 7.02753 6.84168 6.85694V6.02974C6.84168 5.9201 6.93045 5.83133 7.04005 5.83133H9.25821" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.1683 3.94967C13.1683 3.94967 12.6758 3.53566 12.095 3.71063C11.5617 3.87129 11.4871 4.48624 11.8729 4.73775C11.8729 4.73775 12.2515 4.90667 12.6715 5.06155C13.6823 5.43441 13.2468 6.41235 12.4331 6.41235C12.0256 6.41235 11.6836 6.23391 11.4766 6.00547" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.3711 6.91235V6.41109" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.3711 3.66772V3.1674" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M15.5736 5.04012C15.5736 6.81114 14.1379 8.24683 12.3669 8.24683C10.5958 8.24683 9.16016 6.81114 9.16016 5.04012C9.16016 3.26909 10.5958 1.8334 12.3669 1.8334C14.1379 1.8334 15.5736 3.26909 15.5736 5.04012Z" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M5.66406 11.3703V12.7801C5.66406 12.9573 5.80766 13.1008 5.98475 13.1008H18.7478C18.8328 13.1008 18.9144 13.067 18.9745 13.0069C19.0347 12.9468 19.0685 12.8652 19.0685 12.7801V11.3703" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M19.0685 20.4783V19.0685C19.0685 18.8913 18.9249 18.7478 18.7478 18.7478H5.98475C5.8997 18.7478 5.81813 18.7816 5.75799 18.8417C5.69785 18.9019 5.66406 18.9834 5.66406 19.0685V20.4783" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M7.88314 22.1653H4.74753C4.67463 22.1653 4.60471 22.1363 4.55316 22.0848C4.50162 22.0332 4.47266 21.9633 4.47266 21.8904V20.7533C4.47266 20.6804 4.50162 20.6105 4.55316 20.559C4.60471 20.5074 4.67463 20.4785 4.74753 20.4785H19.9812C20.0173 20.4785 20.053 20.4856 20.0864 20.4994C20.1197 20.5132 20.15 20.5334 20.1756 20.559C20.2011 20.5845 20.2213 20.6148 20.2351 20.6481C20.2489 20.6815 20.256 20.7172 20.256 20.7533V21.8904C20.256 21.9265 20.2489 21.9622 20.2351 21.9956C20.2213 22.0289 20.2011 22.0592 20.1756 22.0848C20.15 22.1103 20.1197 22.1305 20.0864 22.1444C20.053 22.1582 20.0173 22.1653 19.9812 22.1653H9.31498" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M6.43359 18.7478V13.1007" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M8.60156 13.1007V18.7478" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M11.2812 18.7478V13.1007" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.4531 13.1007V18.7478" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M18.3047 13.1009V14.2786" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.1328 18.7478V13.1007" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M18.3047 15.7103V18.7478" stroke="#4B5563" stroke-width="0.8" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
21
assets/bank_adjust.svg
Normal file
@@ -0,0 +1,21 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_40004972_21555" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="1" y="1" width="22" height="22">
|
||||
<path d="M22.4004 22.4004V1.59961H1.59961V22.4004H22.4004Z" fill="white" stroke="white" stroke-width="1.2"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_40004972_21555)">
|
||||
<path d="M6.84377 6.80076H4.26563L1.64453 11.957H22.3555L19.7344 6.80076" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12 11.957C9.15689 11.957 6.84375 9.64389 6.84375 6.80076C6.84375 3.95764 9.15689 1.6445 12 1.6445C14.8431 1.6445 17.1563 3.95764 17.1563 6.80076C17.1563 9.64389 14.8431 11.957 12 11.957Z" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.9115 4.60021C12.6782 4.36693 12.356 4.22264 12 4.22264C11.2881 4.22264 10.7109 4.7998 10.7109 5.51171C10.7109 6.22366 11.2881 6.80077 12 6.80077C12.7119 6.80077 13.2891 7.37789 13.2891 8.08984C13.2891 8.80175 12.712 9.37891 12 9.37891C11.644 9.37891 11.3218 9.23462 11.0885 9.00134" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12 10.668V9.3789" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12 2.93359V4.22266" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M2.97656 22.3555V19.7773H21.0235V22.3555" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.1562 6.80078H19.7344" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.26562 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M6.84375 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M10.7109 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M13.2891 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.1562 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M19.7344 11.957V19.7773" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M1.64453 22.3555H22.3555" stroke="#4B5563" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
4
assets/bank_cash.svg
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
4
assets/barcode.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#DAC9FF"/>
|
||||
<path d="M11.3333 14.2H13V23.8H11.3333V14.2ZM13.8333 14.2H14.6667V23.8H13.8333V14.2ZM15.5 14.2H18V23.8H15.5V14.2ZM18.8333 14.2H19.6667V23.8H18.8333V14.2ZM21.3333 14.2H23V23.8H21.3333V14.2ZM23.8333 14.2H24.6667V23.8H23.8333V14.2ZM9.66667 12.6V15.8H8V12.6C8 12.1757 8.17559 11.7687 8.48816 11.4686C8.80072 11.1686 9.22464 11 9.66667 11H13V12.6H9.66667ZM26.3333 11C26.7754 11 27.1993 11.1686 27.5118 11.4686C27.8244 11.7687 28 12.1757 28 12.6V15.8H26.3333V12.6H23V11H26.3333ZM9.66667 22.2V25.4H13V27H9.66667C9.22464 27 8.80072 26.8314 8.48816 26.5314C8.17559 26.2313 8 25.8243 8 25.4V22.2H9.66667ZM26.3333 25.4V22.2H28V25.4C28 25.8243 27.8244 26.2313 27.5118 26.5314C27.1993 26.8314 26.7754 27 26.3333 27H23V25.4H26.3333Z" fill="#5D1BEA"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 888 B |
5
assets/branch.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="40" height="40" rx="20" fill="#2CB9B0" fill-opacity="0.15"/>
|
||||
<path d="M13.2375 8.82031C12.5854 8.82109 11.9478 9.01283 11.4035 9.37186C10.8591 9.73089 10.4318 10.2415 10.1744 10.8406L8.34581 15.1051C8.29853 15.2116 8.27593 15.3274 8.2797 15.4439V16.5883C8.2797 17.7542 8.96801 18.7615 9.95295 19.249V28.9828C9.95295 30.6163 11.294 31.9574 12.9276 31.9574H22.3267C22.5459 31.9574 22.756 31.8704 22.911 31.7154C23.066 31.5604 23.153 31.3503 23.153 31.1311C23.153 30.912 23.066 30.7018 22.911 30.5468C22.756 30.3919 22.5459 30.3048 22.3267 30.3048H12.9276C12.1806 30.3048 11.6055 29.7297 11.6055 28.9828V19.5258C12.2901 19.4448 12.9252 19.1281 13.4019 18.6301C13.6781 18.9235 14.0112 19.1575 14.3809 19.3179C14.7505 19.4783 15.149 19.5617 15.5519 19.563C15.9546 19.5618 16.3529 19.4784 16.7223 19.318C17.0917 19.1576 17.4245 18.9235 17.7003 18.6301C18.2432 19.2011 19.0042 19.563 19.8478 19.563C20.6915 19.563 21.4525 19.2011 21.9962 18.6301C22.272 18.9235 22.6048 19.1576 22.9742 19.318C23.3436 19.4784 23.7419 19.5618 24.1446 19.563C24.5473 19.5615 24.9454 19.478 25.3148 19.3176C25.6841 19.1572 26.0169 18.9233 26.2929 18.6301C26.5688 18.9235 26.9016 19.1576 27.271 19.318C27.6404 19.4784 28.0386 19.5618 28.4413 19.563C30.0749 19.563 31.416 18.2219 31.416 16.5883V15.6075C31.4529 15.4385 31.4358 15.2622 31.3672 15.1035L29.5254 10.8365C29.2663 10.2383 28.838 9.72884 28.2932 9.3708C27.7485 9.01275 27.1109 8.8217 26.459 8.82114L13.2375 8.82031ZM9.93229 16.257H12.5764V16.5875C12.5764 17.3345 12.0005 17.9096 11.2544 17.9096C10.5082 17.9096 9.93229 17.3345 9.93229 16.5875V16.257ZM14.229 16.257H16.8732V16.5875C16.8732 17.3345 16.2989 17.9096 15.5511 17.9096C15.3767 17.9122 15.2036 17.8799 15.042 17.8144C14.8804 17.7489 14.7336 17.6516 14.6103 17.5283C14.487 17.405 14.3897 17.2582 14.3242 17.0966C14.2587 16.935 14.2264 16.7618 14.229 16.5875V16.257ZM18.5258 16.257H21.1699V16.5875C21.1699 17.3345 20.5948 17.9096 19.8478 17.9096C19.1009 17.9096 18.5258 17.3345 18.5258 16.5875V16.257ZM22.8225 16.257H25.4667V16.5875C25.4667 17.3336 24.8907 17.9096 24.1446 17.9096C23.3984 17.9096 22.8225 17.3345 22.8225 16.5875V16.257ZM27.1192 16.257H29.7634V16.5875C29.7634 17.3345 29.1883 17.9096 28.4413 17.9096C27.6952 17.9096 27.1192 17.3345 27.1192 16.5875V16.257Z" fill="#2CB9B0"/>
|
||||
<path d="M26.9622 20.813C24.5023 20.813 22.5068 22.8622 22.5068 25.346C22.5068 29.2817 26.4945 31.8548 26.4945 31.8548C26.6323 31.9495 26.7955 32.0002 26.9626 32.0002C27.1298 32.0002 27.293 31.9495 27.4307 31.8548C27.4307 31.8548 31.4168 29.2817 31.4168 25.346C31.4168 22.8614 29.4221 20.813 26.9622 20.813ZM26.9292 24.143C26.9402 24.1428 26.9512 24.1428 26.9622 24.143C27.1168 24.143 27.2699 24.1741 27.4127 24.2346C27.5555 24.295 27.6853 24.3837 27.7945 24.4954C27.9038 24.6071 27.9905 24.7397 28.0495 24.8857C28.1086 25.0317 28.139 25.1881 28.1389 25.346C28.1389 25.5039 28.1084 25.6603 28.0493 25.8061C27.9902 25.952 27.9035 26.0845 27.7942 26.1962C27.685 26.3078 27.5553 26.3964 27.4125 26.4568C27.2698 26.5172 27.1167 26.5483 26.9622 26.5483C26.6503 26.5481 26.3512 26.4213 26.1307 26.1959C25.9103 25.9704 25.7864 25.6648 25.7864 25.346C25.7863 25.0332 25.9055 24.7327 26.1187 24.5082C26.3319 24.2837 26.6223 24.153 26.9284 24.1438L26.9292 24.143ZM14.0646 22.0409C13.8454 22.0409 13.6353 22.1279 13.4803 22.2829C13.3253 22.4378 13.2383 22.648 13.2383 22.8672V26.9986C13.2383 27.2178 13.3253 27.428 13.4803 27.5829C13.6353 27.7379 13.8454 27.8249 14.0646 27.8249H18.981C19.2002 27.8249 19.4104 27.7379 19.5653 27.5829C19.7203 27.428 19.8073 27.2178 19.8073 26.9986V22.8672C19.8073 22.648 19.7203 22.4378 19.5653 22.2829C19.4104 22.1279 19.2002 22.0409 18.981 22.0409H14.0646Z" fill="#2CB9B0"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
4
assets/branch_icon.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.23748 0.820312C4.58539 0.82109 3.94781 1.01283 3.40346 1.37186C2.85912 1.73089 2.43184 2.24149 2.1744 2.84061L0.345805 7.10512C0.298531 7.21162 0.275933 7.32743 0.279701 7.4439V8.58832C0.279701 9.75422 0.968006 10.7615 1.95295 11.249V20.9828C1.95295 22.6163 3.29403 23.9574 4.92762 23.9574H14.3267C14.5459 23.9574 14.756 23.8704 14.911 23.7154C15.066 23.5604 15.153 23.3503 15.153 23.1311C15.153 22.912 15.066 22.7018 14.911 22.5468C14.756 22.3919 14.5459 22.3048 14.3267 22.3048H4.92762C4.18064 22.3048 3.60554 21.7297 3.60554 20.9828V11.5258C4.29014 11.4448 4.92523 11.1281 5.40191 10.6301C5.6781 10.9235 6.0112 11.1575 6.38085 11.3179C6.75051 11.4783 7.14898 11.5617 7.55193 11.563C7.95465 11.5618 8.35289 11.4784 8.72229 11.318C9.09169 11.1576 9.42448 10.9235 9.7003 10.6301C10.2432 11.2011 11.0042 11.563 11.8478 11.563C12.6915 11.563 13.4525 11.2011 13.9962 10.6301C14.272 10.9235 14.6048 11.1576 14.9742 11.318C15.3436 11.4784 15.7419 11.5618 16.1446 11.563C16.5473 11.5615 16.9454 11.478 17.3148 11.3176C17.6841 11.1572 18.0169 10.9233 18.2929 10.6301C18.5688 10.9235 18.9016 11.1576 19.271 11.318C19.6404 11.4784 20.0386 11.5618 20.4413 11.563C22.0749 11.563 23.416 10.2219 23.416 8.58832V7.60751C23.4529 7.43853 23.4358 7.26224 23.3672 7.10347L21.5254 2.83647C21.2663 2.23828 20.838 1.72884 20.2932 1.3708C19.7485 1.01275 19.1109 0.821701 18.459 0.821139L5.23748 0.820312ZM1.93229 8.25697H4.57644V8.58749C4.57644 9.33446 4.00051 9.90957 3.25437 9.90957C2.50822 9.90957 1.93229 9.33446 1.93229 8.58749V8.25697ZM6.22903 8.25697H8.87318V8.58749C8.87318 9.33446 8.2989 9.90957 7.5511 9.90957C7.37675 9.91224 7.20363 9.87987 7.04202 9.81438C6.88041 9.74889 6.7336 9.6516 6.6103 9.5283C6.48699 9.405 6.38971 9.25819 6.32422 9.09658C6.25872 8.93497 6.22635 8.76185 6.22903 8.58749V8.25697ZM10.5258 8.25697H13.1699V8.58749C13.1699 9.33446 12.5948 9.90957 11.8478 9.90957C11.1009 9.90957 10.5258 9.33446 10.5258 8.58749V8.25697ZM14.8225 8.25697H17.4667V8.58749C17.4667 9.33364 16.8907 9.90957 16.1446 9.90957C15.3984 9.90957 14.8225 9.33446 14.8225 8.58749V8.25697ZM19.1192 8.25697H21.7634V8.58749C21.7634 9.33446 21.1883 9.90957 20.4413 9.90957C19.6952 9.90957 19.1192 9.33446 19.1192 8.58749V8.25697Z" fill="#C52127"/>
|
||||
<path d="M18.9622 12.813C16.5023 12.813 14.5068 14.8622 14.5068 17.346C14.5068 21.2817 18.4945 23.8548 18.4945 23.8548C18.6323 23.9495 18.7955 24.0002 18.9626 24.0002C19.1298 24.0002 19.293 23.9495 19.4307 23.8548C19.4307 23.8548 23.4168 21.2817 23.4168 17.346C23.4168 14.8614 21.4221 12.813 18.9622 12.813ZM18.9292 16.143C18.9402 16.1428 18.9512 16.1428 18.9622 16.143C19.1168 16.143 19.2699 16.1741 19.4127 16.2346C19.5555 16.295 19.6853 16.3837 19.7945 16.4954C19.9038 16.6071 19.9905 16.7397 20.0495 16.8857C20.1086 17.0317 20.139 17.1881 20.1389 17.346C20.1389 17.5039 20.1084 17.6603 20.0493 17.8061C19.9902 17.952 19.9035 18.0845 19.7942 18.1962C19.685 18.3078 19.5553 18.3964 19.4125 18.4568C19.2698 18.5172 19.1167 18.5483 18.9622 18.5483C18.6503 18.5481 18.3512 18.4213 18.1307 18.1959C17.9103 17.9704 17.7864 17.6648 17.7864 17.346C17.7863 17.0332 17.9055 16.7327 18.1187 16.5082C18.3319 16.2837 18.6223 16.153 18.9284 16.1438L18.9292 16.143ZM6.06458 14.0409C5.84543 14.0409 5.63526 14.1279 5.4803 14.2829C5.32534 14.4378 5.23828 14.648 5.23828 14.8672V18.9986C5.23828 19.2178 5.32534 19.428 5.4803 19.5829C5.63526 19.7379 5.84543 19.8249 6.06458 19.8249H10.981C11.2002 19.8249 11.4104 19.7379 11.5653 19.5829C11.7203 19.428 11.8073 19.2178 11.8073 18.9986V14.8672C11.8073 14.648 11.7203 14.4378 11.5653 14.2829C11.4104 14.1279 11.2002 14.0409 10.981 14.0409H6.06458Z" fill="#C52127"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
8
assets/branch_list.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#30B0C7" fill-opacity="0.15"/>
|
||||
<path d="M17.084 12.0415H26.2507" stroke="#30B0C7" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M11.95 22.4847C12.9278 23.1396 13.4167 23.467 13.4167 23.9582C13.4167 24.4493 12.9278 24.7768 11.95 25.4316C10.9722 26.0865 10.4833 26.4138 10.1167 26.1684C9.75 25.9228 9.75 25.2679 9.75 23.9582C9.75 22.6484 9.75 21.9936 10.1167 21.748C10.4833 21.5025 10.9722 21.8299 11.95 22.4847Z" stroke="#30B0C7" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M11.95 10.5682C12.9278 11.2231 13.4167 11.5505 13.4167 12.0417C13.4167 12.5328 12.9278 12.8602 11.95 13.5151C10.9722 14.1699 10.4833 14.4974 10.1167 14.2518C9.75 14.0062 9.75 13.3514 9.75 12.0417C9.75 10.732 9.75 10.0771 10.1167 9.83154C10.4833 9.58596 10.9722 9.91339 11.95 10.5682Z" stroke="#30B0C7" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M17.084 18H26.2507" stroke="#30B0C7" stroke-width="1.5" stroke-linecap="round"/>
|
||||
<path d="M17.084 23.9585H26.2507" stroke="#30B0C7" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
6
assets/cCart.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="20" height="20" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M26 8H8V10.5L9.5 18.5L20.5 19.5L23.5 18.5L25 15.5L26 8Z" fill="#C52127"/>
|
||||
<path d="M11.375 25.375C11.8582 25.375 12.25 24.9832 12.25 24.5C12.25 24.0168 11.8582 23.625 11.375 23.625C10.8918 23.625 10.5 24.0168 10.5 24.5C10.5 24.9832 10.8918 25.375 11.375 25.375Z" stroke="#C52127" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M21.875 25.375C22.3582 25.375 22.75 24.9832 22.75 24.5C22.75 24.0168 22.3582 23.625 21.875 23.625C21.3918 23.625 21 24.0168 21 24.5C21 24.9832 21.3918 25.375 21.875 25.375Z" stroke="#C52127" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M1.75 2.625H6.20455L9.18909 17.4652C9.29093 17.9755 9.56985 18.4338 9.97704 18.7601C10.3842 19.0863 10.8937 19.2596 11.4164 19.2496H22.2409C22.7635 19.2596 23.273 19.0863 23.6802 18.7601C24.0874 18.4338 24.3663 17.9755 24.4682 17.4652L26.25 8.16653H7.31818" stroke="#C52127" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
5
assets/cFile.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4.66663 18.6668V9.3335C4.66663 6.03366 4.66663 4.38375 5.69175 3.35862C6.71688 2.3335 8.36679 2.3335 11.6666 2.3335H16.5335C17.0103 2.3335 17.2488 2.3335 17.4632 2.4223C17.6775 2.51111 17.8462 2.67972 18.1834 3.01692L22.6499 7.48341C22.987 7.82061 23.1557 7.98922 23.2445 8.20361C23.3333 8.41801 23.3333 8.65646 23.3333 9.13333V18.6668C23.3333 21.9666 23.3333 23.6165 22.3081 24.6417C21.283 25.6668 19.6331 25.6668 16.3333 25.6668H11.6666C8.36679 25.6668 6.71688 25.6668 5.69175 24.6417C4.66663 23.6165 4.66663 21.9666 4.66663 18.6668Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M17.5 2.9165V4.6665C17.5 6.31642 17.5 7.14138 18.0125 7.65394C18.5251 8.1665 19.3501 8.1665 21 8.1665H22.75" stroke="#FEF0F1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9.33337 12.8335H18.6667M9.33337 16.3335H18.6667M9.33337 19.8335H14.1993" stroke="#FEF0F1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
4
assets/cHome.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.17272 18.5435C2.7034 15.4893 2.46874 13.9624 3.04613 12.6086C3.62352 11.2549 4.90453 10.3287 7.46654 8.47625L9.38076 7.09221C12.5679 4.78782 14.1615 3.63562 16.0001 3.63562C17.8389 3.63562 19.4324 4.78782 22.6195 7.09221L24.5338 8.47625C27.0958 10.3287 28.3768 11.2549 28.9542 12.6086C29.5316 13.9624 29.2969 15.4893 28.8275 18.5435L28.4273 21.1478C27.7621 25.4771 27.4293 27.6419 25.8767 28.9333C24.324 30.2248 22.0541 30.2248 17.5141 30.2248H14.4861C9.94624 30.2248 7.67629 30.2248 6.1236 28.9333C4.57091 27.6419 4.23826 25.4771 3.57294 21.1478L3.17272 18.5435Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linejoin="round"/>
|
||||
<path d="M19.9884 23.5775C18.9255 24.405 17.5293 24.907 16.0001 24.907C14.4709 24.907 13.0747 24.405 12.0117 23.5775" stroke="#FEF0F1" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 936 B |
5
assets/cPos.svg
Normal file
|
After Width: | Height: | Size: 11 KiB |
4
assets/cSetting.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M25.6668 16.2946V11.7052C22.334 11.7052 20.1668 8.08532 21.8542 5.21123L17.8127 2.91662C16.1046 5.82623 11.8976 5.82611 10.1894 2.9165L6.14795 5.21112C7.83533 8.08525 5.66635 11.7052 2.3335 11.7052V16.2946C5.66629 16.2946 7.83346 19.9145 6.1461 22.7886L10.1876 25.0832C11.8965 22.1721 16.1055 22.172 17.8146 25.0831L21.856 22.7885C20.1688 19.9144 22.3341 16.2946 25.6668 16.2946Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9.9165 19.2502C10.7316 17.8412 12.255 16.8931 13.9998 16.8931C15.7447 16.8931 17.2681 17.8412 18.0832 19.2502M16.3332 11.6668C16.3332 12.9555 15.2885 14.0002 13.9998 14.0002C12.7113 14.0002 11.6665 12.9555 11.6665 11.6668C11.6665 10.3782 12.7113 9.3335 13.9998 9.3335C15.2885 9.3335 16.3332 10.3782 16.3332 11.6668Z" stroke="#FEF0F1" stroke-width="1.5" stroke-linecap="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 981 B |
12
assets/cart.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1965_1201)">
|
||||
<path d="M9.81982 21.75C10.234 21.75 10.5698 21.4142 10.5698 21C10.5698 20.5858 10.234 20.25 9.81982 20.25C9.40561 20.25 9.06982 20.5858 9.06982 21C9.06982 21.4142 9.40561 21.75 9.81982 21.75Z" stroke="#4D4D4D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M18.8198 21.75C19.234 21.75 19.5698 21.4142 19.5698 21C19.5698 20.5858 19.234 20.25 18.8198 20.25C18.4056 20.25 18.0698 20.5858 18.0698 21C18.0698 21.4142 18.4056 21.75 18.8198 21.75Z" stroke="#4D4D4D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M1.56982 2.25H5.38801L7.94619 14.9702C8.03348 15.4076 8.27255 15.8004 8.62157 16.08C8.97059 16.3597 9.40731 16.5082 9.85528 16.4997H19.1335C19.5814 16.5082 20.0181 16.3597 20.3672 16.08C20.7162 15.8004 20.9553 15.4076 21.0426 14.9702L22.5698 6.99988H6.34255" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1965_1201">
|
||||
<rect width="24" height="24" fill="white" transform="translate(0.0698242)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
8
assets/cash_bank.svg
Normal file
@@ -0,0 +1,8 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#FF2D55" fill-opacity="0.15"/>
|
||||
<path d="M8.66797 10.75H14.2991C14.9621 10.75 15.5981 11.0134 16.0669 11.4822L18.668 14.0833" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M11.168 18.25H8.66797" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M14.0846 13.25L15.7513 14.9167C16.2116 15.3769 16.2116 16.1231 15.7513 16.5833C15.2911 17.0436 14.5449 17.0436 14.0846 16.5833L12.8346 15.3333C12.1174 16.0506 10.9819 16.1312 10.1704 15.5227L9.91797 15.3333" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M11.168 16.1668V19.9168C11.168 21.4882 11.168 22.2738 11.6561 22.762C12.1443 23.2502 12.93 23.2502 14.5013 23.2502H22.0013C23.5726 23.2502 24.3583 23.2502 24.8465 22.762C25.3346 22.2738 25.3346 21.4882 25.3346 19.9168V17.4168C25.3346 15.8455 25.3346 15.0598 24.8465 14.5717C24.3583 14.0835 23.5726 14.0835 22.0013 14.0835H14.918" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M19.7096 18.6668C19.7096 19.4722 19.0567 20.1252 18.2513 20.1252C17.4459 20.1252 16.793 19.4722 16.793 18.6668C16.793 17.8614 17.4459 17.2085 18.2513 17.2085C19.0567 17.2085 19.7096 17.8614 19.7096 18.6668Z" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
1
assets/countrylist.json
Normal file
5
assets/currency.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#00B232" fill-opacity="0.15"/>
|
||||
<path d="M18 8.8335V27.1668" stroke="#00B332" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M22.1667 12.1665H15.9167C15.1431 12.1665 14.4013 12.4738 13.8543 13.0208C13.3073 13.5678 13 14.3096 13 15.0832C13 15.8567 13.3073 16.5986 13.8543 17.1456C14.4013 17.6925 15.1431 17.9998 15.9167 17.9998H20.0833C20.8569 17.9998 21.5987 18.3071 22.1457 18.8541C22.6927 19.4011 23 20.143 23 20.9165C23 21.6901 22.6927 22.4319 22.1457 22.9789C21.5987 23.5259 20.8569 23.8332 20.0833 23.8332H13" stroke="#00B332" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 769 B |
7
assets/dashboard.svg
Normal file
@@ -0,0 +1,7 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="18" cy="18" r="18" fill="#FDDBFF"/>
|
||||
<path d="M16.1667 9.75H9.75V16.1667H16.1667V9.75Z" stroke="#B218C9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M26.2502 9.75H19.8335V16.1667H26.2502V9.75Z" stroke="#B218C9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M26.2502 19.832H19.8335V26.2487H26.2502V19.832Z" stroke="#B218C9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.1667 19.832H9.75V26.2487H16.1667V19.832Z" stroke="#B218C9" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 709 B |
6
assets/dashbord.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.5693 3H3.56934V10H10.5693V3Z" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M21.5693 3H14.5693V10H21.5693V3Z" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M21.5693 13.9985H14.5693V20.9985H21.5693V13.9985Z" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M10.5693 13.9985H3.56934V20.9985H10.5693V13.9985Z" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 649 B |
6
assets/dashbord1.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">
|
||||
<path d="M9.99951 3H2.99951V10H9.99951V3Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M20.9995 3H13.9995V10H20.9995V3Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M20.9995 13.9985H13.9995V20.9985H20.9995V13.9985Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M9.99951 13.9985H2.99951V20.9985H9.99951V13.9985Z" fill="#C52127" stroke="#C52127" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 709 B |
15
assets/dueLists.svg
Normal file
|
After Width: | Height: | Size: 14 KiB |
15
assets/duelis.svg
Normal file
|
After Width: | Height: | Size: 14 KiB |
5
assets/duelist.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="40" height="40" rx="20" fill="#F68A3D" fill-opacity="0.15"/>
|
||||
<path d="M24.6367 9.0006C24.8711 9.15481 24.9385 9.36722 24.9297 9.63363C24.9127 10.1425 24.9297 10.6537 24.924 11.1607C24.924 11.5399 24.7602 11.6947 24.3688 11.6947H16.0644C15.6674 11.6947 15.4916 11.5273 15.4897 11.1463C15.4897 10.6375 15.4998 10.1263 15.4846 9.61923C15.4765 9.34622 15.5647 9.13921 15.8117 9L24.6367 9.0006Z" fill="#F68A3D"/>
|
||||
<path d="M26.337 10.328C26.8273 10.3508 27.2892 10.328 27.7335 10.403C28.6839 10.5602 29.3998 11.3997 29.3998 12.3183C29.3998 18.1878 29.3964 24.0573 29.3897 29.9268C29.3897 31.134 28.4557 31.9999 27.1909 31.9999C22.5197 31.9999 17.8484 31.9999 13.1768 31.9999C11.9163 31.9999 10.9994 31.1286 11 29.937C11 24.1199 11.0029 18.303 11.0088 12.4863C11.0088 11.3769 11.7065 10.5434 12.8163 10.3784C13.2215 10.3184 13.6457 10.3688 14.0918 10.3688C14.0918 10.6166 14.1026 10.8698 14.0918 11.1218C14.0376 12.2559 14.9741 13.0581 16.1136 13.0503C18.8506 13.0329 21.5876 13.0455 24.324 13.0443C25.534 13.0443 26.3369 12.2811 26.3407 11.1356C26.3376 10.8824 26.337 10.6292 26.337 10.328ZM22.9848 27.4199C23.8041 27.4199 24.6202 27.4235 25.4376 27.4199C25.8693 27.4199 26.1939 27.1198 26.1907 26.7418C26.1885 26.6517 26.1677 26.5629 26.1293 26.4805C26.091 26.398 26.0359 26.3236 25.9673 26.2615C25.8986 26.1994 25.8178 26.1508 25.7294 26.1185C25.641 26.0863 25.5468 26.0709 25.4521 26.0734C23.7934 26.0692 22.1347 26.0668 20.4734 26.0782C20.3029 26.0877 20.1386 26.1428 19.9995 26.2372C19.7531 26.3986 19.6806 26.6902 19.7745 26.9572C19.8684 27.2242 20.1425 27.4163 20.4829 27.4181C21.3185 27.4223 22.1517 27.4199 22.9848 27.4199ZM22.947 18.4356C23.7726 18.4356 24.5982 18.4392 25.4238 18.4356C25.8536 18.4356 26.1548 18.153 26.1592 17.7756C26.1643 17.3832 25.8618 17.0939 25.4219 17.0927C23.7783 17.0883 22.1349 17.0897 20.4917 17.0969C20.3286 17.1032 20.1701 17.1504 20.0323 17.2337C19.7707 17.391 19.6825 17.6868 19.7732 17.964C19.8196 18.1044 19.9126 18.2267 20.0384 18.3123C20.1641 18.3979 20.3157 18.4422 20.4703 18.4386C21.2958 18.4386 22.1246 18.435 22.947 18.4356ZM22.9577 22.9274C23.7833 22.9274 24.6089 22.9322 25.4345 22.9274C25.8611 22.9238 26.1592 22.6376 26.1592 22.2548C26.1592 21.872 25.8611 21.5834 25.4345 21.5822C23.7833 21.5774 22.1321 21.5788 20.481 21.5864C20.3178 21.5937 20.1597 21.6428 20.0234 21.7286C19.7676 21.8858 19.6819 22.1888 19.7758 22.463C19.8697 22.7372 20.1407 22.9262 20.481 22.928C21.3053 22.9304 22.1321 22.9274 22.9577 22.9274ZM15.7733 17.5032C15.6378 17.3604 15.5262 17.2229 15.3951 17.1071C15.2665 16.9888 15.0947 16.9225 14.9159 16.9219C14.737 16.9214 14.5648 16.9866 14.4353 17.1041C14.3679 17.162 14.3133 17.2322 14.2747 17.3104C14.2361 17.3886 14.2142 17.4733 14.2103 17.5597C14.2064 17.646 14.2206 17.7322 14.2521 17.8133C14.2836 17.8943 14.3318 17.9686 14.3937 18.0318C14.6971 18.345 15.0143 18.645 15.3453 18.9318C15.6151 19.1664 15.9894 19.1754 16.2453 18.9384C16.994 18.2448 17.7383 17.5464 18.4599 16.8275C18.8191 16.4675 18.613 15.8873 18.1095 15.7565C17.8246 15.6827 17.5877 15.7769 17.3841 15.9713C16.8648 16.4729 16.3417 16.9655 15.7752 17.5032H15.7733ZM15.7821 22.337C15.6529 22.2014 15.5489 22.0784 15.4304 21.9704C15.1216 21.6896 14.6981 21.6854 14.4177 21.9524C14.1372 22.2194 14.141 22.6226 14.4385 22.9124C14.7116 23.1812 14.9891 23.4457 15.271 23.7057C15.6069 24.0159 15.9964 24.0135 16.3354 23.7021C16.5446 23.5101 16.7476 23.3115 16.953 23.1158C17.4408 22.6502 17.9324 22.1876 18.4164 21.7178C18.5286 21.6164 18.602 21.4821 18.6248 21.3364C18.6477 21.1907 18.6187 21.0419 18.5424 20.9137C18.4759 20.7891 18.3672 20.6894 18.2339 20.6306C18.1007 20.5718 17.9505 20.5574 17.8076 20.5897C17.6501 20.6285 17.5057 20.7054 17.3885 20.8129C16.8604 21.3026 16.3442 21.8036 15.784 22.337H15.7821ZM15.7821 26.824C15.6384 26.6782 15.5231 26.5438 15.3895 26.4298C15.2567 26.3093 15.0796 26.2433 14.8963 26.2459C14.7129 26.2485 14.538 26.3196 14.4091 26.4438C14.2802 26.568 14.2077 26.7354 14.2072 26.91C14.2067 27.0846 14.2782 27.2524 14.4063 27.3773C14.6975 27.6701 14.9987 27.9551 15.3056 28.2329C15.5886 28.4885 15.9882 28.5077 16.2636 28.2521C17.0009 27.5693 17.7263 26.872 18.446 26.1748C18.5473 26.0735 18.6111 25.9435 18.6277 25.8046C18.6443 25.6656 18.6128 25.5253 18.538 25.405C18.4736 25.2835 18.3685 25.1859 18.2393 25.1276C18.1101 25.0694 17.9642 25.0538 17.8246 25.0833C17.6591 25.1206 17.5069 25.1988 17.3835 25.3102C16.8572 25.7962 16.3411 26.2978 15.7871 26.824H15.7821Z" fill="#F68A3D"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
14
assets/duereport.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">
|
||||
<mask id="mask0_40007837_9397" 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_40007837_9397)">
|
||||
<path d="M15.4 5.43C15.4404 5.4127 15.4811 5.3963 15.522 5.3809C16.0388 5.186 16.5 4.7523 16.5 4.2V3C16.5 1.35 15.15 0 13.5 0H3.50002C1.85 0 0.5 1.35 0.5 3V21C0.5 22.65 1.85 24 3.50002 24H13.5C15.15 24 16.5 22.65 16.5 21L16.5001 20.1825C16.5001 19.9719 16.303 19.8365 16.1002 19.78C16.0394 19.7631 15.9502 19.72 15.9502 19.72C15.8902 19.7 15.8422 19.6815 15.7702 19.67C15.7122 19.6608 15.6779 19.6707 15.6202 19.66C15.4828 19.6346 15.4253 19.5621 15.3002 19.5C14.9311 19.3168 14.5001 19.5879 14.5001 20L14.5 21C14.5 21.55 14.05 22 13.5 22H3.50002C2.95 22 2.5 21.55 2.5 21V3C2.5 2.45 2.95 2 3.50002 2H4.00002C4.55002 2 5.00002 2.45 5.00002 3C5.00002 3.55 5.45002 4 6.00002 4H11C11.55 4 12 3.55 12 3C12 2.45 12.45 2 13 2H13.5C14.05 2 14.5 2.45 14.5 3V4.8391C14.5 5.3026 14.9748 5.6143 15.4 5.43Z" fill="#06A6FF"/>
|
||||
<path d="M13.7965 18.0015V11.8382L7.80005 8.9194V12.2462V14.7581L13.7965 18.0015Z" fill="#FFCC80"/>
|
||||
<path d="M19.8018 8.9165V12.1089C19.6217 12.0369 19.4237 12.0008 19.2197 12.0008C18.8236 12.0008 18.4396 12.1449 18.133 12.4089L16.1653 14.1251C15.8053 14.4431 15.6013 14.8932 15.6013 15.3672C15.6013 15.8473 15.8053 16.3033 16.1653 16.6154L16.2434 16.6808L13.8071 18.0015V11.8388L19.8018 8.9165Z" fill="#06A6FF"/>
|
||||
<path d="M19.8014 8.9163L13.8067 11.8387L11.4724 10.7045L10.5003 10.2305L7.80005 8.9163L13.7947 6L16.351 7.2421L17.3711 7.7342L19.8014 8.9163Z" fill="#7ACFFF"/>
|
||||
<path d="M17.2395 7.6776L11.3097 10.6323V13.6171L10.3694 13.1382V10.1739L16.22 7.1855L17.2395 7.6776Z" fill="white"/>
|
||||
<path d="M7.80005 8.9194V12.2462V14.7581L13.7965 18.0015V11.8382L11.3146 10.6302L11.3098 10.6326V13.6174L10.3695 13.1385V10.1742L10.3737 10.1724L7.80005 8.9194Z" fill="#7ACFFF"/>
|
||||
<path d="M18.447 14.9229L19.5157 13.9898C19.7035 13.8266 19.7227 13.5422 19.5589 13.3549C19.3957 13.1671 19.1113 13.1485 18.9234 13.3117L16.9546 15.0303L16.9456 15.0423L16.8676 15.1473L16.8394 15.1887C16.8154 15.244 16.801 15.3046 16.801 15.3694C16.801 15.4336 16.8154 15.4942 16.84 15.55L16.8682 15.5914L16.9462 15.6964L16.9552 15.7084L18.924 17.4264C19.0098 17.5008 19.1149 17.5374 19.2199 17.5374C19.3453 17.5374 19.4701 17.4852 19.5589 17.3832C19.7221 17.196 19.7029 16.9115 19.5157 16.7483L18.4608 15.8278C20.0342 15.8752 21.3009 17.1888 21.3009 18.8054V19.9509C21.3009 20.1993 21.5025 20.4009 21.751 20.4009C21.9994 20.4009 22.201 20.1993 22.201 19.9509V18.8054C22.2016 16.6871 20.5238 14.9619 18.447 14.9229Z" fill="#06A6FF"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
32
assets/empty_image.svg
Normal file
@@ -0,0 +1,32 @@
|
||||
<svg width="320" height="251" viewBox="0 0 320 251" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M318.602 147.701C318.319 149.632 318.079 150.833 318.021 151.108C316.532 158.066 314.143 164.801 310.915 171.142V171.146C309.996 172.964 309.013 174.755 307.966 176.521C304.912 181.65 301.416 186.504 297.519 191.027C295.152 193.795 292.629 196.478 289.95 199.075C278.353 210.358 264.067 220.008 248.39 227.813C245.446 229.281 242.454 230.682 239.416 232.014C229.799 236.229 219.9 239.767 209.791 242.602C207.698 243.191 205.602 243.748 203.501 244.274C199.854 245.193 196.191 246.018 192.536 246.744C187.597 247.729 182.677 248.541 177.775 249.178C171.505 249.995 165.29 250.513 159.197 250.736C151.922 250.989 144.639 250.866 137.377 250.367C133.651 250.124 129.871 249.779 126.058 249.335C126.054 249.337 126.049 249.338 126.045 249.338C126.04 249.338 126.035 249.337 126.031 249.335C122.651 248.946 119.248 248.48 115.824 247.937C114.889 247.788 113.955 247.631 113.017 247.474C106.676 246.387 100.316 245.028 94.0229 243.391C93.909 243.364 93.7952 243.336 93.6813 243.301C93.6176 243.289 93.5547 243.273 93.4929 243.254C93.3162 243.21 93.1396 243.163 92.9629 243.112C87.3567 241.628 81.8172 239.921 76.3994 237.981C72.5873 236.619 68.8341 235.139 65.1713 233.541C63.4281 232.783 61.7073 231.998 60.0087 231.185C58.454 230.443 56.9177 229.678 55.3996 228.889C46.4446 224.24 38.208 218.803 31.0903 212.537C27.8662 209.709 24.8462 206.656 22.0528 203.402C17.81 198.476 14.2245 193.02 11.3861 187.172C9.99029 184.279 8.80167 181.29 7.82918 178.229C7.42481 176.96 7.05447 175.67 6.71815 174.358C5.21035 168.368 4.3781 162.229 4.23696 156.055C4.1977 154.575 4.1977 153.088 4.23696 151.595C4.36148 146.398 4.95938 141.223 6.02326 136.135C8.846 122.728 15.0136 110.326 24.8952 102.054C41.9101 87.8027 68.1785 87.2845 84.4515 88.6428C90.7919 89.1728 95.6168 89.9855 97.7839 90.386C101.007 90.9788 104.164 91.7129 107.355 92.4824C119.184 95.3287 131.512 98.6186 149.461 96.6007C151.33 96.3887 157.843 95.6035 169.766 92.2861C178.674 89.8697 187.378 86.7573 195.799 82.9777C196.175 82.805 196.548 82.6362 196.917 82.4674C197.871 82.0237 198.79 81.588 199.689 81.1522C199.917 81.0423 200.149 80.9284 200.372 80.8185C202.182 79.9312 203.89 79.0557 205.523 78.1999H205.531C205.59 78.1685 205.645 78.1371 205.704 78.1057C205.927 77.9879 206.147 77.874 206.367 77.7563C206.389 77.7468 206.41 77.735 206.43 77.7209C208.809 76.4686 211.043 75.2554 213.226 74.1051C213.677 73.8657 214.129 73.6301 214.576 73.3985C214.89 73.2375 215.204 73.0726 215.519 72.9156C215.734 72.8057 215.95 72.6957 216.162 72.5858H216.166C217.478 71.9262 218.781 71.2902 220.112 70.6857C222.181 69.7395 224.305 68.8679 226.566 68.0828C228.348 67.4585 230.213 66.8932 232.208 66.3868C251.979 61.3576 281.545 62.9634 300.354 80.3709C315.673 94.5553 319.371 115.072 319.662 130.375C319.77 136.169 319.416 141.963 318.602 147.701Z" fill="#C52127" fill-opacity="0.05"/>
|
||||
<path d="M192.535 136.881V246.744C181.546 248.964 170.397 250.299 159.196 250.737C130.528 251.785 94.9635 246.524 65.1696 233.545C60.2209 231.399 55.3892 228.993 50.6948 226.337C50.6908 226.337 50.6908 226.333 50.6869 226.333C47.8485 224.719 45.099 223.021 42.4385 221.237C40.0084 219.608 37.6646 217.905 35.4072 216.13C33.9271 214.96 32.4876 213.76 31.0887 212.529C20.3159 203.048 12.099 191.667 7.82757 178.229C7.42713 176.961 7.05417 175.673 6.72046 174.362C5.20996 168.373 4.37637 162.234 4.23535 156.059V151.595C4.35987 146.399 4.95777 141.226 6.02164 136.139H34.7987V175.818H39.7257V96.7029H70.2891V215.745H89.0212V117.408L161.977 153.884V136.881C161.977 135.003 162.346 133.144 163.065 131.409C163.784 129.674 164.837 128.098 166.164 126.77C167.492 125.443 169.068 124.389 170.803 123.671C172.538 122.952 174.397 122.583 176.275 122.583H178.238C182.03 122.583 185.666 124.089 188.347 126.771C191.028 129.452 192.535 133.089 192.535 136.881ZM318.6 136.015V147.703C318.32 149.632 318.08 150.833 318.021 151.108C308.153 197.656 256.933 230.864 203.501 244.276V108.534H234.062V211.062H238.992V149.556L269.552 136.137V136.015C269.539 132.786 270.164 129.587 271.39 126.6C272.617 123.614 274.421 120.899 276.7 118.611C278.978 116.324 281.686 114.508 284.668 113.27C287.649 112.031 290.846 111.394 294.075 111.394C297.304 111.394 300.501 112.031 303.482 113.27C306.464 114.508 309.172 116.324 311.45 118.611C313.729 120.899 315.533 123.614 316.76 126.6C317.986 129.587 318.611 132.786 318.598 136.015H318.6Z" fill="#F8E9E9"/>
|
||||
<path d="M307.967 176.52C304.912 181.65 301.416 186.503 297.518 191.026V182.355C297.518 179.13 301.933 176.518 307.381 176.518L307.967 176.52ZM115.824 247.936C114.89 247.789 113.954 247.634 113.018 247.473C100.562 245.37 88.3101 242.196 76.3999 237.985L94.257 190.077L115.824 247.936Z" fill="#BDCFD3"/>
|
||||
<path d="M60.0087 231.188C45.0611 224.051 31.8355 214.851 22.0532 203.401L35.8529 166.38L60.0087 231.188ZM310.915 171.146C309.999 172.965 309.016 174.756 307.968 176.519C304.913 181.649 301.416 186.503 297.519 191.026C295.15 193.794 292.628 196.476 289.951 199.074C269.308 219.154 240.158 234.062 209.789 242.603C207.699 243.19 205.603 243.747 203.503 244.275C199.854 245.191 196.197 246.014 192.534 246.744C187.598 247.729 182.677 248.54 177.773 249.179C178.484 248.594 179.235 248.06 180.021 247.58C184.545 244.827 189.831 243.367 194.01 240.116C191.844 238.462 193.556 235.012 195.51 233.114C200.169 228.6 205.736 225.13 211.842 222.936C210.86 215.272 219.274 208.049 226.701 210.177C226.749 208.299 227.464 206.499 228.718 205.099C229.971 203.7 231.682 202.792 233.544 202.539C235.406 202.286 237.297 202.703 238.879 203.717C240.461 204.731 241.631 206.274 242.179 208.071C242.495 205.382 243.249 202.764 244.413 200.319C245.428 198.182 248.607 198.346 249.355 200.594C249.359 200.609 249.364 200.624 249.37 200.638C251.833 195.683 259.577 194.53 263.376 198.557C262.051 193.623 267.994 188.474 272.689 190.489C270.436 187.183 269.828 182.564 271.953 179.174C274.077 175.783 279.238 174.435 282.33 176.975C280.135 173.231 282.9 167.645 287.21 167.121C289.408 166.854 291.591 167.701 293.808 167.758C294.953 167.784 296.082 167.482 297.062 166.888C299.514 165.337 302.721 165.569 304.678 167.71C306.004 169.203 307.036 170.933 307.721 172.808C308.824 172.286 309.878 171.709 310.915 171.146Z" fill="#F3DBDB"/>
|
||||
<path d="M110.679 74.6489C97.4687 71.8042 83.4795 66.3346 76.9762 54.4893C74.6406 50.2356 73.4629 45.038 75.1797 40.4993C77.4854 34.4039 84.2792 31.1846 90.7263 30.2467C98.7966 29.0949 107.024 30.5372 114.221 34.3654C124.012 39.6057 131.863 49.2258 142.858 50.7758C151.27 51.9602 159.436 48.0708 167.539 45.5185C175.641 42.9663 185.551 42.1057 191.642 48.0272C193.098 49.4429 193.341 51.325 193.482 52.0937C194.67 58.5715 188.254 64.5157 185.933 66.6652C182.767 69.5994 175.412 75.1428 152.392 76.9994C140.007 77.9966 127.377 78.2447 110.679 74.6489Z" fill="#FCF4F4"/>
|
||||
<path d="M78.9201 74.9021H1.62612C0.311336 72.6218 -0.228266 69.9764 0.0883108 67.3633C0.404888 64.7502 1.56056 62.3102 3.38184 60.4098C5.20312 58.5094 7.59172 57.251 10.189 56.8236C12.7863 56.3962 15.4522 56.8229 17.7864 58.0395C18.002 55.3259 18.8071 52.692 20.1456 50.3216C21.484 47.9512 23.3236 45.9014 25.536 44.3153C27.7483 42.7292 30.2801 41.6449 32.9547 41.1381C35.6293 40.6313 38.3822 40.7143 41.0215 41.3812C43.6607 42.0481 46.1226 43.2828 48.2354 44.9993C50.3483 46.7157 52.0611 48.8725 53.2544 51.3192C54.4478 53.7659 55.0928 56.4435 55.1446 59.1652C55.1964 61.8868 54.6537 64.5871 53.5543 67.0774C61.9998 69.7592 70.2827 73.0354 78.9201 74.9021Z" fill="#FCF4F4"/>
|
||||
<path d="M244.645 99.0956H286.239C286.946 97.8687 287.236 96.4455 287.066 95.0396C286.895 93.6338 286.274 92.3211 285.294 91.2985C284.314 90.276 283.029 89.5987 281.632 89.3684C280.235 89.1381 278.8 89.3672 277.544 90.0213C277.428 88.5614 276.994 87.1445 276.273 85.8695C275.553 84.5945 274.563 83.492 273.372 82.6389C272.182 81.7858 270.82 81.2027 269.381 80.9302C267.942 80.6577 266.461 80.7024 265.041 81.0612C263.621 81.4199 262.296 82.0841 261.16 83.0074C260.023 83.9307 259.101 85.0909 258.459 86.4071C257.816 87.7232 257.469 89.1637 257.441 90.6279C257.412 92.0922 257.703 93.545 258.294 94.8851C253.75 96.3263 249.292 98.0902 244.645 99.0956Z" fill="#F8E9E9"/>
|
||||
<path d="M206.663 46.5178H312.121C313.914 43.4065 314.65 39.7976 314.218 36.2327C313.785 32.6678 312.208 29.3393 309.724 26.7468C307.239 24.1542 303.981 22.4374 300.437 21.8542C296.894 21.2709 293.257 21.8525 290.072 23.5118C289.779 19.8088 288.681 16.2145 286.855 12.9796C285.029 9.74476 282.519 6.94737 279.501 4.78267C276.482 2.61798 273.027 1.13815 269.378 0.446464C265.728 -0.245217 261.971 -0.132078 258.37 0.777978C254.769 1.68803 251.409 3.37308 248.526 5.71551C245.643 8.05793 243.306 11.0013 241.678 14.3402C240.05 17.679 239.171 21.333 239.101 25.0469C239.031 28.7609 239.772 32.4453 241.273 35.8432C229.749 39.497 218.447 43.9694 206.663 46.5178Z" fill="#FCF4F4"/>
|
||||
<path d="M115.641 146.073L116.444 151.64C116.684 153.308 116.563 155.007 116.09 156.624C115.618 158.241 114.804 159.738 113.705 161.015C112.605 162.291 111.245 163.317 109.716 164.024C108.187 164.731 106.524 165.102 104.839 165.113H104.775C101.66 165.112 98.6718 163.878 96.4636 161.682C94.2554 159.485 93.0065 156.503 92.9897 153.388L92.9077 138.025L92.8602 129.136L88.6284 129.159H88.5891C88.3558 129.158 88.1226 129.145 87.8907 129.119C86.2256 125.187 85.2747 120.99 85.0825 116.724C86.6112 115.506 88.5498 114.922 90.4972 115.093L92.7267 115.285L98.3459 104.418L120.691 109.885C120.973 110.823 121.237 111.737 121.484 112.626C130.58 145.54 115.641 146.073 115.641 146.073Z" fill="#FFC1C2"/>
|
||||
<path d="M107.823 124.808C107.815 124.788 107.1 122.661 108.113 121.343C108.786 120.469 110.107 120.097 112.041 120.237L112.127 119.046C109.765 118.876 108.094 119.406 107.163 120.622C105.761 122.455 106.657 125.09 106.696 125.201L107.823 124.808ZM116.455 151.712C115.294 151.239 114.252 150.514 113.405 149.589C112.558 148.664 111.928 147.562 111.559 146.363C112.25 146.448 112.949 146.457 113.643 146.39C113.643 146.39 114.131 146.343 115.641 146.073L116.455 151.712Z" fill="#EE9C9E"/>
|
||||
<path d="M121.485 112.628C121.191 112.613 119.915 112.58 119.475 113.331C119.444 113.386 119.417 113.444 119.396 113.503L115.895 122.332C115.838 122.489 115.731 122.622 115.59 122.711C115.449 122.8 115.282 122.84 115.117 122.823C114.961 122.802 114.816 122.731 114.705 122.619C114.594 122.508 114.523 122.363 114.503 122.207L114.026 118.553C113.944 117.926 113.65 117.345 113.192 116.907C112.734 116.469 112.141 116.201 111.51 116.147C110.367 116.049 109.217 116.208 108.144 116.613C107.072 117.018 106.103 117.659 105.311 118.488C104.519 119.317 103.922 120.313 103.566 121.403C103.21 122.493 103.102 123.649 103.252 124.786C103.47 126.302 104.231 127.688 105.394 128.685C106.556 129.683 108.041 130.225 109.573 130.211H109.633L112.617 130.196C112.75 130.195 112.881 130.229 112.997 130.292C113.114 130.356 113.212 130.449 113.283 130.561C113.354 130.674 113.396 130.802 113.403 130.935C113.411 131.068 113.385 131.201 113.328 131.321L111.26 135.647C110.92 136.359 110.385 136.96 109.718 137.381C109.051 137.802 108.278 138.025 107.489 138.025H92.908C92.9057 138.025 92.9057 138.022 92.9057 138.022C84.282 128.071 81.2088 115.934 85.5273 106.865C86.9487 103.938 89.0442 101.39 91.6415 99.4299C95.067 97.0204 98.9369 95.3155 103.027 94.4141C109.014 93.1413 112.364 94.4141 117.16 92.2266C118.516 91.6055 119.784 90.8089 120.932 89.8573C121.556 89.3363 122.287 88.9588 123.074 88.7514C123.86 88.544 124.682 88.5117 125.482 88.6569C126.282 88.802 127.041 89.1211 127.704 89.5915C128.367 90.0619 128.919 90.6722 129.321 91.3794C129.952 92.4952 130.415 93.6983 130.695 94.9496C132.117 101.384 128.486 108.659 121.485 112.628Z" fill="#111113"/>
|
||||
<path d="M183.473 212.738L190.474 162.785C190.474 162.785 181.016 145.825 168.362 156.596L147.55 224.946C146.884 227.134 146.697 229.44 147.002 231.707C147.307 233.973 148.096 236.148 149.317 238.082C150.537 240.016 152.16 241.664 154.075 242.915C155.989 244.166 158.151 244.989 160.412 245.33C164.62 245.963 168.911 244.969 172.412 242.55C175.913 240.131 178.361 236.469 179.257 232.309L183.473 212.738Z" fill="#FFC1C2"/>
|
||||
<path d="M190.245 162.439C190.245 162.439 171.659 164.167 168.444 156.482C165.228 148.798 170.22 132.922 170.22 132.922C170.58 133.786 171.02 134.616 171.534 135.399L170.247 138.522C169.975 139.183 169.976 139.926 170.251 140.587C170.526 141.248 171.052 141.772 171.714 142.045L173.52 142.789L190.379 149.741C190.393 149.747 190.408 149.751 190.423 149.754C190.423 149.759 190.432 149.761 190.438 149.76C190.448 147.66 193.268 146.119 195.094 145.339C195.979 144.964 196.63 144.766 196.63 144.766C196.358 144.316 196.117 143.847 195.91 143.364C194.994 141.229 195.154 139.575 195.596 138.412C195.694 138.163 195.848 137.94 196.046 137.761C196.245 137.582 196.482 137.451 196.74 137.379C196.997 137.307 197.268 137.296 197.531 137.346C197.793 137.396 198.041 137.507 198.253 137.669C198.334 137.73 198.409 137.798 198.476 137.873L199.727 139.221L204.116 143.941C204.579 144.438 204.856 145.08 204.901 145.758C204.946 146.437 204.756 147.109 204.362 147.663C196.317 158.982 190.245 162.439 190.245 162.439Z" fill="#FFC1C2"/>
|
||||
<path d="M190.338 149.868C190.323 149.865 190.308 149.861 190.294 149.855L173.434 142.903L171.628 142.159C170.967 141.886 170.441 141.362 170.166 140.701C169.891 140.04 169.889 139.298 170.162 138.636L171.448 135.513C171.863 136.155 172.315 136.773 172.801 137.364C178.663 144.559 189.85 149.648 190.338 149.868Z" fill="#F0AE8C"/>
|
||||
<path d="M180.488 118.833C180.228 118.187 179.842 117.599 179.353 117.103C179.122 116.86 178.835 116.675 178.518 116.563C178.202 116.451 177.863 116.416 177.529 116.46C177.252 116.506 176.988 116.609 176.753 116.763C176.518 116.917 176.318 117.119 176.165 117.355C176.013 117.591 175.912 117.857 175.868 118.134C175.825 118.412 175.839 118.695 175.912 118.967L175.946 119.096L176.464 121.188L178.309 125.14L182.207 122.175L180.488 118.833Z" fill="#FFC1C2"/>
|
||||
<path d="M207.905 114.247L198.26 137.634C198.047 137.472 197.8 137.361 197.537 137.311C197.274 137.261 197.003 137.272 196.745 137.344C196.488 137.417 196.25 137.548 196.052 137.728C195.854 137.907 195.7 138.131 195.603 138.38C195.159 139.544 195 141.197 195.917 143.331L195.1 145.306C193.272 146.088 190.451 147.628 190.443 149.729C190.439 149.729 190.426 149.725 190.426 149.721C190.409 149.716 190.397 149.712 190.384 149.708L173.525 142.757L171.719 142.011C171.058 141.738 170.532 141.214 170.257 140.553C169.982 139.892 169.981 139.15 170.254 138.488L171.157 136.295L171.537 135.366L172.897 132.065L174.63 127.868L176.626 123.03L178.393 118.746L180.071 114.674L184.264 104.497C184.399 104.17 184.598 103.872 184.848 103.622C185.098 103.371 185.396 103.173 185.723 103.037C186.05 102.901 186.401 102.832 186.755 102.832C187.109 102.831 187.46 102.901 187.787 103.037L189.582 103.777H189.59L206.438 110.724C207.099 110.997 207.625 111.522 207.9 112.182C208.175 112.843 208.177 113.585 207.905 114.247Z" fill="#898989"/>
|
||||
<path d="M209.709 114.986L199.732 139.187L198.481 137.839C198.415 137.764 198.34 137.695 198.26 137.634L207.905 114.247C208.177 113.585 208.174 112.842 207.899 112.182C207.624 111.521 207.098 110.997 206.436 110.724L208.242 111.464C208.904 111.737 209.429 112.261 209.704 112.921C209.98 113.582 209.981 114.324 209.709 114.986Z" fill="#434343"/>
|
||||
<path d="M207.905 114.247L198.26 137.634C198.047 137.472 197.8 137.361 197.537 137.311C197.274 137.261 197.003 137.272 196.745 137.344C196.488 137.417 196.25 137.548 196.052 137.728C195.854 137.907 195.7 138.131 195.603 138.38C195.159 139.544 195 141.197 195.917 143.331C196.122 143.815 196.362 144.284 196.636 144.732C196.636 144.732 195.984 144.929 195.101 145.306C193.272 146.088 190.451 147.628 190.443 149.729C190.439 149.729 190.426 149.725 190.426 149.721C190.409 149.716 190.397 149.712 190.384 149.708L173.525 142.757C172.864 142.484 172.338 141.959 172.063 141.299C171.787 140.639 171.785 139.896 172.056 139.234L172.889 137.217L186.07 105.242C186.342 104.582 186.864 104.058 187.522 103.783C188.181 103.508 188.921 103.506 189.581 103.777H189.589L206.436 110.724C207.098 110.997 207.624 111.521 207.899 112.182C208.175 112.842 208.177 113.585 207.905 114.247Z" fill="#6B6B6B"/>
|
||||
<path d="M182.825 142.854C183.837 142.854 184.658 142.033 184.658 141.021C184.658 140.008 183.837 139.187 182.825 139.187C181.812 139.187 180.991 140.008 180.991 141.021C180.991 142.033 181.812 142.854 182.825 142.854Z" fill="white"/>
|
||||
<path d="M190.352 149.874L176.387 145.626C174.456 145.038 172.78 143.817 171.629 142.159L190.352 149.874Z" fill="#EE9C9E"/>
|
||||
<path d="M174.383 133.523C173.934 133.113 173.411 132.678 172.809 132.212C172.614 132.044 172.385 131.92 172.138 131.849C171.89 131.778 171.631 131.762 171.376 131.802C170.552 131.99 170.241 132.889 170.148 133.159C169.604 134.733 170.94 136.3 171.066 136.444L172.603 137.839L173.733 138.87C173.927 139.052 174.156 139.191 174.406 139.279C174.656 139.366 174.922 139.401 175.187 139.38C175.451 139.359 175.708 139.283 175.942 139.156C176.175 139.03 176.379 138.856 176.541 138.646C177.212 137.72 177.233 136.123 174.383 133.523ZM179.799 128.937C180.092 127.93 179.799 126.64 177.751 125.299C177.2 124.943 176.624 124.627 176.028 124.354C176.028 124.354 171.423 125.248 174.034 129.192L175.836 129.947L176.732 130.319C177.022 130.445 177.336 130.509 177.653 130.507C177.969 130.505 178.282 130.437 178.571 130.307C178.86 130.177 179.118 129.987 179.33 129.751C179.541 129.516 179.701 129.238 179.799 128.937Z" fill="#FFC1C2"/>
|
||||
<path d="M186.033 223.518L184.063 224.252L181.424 225.234L180.726 225.493L178.794 226.211H178.79L148.871 237.337L147.08 238.001L146.833 238.095H146.829L146.221 238.323L146.213 238.327V250.784C143.598 250.717 140.947 250.598 138.259 250.426C130.945 249.967 123.411 249.143 115.822 247.937C114.888 247.788 113.953 247.631 113.015 247.474C108.944 246.775 104.873 245.964 100.802 245.04C100.531 244.981 100.256 244.918 99.9849 244.852C94.4258 243.572 88.8981 242.076 83.4686 240.356C83.2095 240.278 82.9503 240.195 82.6952 240.113C80.5791 239.438 78.48 238.727 76.398 237.981C72.3582 236.536 68.3891 234.966 64.522 233.254V215.694L63.8782 215.69L56.4857 215.635L43.746 215.545L43.6283 203.131L43.6165 202.059L43.3927 178.531L43.3849 177.593L43.3731 176.332C43.3328 172.213 44.4971 168.172 46.7227 164.705C48.9484 161.239 52.1384 158.498 55.9007 156.821C56.2658 156.656 56.6388 156.503 57.0157 156.361C59.0515 155.59 61.1941 155.139 63.3678 155.022L79.2325 154.167L93.0007 153.743L98.4342 153.574L116.56 153.02L121.766 152.863L121.994 152.855L122.689 152.836L137.293 152.388L138.294 152.357L146.55 152.105C149.34 152.019 152.116 152.523 154.697 153.586C154.948 153.688 155.195 153.794 155.439 153.907C158.32 155.229 160.843 157.221 162.796 159.718C162.972 159.942 163.141 160.165 163.306 160.397C164.335 161.836 165.167 163.406 165.78 165.065C165.831 165.195 165.878 165.324 165.925 165.458L170.145 177.648L170.455 178.543L171.398 181.259L172.022 183.054L175.265 192.429L177.989 200.292L178.248 201.038L183.022 214.822L185.264 221.3L186.033 223.518Z" fill="#C52127"/>
|
||||
<path d="M146.214 238.327V250.784C143.6 250.717 140.948 250.598 138.26 250.427C139.401 248.404 139.998 246.121 139.996 243.8V200.642L145.99 236.957L146.018 237.137L146.214 238.327Z" fill="#9D0000"/>
|
||||
<path d="M64.5262 195.574L56.4844 215.642L64.5247 215.695L64.5262 195.574Z" fill="#9D0000"/>
|
||||
<path d="M139.804 195.509L138.531 195.719L145.58 238.43L146.853 238.22L139.804 195.509Z" fill="#9D0000"/>
|
||||
<path d="M65.1709 190.638H63.8809V215.695H65.1709V190.638Z" fill="#9D0000"/>
|
||||
<path d="M64.5232 215.694V233.529C51.7718 232.925 47.1902 227.911 45.6905 223.353C44.9093 220.871 44.8237 218.222 45.4432 215.694H64.5232Z" fill="#FFC1C2"/>
|
||||
<path d="M45.4419 215.695L64.5246 221.212V215.695H45.4419Z" fill="#EE9C9E"/>
|
||||
<path d="M178.795 226.213L150.856 240.136L148.874 237.337L178.795 226.213Z" fill="#EE9C9E"/>
|
||||
<path d="M88.9818 85.1253C88.6571 84.7574 88.2455 84.4767 87.7844 84.3087C87.4119 84.1704 87.0266 84.0691 86.6341 84.0064C87.1778 82.9923 87.4801 81.8665 87.5175 80.7165C87.5543 79.0817 86.9465 77.498 85.8254 76.3076C85.1483 75.6327 84.2932 75.1643 83.3599 74.9571C84.0744 74.2505 84.7772 73.5202 85.4564 72.7743C85.8289 72.4475 86.0964 72.0177 86.2249 71.5391C86.3535 71.0605 86.3374 70.5545 86.1787 70.0851C85.9388 69.2833 85.4474 68.58 84.7772 68.0789C83.462 67.1053 82.0879 67.2113 80.8944 67.3919C74.8142 68.2748 69.1104 70.8686 64.4487 74.8708L65.0101 75.5225C69.5507 71.6298 75.1021 69.1045 81.0201 68.2399C82.0879 68.0828 83.2147 67.9925 84.2668 68.7659C84.7827 69.1612 85.1628 69.7073 85.3543 70.3285C85.637 71.2982 85.2404 71.7339 84.8204 72.1972C83.9998 73.0923 83.1532 73.9626 82.2803 74.8079C81.2945 74.7704 80.3083 74.8735 79.3515 75.1142C74.1832 76.3013 69.3579 78.6629 65.2496 82.0159C65.0151 82.2109 64.8471 82.474 64.769 82.7688C64.6909 83.0636 64.7066 83.3754 64.8138 83.6609C64.9937 84.1673 65.3127 84.6127 65.7342 84.946C66.1557 85.2793 66.6627 85.487 67.1969 85.5454C67.3068 85.5571 67.4167 85.5611 67.5227 85.565C68.7241 85.565 69.6506 85.1017 70.5732 84.5796C74.9388 82.1296 78.9811 79.1437 82.6061 75.6913C83.5918 75.7883 84.5139 76.2223 85.2169 76.9201C86.1754 77.9404 86.6931 79.2974 86.6577 80.6968C86.6068 81.8378 86.2794 82.9493 85.7037 83.9357C84.1333 83.9279 82.4452 84.5089 80.6707 85.6788C80.0347 86.0989 79.4222 86.5582 78.8333 87.0058C78.2876 87.4141 77.7262 87.8302 77.157 88.2189C77.1177 88.2464 77.0784 88.2699 77.0392 88.2974C76.8096 88.4459 76.6396 88.6706 76.5592 88.9319C76.4788 89.1933 76.4931 89.4746 76.5995 89.7265C76.734 90.0644 76.9761 90.3487 77.2883 90.5353C77.6005 90.7219 77.9655 90.8005 78.3269 90.759C78.9372 90.6637 79.5316 90.4854 80.0935 90.229C82.6364 89.0995 84.7664 87.2094 86.1905 84.8191C86.6349 84.861 87.0718 84.9613 87.49 85.1174C87.8126 85.2333 88.1013 85.4276 88.3301 85.6828C89.0133 86.4719 88.8798 87.5437 87.9218 88.9727V88.9766C86.9795 90.3756 85.9625 91.7228 84.8753 93.0125L85.5349 93.5699C86.6435 92.2565 87.6789 90.883 88.6364 89.4556C88.7227 89.3247 88.8012 89.1991 88.8719 89.0787C90.0615 87.0922 89.6061 85.8359 88.9818 85.1253ZM70.1492 83.8297C69.3012 84.3087 68.5199 84.7013 67.5227 84.7013C67.4403 84.7013 67.3578 84.6974 67.2715 84.6895C66.9071 84.6477 66.5615 84.5055 66.2731 84.2789C65.9848 84.0522 65.765 83.7499 65.6383 83.4057C65.5858 83.2865 65.5712 83.154 65.5965 83.0262C65.6217 82.8984 65.6857 82.7815 65.7796 82.6912C65.7836 82.6873 65.7914 82.6833 65.7953 82.6794C69.804 79.4125 74.5089 77.1091 79.5478 75.9465C80.1479 75.8038 80.7583 75.7093 81.3734 75.6638C77.9655 78.8169 74.1981 81.5577 70.1492 83.8297ZM81.5893 88.4309C81.0016 88.8195 80.3832 89.1596 79.7402 89.4477C79.2508 89.67 78.7328 89.8232 78.2012 89.9031C78.0343 89.9212 77.8661 89.8836 77.7228 89.7963C77.5794 89.709 77.4688 89.5768 77.4082 89.4202C77.3748 89.3611 77.3625 89.2925 77.3732 89.2254C77.3839 89.1584 77.417 89.097 77.4671 89.0512C77.4816 89.0368 77.4974 89.0236 77.5142 89.0119C77.8754 88.7764 78.2287 88.5251 78.5781 88.2699C78.8372 88.0815 79.0964 87.8852 79.3476 87.6968C79.9287 87.2571 80.5372 86.8016 81.1457 86.3973C82.3398 85.5483 83.7245 85.0063 85.1776 84.8191C84.2423 86.2567 83.0208 87.4862 81.5893 88.4309Z" fill="#F3DBDB"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 23 KiB |
BIN
assets/empty_placeholder.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
5
assets/excel.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="M15 2.5V4C15 5.41421 15 6.12132 15.4393 6.56066C15.8787 7 16.5858 7 18 7H19.5" stroke="#00B445" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4 16V8C4 5.17157 4 3.75736 4.87868 2.87868C5.75736 2 7.17157 2 10 2H14.1716C14.5803 2 14.7847 2 14.9685 2.07612C15.1522 2.15224 15.2968 2.29676 15.5858 2.58579L19.4142 6.41421C19.7032 6.70324 19.8478 6.84776 19.9239 7.03153C20 7.2153 20 7.41968 20 7.82843V16C20 18.8284 20 20.2426 19.1213 21.1213C18.2426 22 16.8284 22 14 22H10C7.17157 22 5.75736 22 4.87868 21.1213C4 20.2426 4 18.8284 4 16Z" stroke="#00B445" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.2861 9.9502C16.7014 9.95042 17.0498 10.2861 17.0498 10.6924V18.3076C17.0498 18.7139 16.7014 19.0496 16.2861 19.0498H7.71387C7.29864 19.0496 6.9502 18.7139 6.9502 18.3076V10.6924C6.9502 10.2861 7.29864 9.95042 7.71387 9.9502H16.2861ZM10.6211 18.2578H16.2354V16.2812H10.6211V18.2578ZM7.76465 18.2578H9.80762V16.2812H7.76465V18.2578ZM10.6211 15.4883H16.2354V13.5117H10.6211V15.4883ZM7.76465 15.4883H9.80762V13.5117H7.76465V15.4883ZM10.6211 12.7188H16.2354V10.7422H10.6211V12.7188ZM7.76465 12.7188H9.80762V10.7422H7.76465V12.7188Z" fill="#00B445" stroke="#00B445" stroke-width="0.1"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
5
assets/expense.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="40" height="40" rx="20" fill="#C52127" fill-opacity="0.15"/>
|
||||
<path d="M10.2461 29.4124C10.2461 29.7373 10.5087 29.9999 10.8335 29.9999H13.3302C13.6551 29.9999 13.9176 29.7373 13.9176 29.4124V18.963L10.2461 15.2915V29.4124ZM15.3462 20.3916V29.4124C15.3462 29.7373 15.6088 29.9999 15.9336 29.9999H18.4303C18.7551 29.9999 19.0177 29.7373 19.0177 29.4124V23.2265C18.3947 23.1464 17.8206 22.8704 17.3711 22.421L15.3462 20.3916ZM25.5508 25.5985V29.4124C25.5508 29.7373 25.8134 29.9999 26.1383 29.9999H28.6349C28.9598 29.9999 29.2224 29.7373 29.2224 29.4124V25.7854C28.1098 25.732 26.9972 25.6831 25.8846 25.6297C25.8089 25.6252 25.6888 25.6163 25.5508 25.5985ZM24.0644 21.6555L23.1076 20.6987L21.3853 22.421C21.1138 22.6924 20.7934 22.9016 20.4463 23.044V29.4124C20.4463 29.7373 20.7088 29.9999 21.0337 29.9999H23.5304C23.8552 29.9999 24.1178 29.7373 24.1178 29.4124V24.882C23.9353 24.6906 23.784 24.4726 23.6683 24.2233C23.477 23.7961 23.1387 22.7191 24.0644 21.6555Z" fill="#C52127"/>
|
||||
<path d="M30.8156 23.2756L30.7533 21.9806C30.7132 21.1172 30.6732 20.2583 30.6331 19.3949C30.6242 19.1947 30.5886 18.9365 30.3839 18.7363C30.3305 18.6829 30.2638 18.6295 30.1881 18.5894C30.0768 18.5271 29.9656 18.5004 29.8588 18.5004C29.6007 18.5004 29.4315 18.6695 29.3114 18.7897L29.031 19.07L28.3546 19.7465C28.3323 19.7687 28.3101 19.7865 28.2878 19.8088L23.922 15.443C23.704 15.2249 23.4147 15.1048 23.1121 15.1048C22.8094 15.1048 22.5157 15.2249 22.3021 15.443L19.3871 18.358L11.3631 10.3385C11.1451 10.1204 10.8603 10.0002 10.5532 10.0002C10.2461 10.0002 9.95684 10.1204 9.73877 10.3385L9.52071 10.5565C9.07122 11.006 9.07122 11.7314 9.52071 12.1809L18.5683 21.2285C18.7863 21.4465 19.0711 21.5667 19.3782 21.5667C19.6853 21.5667 19.9746 21.4465 20.1926 21.2285L23.1076 18.3135L26.4454 21.6512C26.2095 21.8827 25.9781 22.1141 25.7467 22.3499L25.4129 22.6837C25.2794 22.8172 25.0035 23.0932 25.2037 23.5159C25.2438 23.6005 25.2927 23.6717 25.3506 23.7296C25.5419 23.9209 25.7867 23.9343 25.9603 23.9387C27.2865 24.001 28.6171 24.0633 29.9433 24.1256H30.019C30.2816 24.1256 30.4863 24.0544 30.6242 23.9076C30.7666 23.7607 30.829 23.5515 30.8156 23.2756Z" fill="#C52127"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
5
assets/expenseReport.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="21" height="23" viewBox="0 0 21 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M2.87968 0.00537109H15.0118C15.0028 0.0323511 14.9907 0.0582113 14.9758 0.0824413C14.2972 0.891701 14.0239 1.8272 14.0319 2.873C14.0479 4.946 14.0319 7.0189 14.0319 9.0919V9.3245C10.7482 9.5371 8.34048 11.028 7.19258 14.1082C6.02738 17.235 6.90198 19.9551 9.29638 22.2301C8.99108 22.6606 8.55378 22.7084 8.17118 22.3377C7.90448 22.0719 7.62988 21.8062 7.32588 21.5072C7.05928 21.7849 6.82468 22.0453 6.57528 22.2952C6.18868 22.6845 5.83408 22.6845 5.45008 22.2952C5.20208 22.0467 4.96218 21.7889 4.68888 21.4979C4.45818 21.741 4.25418 21.9417 4.06628 22.1623C3.57958 22.7137 3.16638 22.727 2.66908 22.1623C2.46238 21.9284 2.22778 21.7185 2.05848 21.5497C1.75848 21.8155 1.47848 22.0586 1.21318 22.3124C0.94792 22.5662 0.69728 22.646 0.41331 22.5224C0.12933 22.3988 0 22.1556 0 21.8341C0 15.6541 0 9.4733 0 3.2916C0.00088 2.5736 0.2371 1.8755 0.6727 1.3036C1.10828 0.731751 1.71948 0.317401 2.41308 0.123641C2.57178 0.086431 2.72638 0.0465611 2.87968 0.00537109ZM8.01518 6.696C8.02988 6.6869 8.04558 6.6793 8.06188 6.6734C8.46178 6.6734 8.87378 6.6734 9.27908 6.6655C9.68438 6.6575 9.98028 6.3824 9.97768 6.0011C9.97498 5.6197 9.68698 5.3499 9.26968 5.3446C8.96038 5.3446 8.65108 5.3446 8.33648 5.3446H8.01118C8.01118 4.8968 8.01118 4.4849 8.01118 4.0742C8.02088 3.9814 8.01078 3.8875 7.98158 3.7988C7.95238 3.71 7.90478 3.6284 7.84188 3.5593C7.77898 3.4901 7.70208 3.435 7.61628 3.3974C7.53058 3.3598 7.43778 3.3407 7.34408 3.3413C7.25038 3.3418 7.15788 3.3621 7.07258 3.4007C6.98728 3.4393 6.91108 3.4953 6.84898 3.5653C6.78688 3.6352 6.74028 3.7173 6.71218 3.8064C6.68408 3.8955 6.67518 3.9895 6.68598 4.0822C6.68598 4.4981 6.68598 4.9141 6.68598 5.322C6.66348 5.3305 6.64028 5.3371 6.61668 5.342C6.22598 5.342 5.83538 5.342 5.44348 5.342C5.01278 5.342 4.72088 5.6183 4.72218 6.0064C4.72348 6.3944 5.01678 6.6615 5.45148 6.6708C5.73138 6.6708 6.01268 6.6708 6.29268 6.6708H6.69268C6.69268 7.104 6.69268 7.5 6.69268 7.8973C6.69268 8.3305 6.95928 8.6242 7.34988 8.6268C7.74048 8.6295 8.01648 8.3358 8.01648 7.8893C8.01648 7.4893 8.01518 7.0933 8.01518 6.696ZM5.59008 11.2991C6.31138 11.2991 7.03398 11.2991 7.75518 11.2991C8.19778 11.2991 8.50848 11.0214 8.50708 10.6347C8.50578 10.248 8.19248 9.9769 7.74988 9.9769H3.45698C3.01838 9.9769 2.70368 10.2586 2.70638 10.6413C2.70908 11.024 3.01968 11.2978 3.46368 11.2991C4.16888 11.3004 4.87548 11.2991 5.59008 11.2991ZM4.67948 13.9461H5.96208C6.38868 13.9461 6.69268 13.6657 6.69398 13.2817C6.69528 12.8977 6.38738 12.6173 5.96208 12.6173C5.12128 12.6173 4.28088 12.6173 3.44098 12.6173C3.01568 12.6173 2.70908 12.9003 2.70908 13.2817C2.70908 13.6631 3.01438 13.9395 3.44098 13.9461H4.67948ZM4.50218 15.267C4.14088 15.267 3.77958 15.267 3.41828 15.267C3.32518 15.2568 3.23098 15.2662 3.14178 15.2948C3.05248 15.3233 2.97038 15.3703 2.90058 15.4326C2.83078 15.4949 2.77498 15.5712 2.73678 15.6564C2.69858 15.7417 2.67878 15.834 2.67878 15.9274C2.67878 16.0208 2.69858 16.1131 2.73678 16.1984C2.77498 16.2837 2.83078 16.3599 2.90058 16.4223C2.97038 16.4846 3.05248 16.5315 3.14178 16.5601C3.23098 16.5886 3.32518 16.5981 3.41828 16.5878C4.12938 16.5932 4.83728 16.5932 5.54208 16.5878C5.63518 16.5981 5.72948 16.5886 5.81868 16.5601C5.90788 16.5315 5.99008 16.4846 6.05988 16.4223C6.12958 16.3599 6.18548 16.2837 6.22368 16.1984C6.26188 16.1131 6.28158 16.0208 6.28158 15.9274C6.28158 15.834 6.26188 15.7417 6.22368 15.6564C6.18548 15.5712 6.12958 15.4949 6.05988 15.4326C5.99008 15.3703 5.90788 15.3233 5.81868 15.2948C5.72948 15.2662 5.63518 15.2568 5.54208 15.267C5.19018 15.263 4.84218 15.263 4.49558 15.263L4.50218 15.267Z" fill="#C52127"/>
|
||||
<path d="M18.0156 0.0053196C18.247 0.0705596 18.4738 0.15136 18.6942 0.24716C19.5288 0.68036 19.9941 1.3727 20.0007 2.3135C20.0181 4.4157 20.0074 6.5179 20.0007 8.6188C20.0007 9.0068 19.7674 9.3085 19.4075 9.3111C18.0516 9.3257 16.6958 9.3111 15.3279 9.3111C15.3186 9.261 15.3124 9.2104 15.3092 9.1596C15.3092 6.882 15.3012 4.6031 15.3092 2.3241C15.3056 1.7827 15.4933 1.2574 15.8395 0.84014C16.1857 0.42294 16.6682 0.14055 17.2024 0.0425196C17.2362 0.0316596 17.2688 0.01742 17.2997 0L18.0156 0.0053196Z" fill="#C52127"/>
|
||||
<path d="M19.9888 16.6447C19.9872 17.4325 19.8289 18.2121 19.523 18.9385C19.2171 19.6649 18.7697 20.3235 18.2066 20.8763C17.6436 21.4291 16.9761 21.8651 16.2428 22.159C15.5095 22.453 14.725 22.599 13.9347 22.5886C10.6857 22.574 8.00729 19.8592 8.02869 16.6089C8.04999 13.3001 10.7511 10.6703 14.1107 10.6876C17.329 10.6982 19.9954 13.4024 19.9888 16.6447ZM15.5079 14.7312C15.4986 14.3445 15.1852 14.1638 14.8493 14.011C14.7953 13.9946 14.7468 13.9638 14.7092 13.9218C14.6716 13.8799 14.6462 13.8285 14.636 13.7731C14.5992 13.6295 14.5142 13.5028 14.3951 13.4141C14.276 13.3253 14.13 13.2799 13.9814 13.2854C13.8361 13.2903 13.6968 13.344 13.5862 13.4379C13.4755 13.5317 13.4001 13.6602 13.3721 13.8024C13.3648 13.8622 13.3417 13.9191 13.3051 13.9672C13.2686 14.0153 13.22 14.0528 13.1641 14.0761C12.9718 14.1822 12.8048 14.3287 12.6747 14.5053C12.5446 14.682 12.4545 14.8846 12.4105 15.0993C12.3665 15.314 12.3698 15.5357 12.42 15.749C12.4702 15.9624 12.5663 16.1623 12.7015 16.3351C12.9406 16.6067 13.244 16.8145 13.5841 16.9397C13.8239 17.0307 14.0562 17.1405 14.2787 17.2679C14.3334 17.3045 14.3787 17.3534 14.4109 17.4106C14.4431 17.4679 14.4613 17.5319 14.464 17.5975C14.421 17.7395 14.3257 17.86 14.1974 17.935C14.0779 17.9924 13.9421 18.0065 13.8134 17.9749C13.6076 17.9236 13.4071 17.8529 13.2148 17.7636C13.0652 17.6899 12.8933 17.6749 12.7331 17.7214C12.5729 17.7679 12.4361 17.8726 12.3495 18.0148C12.3052 18.0871 12.2756 18.1675 12.2625 18.2513C12.2494 18.3351 12.253 18.4206 12.2732 18.503C12.2934 18.5854 12.3298 18.6629 12.3802 18.7313C12.4305 18.7996 12.494 18.8573 12.5669 18.9011C12.7502 19.0089 12.9441 19.0979 13.1455 19.1668C13.2788 19.2134 13.3508 19.2532 13.3774 19.4074C13.4134 19.5502 13.4972 19.6766 13.6148 19.7658C13.7325 19.8549 13.8771 19.9014 14.0248 19.8977C14.1726 19.894 14.3147 19.8402 14.4277 19.7453C14.5407 19.6504 14.6179 19.52 14.6466 19.3755C14.6501 19.3121 14.6721 19.2511 14.7101 19.2C14.748 19.149 14.8001 19.1102 14.86 19.0884C15.1306 18.9588 15.3613 18.759 15.5279 18.5099C15.6945 18.2608 15.7908 17.9717 15.8067 17.6728C15.8227 17.3739 15.7577 17.0762 15.6186 16.8109C15.4794 16.5457 15.2713 16.3226 15.0159 16.165C14.8078 16.0409 14.5913 15.9312 14.368 15.8368C14.1976 15.769 14.0308 15.6927 13.8681 15.6082C13.7947 15.5644 13.6961 15.4275 13.7174 15.385C13.7601 15.296 13.8774 15.183 13.96 15.187C14.1388 15.1938 14.3139 15.2391 14.4733 15.3199C14.5757 15.3851 14.6934 15.4226 14.8147 15.4287C14.936 15.4347 15.0569 15.4091 15.1652 15.3544C15.2775 15.2956 15.3698 15.2051 15.4308 15.0943C15.4917 14.9834 15.5185 14.8572 15.5079 14.7312Z" fill="#C52127"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.7 KiB |
3
assets/expense_icons.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="19" height="24" viewBox="0 0 19 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.2526 5.00964e-07H11.7057C13.1869 -1.9499e-05 14.3815 -3.9503e-05 15.3211 0.12745C16.2977 0.25992 17.1193 0.54342 17.771 1.20109C18.4218 1.85775 18.7014 2.6838 18.8322 3.6656C18.9583 4.6123 18.9583 5.8165 18.9583 7.3123V18.905C18.9583 19.6728 18.9584 20.334 18.888 20.84C18.8159 21.3588 18.6415 21.9491 18.0854 22.3074C17.2637 22.8366 16.3529 22.4702 15.8415 22.2026C15.5486 22.0494 15.2734 21.8681 15.0451 21.7112C14.9408 21.6453 14.7747 21.5363 14.6017 21.4228C14.3167 21.2358 14.013 21.0365 13.936 20.9979C13.8226 20.9357 13.7399 20.9664 13.7127 20.9895C13.5902 21.047 13.4266 21.1462 13.1311 21.3327L11.0319 22.6564C10.7779 22.8166 10.5369 22.9686 10.3199 23.0758C10.0776 23.1954 9.8034 23.2917 9.4792 23.2917C9.1549 23.2917 8.8807 23.1954 8.6384 23.0758C8.4213 22.9686 8.1806 22.8167 7.9264 22.6564L5.8273 21.3327C5.5512 21.1585 5.3931 21.0599 5.2694 20.9979C5.1471 20.9307 5.0696 20.9642 5.0461 20.9895C4.9235 21.047 4.7599 21.1462 4.4644 21.3327C4.236 21.4895 3.4097 22.0494 3.1168 22.2026C2.6054 22.4702 1.6947 22.8366 0.873003 22.3074C0.316843 21.9491 0.142482 21.3588 0.0703123 20.84C-8.77157e-05 20.334 -4.7356e-05 19.6728 2.644e-06 18.905V7.3122C-1.7356e-05 5.8165 -2.7284e-05 4.6123 0.126113 3.6656C0.256923 2.6838 0.536502 1.85775 1.1873 1.20109C1.8391 0.54342 2.6607 0.25992 3.6371 0.12745C4.5768 -3.9503e-05 5.7714 -1.9499e-05 7.2526 5.00964e-07ZM13.8125 5.9583C14.2612 5.9583 14.625 5.5946 14.625 5.1458C14.625 4.6971 14.2612 4.3333 13.8125 4.3333H5.1458C4.6971 4.3333 4.3333 4.6971 4.3333 5.1458C4.3333 5.5946 4.6971 5.9583 5.1458 5.9583H13.8125ZM8.125 9.4792C8.125 9.9279 7.7612 10.2917 7.3125 10.2917H5.1458C4.6971 10.2917 4.3333 9.9279 4.3333 9.4792C4.3333 9.0304 4.6971 8.6667 5.1458 8.6667H7.3125C7.7612 8.6667 8.125 9.0304 8.125 9.4792ZM13 8.3958C13 7.9471 12.6362 7.5833 12.1875 7.5833C11.7388 7.5833 11.375 7.9471 11.375 8.3958V8.6611C10.4715 8.9559 9.75 9.7309 9.75 10.7656C9.75 12.0981 10.9466 13 12.1875 13C12.7415 13 13 13.3714 13 13.6094C13 13.8474 12.7415 14.2188 12.1875 14.2188C11.7689 14.2188 11.4922 13.9867 11.4084 13.779C11.2402 13.3629 10.7667 13.162 10.3506 13.33C9.9346 13.498 9.7335 13.9715 9.9016 14.3876C10.1621 15.0324 10.7146 15.5028 11.375 15.7162V15.9792C11.375 16.4279 11.7388 16.7917 12.1875 16.7917C12.6362 16.7917 13 16.4279 13 15.9792V15.7139C13.9035 15.4191 14.625 14.6441 14.625 13.6094C14.625 12.2769 13.4283 11.375 12.1875 11.375C11.6335 11.375 11.375 11.0036 11.375 10.7656C11.375 10.5276 11.6335 10.1563 12.1875 10.1563C12.6061 10.1563 12.8828 10.3883 12.9666 10.596C13.1348 11.0121 13.6083 11.213 14.0244 11.045C14.4404 10.877 14.6415 10.4035 14.4734 9.9874C14.2129 9.3425 13.6604 8.8722 13 8.6588V8.3958Z" fill="#C52127"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
5
assets/file.svg
Normal file
@@ -0,0 +1,5 @@
|
||||
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.0698 2.5V4C15.0698 5.41421 15.0698 6.12132 15.5091 6.56066C15.9485 7 16.6556 7 18.0698 7H19.5698" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.06982 16V8C4.06982 5.17157 4.06982 3.75736 4.9485 2.87868C5.82718 2 7.24139 2 10.0698 2H14.2414C14.6501 2 14.8545 2 15.0383 2.07612C15.222 2.15224 15.3666 2.29676 15.6556 2.58579L19.484 6.41421C19.773 6.70324 19.9176 6.84776 19.9937 7.03153C20.0698 7.2153 20.0698 7.41968 20.0698 7.82843V16C20.0698 18.8284 20.0698 20.2426 19.1911 21.1213C18.3124 22 16.8982 22 14.0698 22H10.0698C7.24139 22 5.82718 22 4.9485 21.1213C4.06982 20.2426 4.06982 18.8284 4.06982 16Z" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M8.06982 11H16.0698M8.06982 14H16.0698M8.06982 17H12.2406" stroke="#4D4D4D" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1011 B |
8
assets/filter.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">
|
||||
<path d="M2.5 5.83325H5" stroke="#C52127" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M2.5 14.1667H7.5" stroke="#C52127" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M15 14.1667H17.5" stroke="#C52127" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M12.5 5.83325H17.5" stroke="#C52127" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M5 5.83325C5 5.05669 5 4.6684 5.12687 4.36211C5.29602 3.95374 5.62048 3.62928 6.02886 3.46012C6.33515 3.33325 6.72343 3.33325 7.5 3.33325C8.27657 3.33325 8.66483 3.33325 8.97117 3.46012C9.3795 3.62928 9.704 3.95374 9.87317 4.36211C10 4.6684 10 5.05669 10 5.83325C10 6.60982 10 6.9981 9.87317 7.30439C9.704 7.71277 9.3795 8.03723 8.97117 8.20639C8.66483 8.33325 8.27657 8.33325 7.5 8.33325C6.72343 8.33325 6.33515 8.33325 6.02886 8.20639C5.62048 8.03723 5.29602 7.71277 5.12687 7.30439C5 6.9981 5 6.60982 5 5.83325Z" stroke="#C52127" stroke-width="1.25"/>
|
||||
<path d="M10 14.1667C10 13.3902 10 13.0019 10.1268 12.6956C10.296 12.2872 10.6205 11.9627 11.0288 11.7936C11.3352 11.6667 11.7234 11.6667 12.5 11.6667C13.2766 11.6667 13.6648 11.6667 13.9712 11.7936C14.3795 11.9627 14.704 12.2872 14.8732 12.6956C15 13.0019 15 13.3902 15 14.1667C15 14.9433 15 15.3316 14.8732 15.6379C14.704 16.0462 14.3795 16.3707 13.9712 16.5399C13.6648 16.6667 13.2766 16.6667 12.5 16.6667C11.7234 16.6667 11.3352 16.6667 11.0288 16.5399C10.6205 16.3707 10.296 16.0462 10.1268 15.6379C10 15.3316 10 14.9433 10 14.1667Z" stroke="#C52127" stroke-width="1.25"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/fonts/Amiri-Regular.ttf
Normal file
BIN
assets/fonts/AnekGujarati-Regular.ttf
Normal file
BIN
assets/fonts/AnekKannada-Regular.ttf
Normal file
BIN
assets/fonts/AnekMalayalam-Regular.ttf
Normal file
BIN
assets/fonts/AnekTamil-Regular.ttf
Normal file
BIN
assets/fonts/AnekTelugu-Regular.ttf
Normal file
BIN
assets/fonts/GFSDidot-Regular.ttf
Normal file
BIN
assets/fonts/GoogleSans-Regular.ttf
Normal file
BIN
assets/fonts/Hind-Regular.ttf
Normal file
BIN
assets/fonts/Khmer-Regular.ttf
Normal file
BIN
assets/fonts/NotoSans-Bold.ttf
Normal file
BIN
assets/fonts/NotoSans-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansArabic-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansArmenian-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansBengali-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansDevanagari-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansGeorgian-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansHebrew-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansLaoLooped-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansOriya-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansSC-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansSinhala-Regular.ttf
Normal file
BIN
assets/fonts/NotoSansThai-Regular.ttf
Normal file
BIN
assets/fonts/Padauk-Regular.ttf
Normal file
BIN
assets/fonts/Roboto-Regular.ttf
Normal file
BIN
assets/fonts/siyam_rupali_ansi.ttf
Normal file
15
assets/google.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_10701_20344)">
|
||||
<path d="M5.625 12.0002C5.625 10.8111 5.95261 9.69721 6.52177 8.74344V4.69775H2.47608C0.870375 6.78313 0 9.32464 0 12.0002C0 14.6757 0.870375 17.2172 2.47608 19.3026H6.52177V15.2569C5.95261 14.3031 5.625 13.1893 5.625 12.0002Z" fill="#FBBD00"/>
|
||||
<path d="M12 18.3749L9.1875 21.1874L12 23.9999C14.6756 23.9999 17.217 23.1295 19.3024 21.5238V17.4824H15.261C14.2989 18.0536 13.1804 18.3749 12 18.3749Z" fill="#0F9D58"/>
|
||||
<path d="M6.52225 15.2568L2.47656 19.3025C2.79447 19.7154 3.14064 20.1108 3.51522 20.4854C5.78172 22.7519 8.79517 24.0001 12.0005 24.0001V18.3751C9.67436 18.3751 7.63562 17.1226 6.52225 15.2568Z" fill="#31AA52"/>
|
||||
<path d="M24 11.9999C24 11.2699 23.9339 10.5384 23.8035 9.82603L23.698 9.24951H12V14.8745H17.6931C17.1402 15.9742 16.2902 16.8715 15.261 17.4825L19.3024 21.5239C19.7153 21.206 20.1106 20.8598 20.4853 20.4853C22.7518 18.2187 24 15.2053 24 11.9999Z" fill="#3C79E6"/>
|
||||
<path d="M16.5078 7.49217L17.005 7.98933L20.9825 4.01189L20.4853 3.51473C18.2188 1.24823 15.2054 0 12 0L9.1875 2.8125L12 5.625C13.7028 5.625 15.3037 6.28809 16.5078 7.49217Z" fill="#CF2D48"/>
|
||||
<path d="M12.0005 5.625V0C8.79522 0 5.78177 1.24823 3.51522 3.51469C3.14064 3.88927 2.79447 4.28466 2.47656 4.69758L6.52225 8.74327C7.63567 6.8775 9.67441 5.625 12.0005 5.625Z" fill="#EB4132"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_10701_20344">
|
||||
<rect width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |