init commit,
9
03_source/frontend/.editorconfig
Normal file
@@ -0,0 +1,9 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
37
03_source/frontend/.gitignore
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# dependencies
|
||||
node_modules
|
||||
.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
coverage
|
||||
|
||||
# production
|
||||
.next
|
||||
.swc
|
||||
_static
|
||||
out
|
||||
dist
|
||||
build
|
||||
|
||||
# environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.vercel
|
||||
.netlify
|
||||
.vscode
|
||||
tsconfig.tsbuildinfo
|
||||
.ncurc.js
|
11
03_source/frontend/.prettierignore
Normal file
@@ -0,0 +1,11 @@
|
||||
# Build directories
|
||||
build/*
|
||||
dist/*
|
||||
public/*
|
||||
**/out/*
|
||||
**/.next/*
|
||||
**/node_modules/*
|
||||
|
||||
yarn.lock
|
||||
package-lock.json
|
||||
jsconfig.json
|
54
03_source/frontend/README.md
Normal file
@@ -0,0 +1,54 @@
|
||||
## Prerequisites
|
||||
|
||||
- Node.js >=20 (Recommended)
|
||||
|
||||
## Installation
|
||||
|
||||
**Using Yarn (Recommended)**
|
||||
|
||||
```sh
|
||||
yarn install
|
||||
yarn dev
|
||||
```
|
||||
|
||||
**Using Npm**
|
||||
|
||||
```sh
|
||||
npm i
|
||||
npm run dev
|
||||
```
|
||||
|
||||
## Build
|
||||
|
||||
```sh
|
||||
yarn build
|
||||
# or
|
||||
npm run build
|
||||
```
|
||||
|
||||
## Mock server
|
||||
|
||||
By default we provide demo data from : `https://api-dev-minimal-[version].vercel.app`
|
||||
|
||||
To set up your local server:
|
||||
|
||||
- **Guide:** [https://docs.minimals.cc/mock-server](https://docs.minimals.cc/mock-server).
|
||||
|
||||
- **Resource:** [Download](https://www.dropbox.com/sh/6ojn099upi105tf/AACpmlqrNUacwbBfVdtt2t6va?dl=0).
|
||||
|
||||
## Full version
|
||||
|
||||
- Create React App ([migrate to CRA](https://docs.minimals.cc/migrate-to-cra/)).
|
||||
- Next.js
|
||||
- Vite.js
|
||||
|
||||
## Starter version
|
||||
|
||||
- To remove unnecessary components. This is a simplified version ([https://starter.minimals.cc/](https://starter.minimals.cc/))
|
||||
- Good to start a new project. You can copy components from the full version.
|
||||
- Make sure to install the dependencies exactly as compared to the full version.
|
||||
|
||||
---
|
||||
|
||||
**NOTE:**
|
||||
_When copying folders remember to also copy hidden files like .env. This is important because .env files often contain environment variables that are crucial for the application to run correctly._
|
15
03_source/frontend/dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
# Use official Node 18 base image
|
||||
FROM node:20-slim
|
||||
|
||||
# Install pnpm globally
|
||||
RUN npm install -g pnpm
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /app
|
||||
|
||||
# Copy your application code (optional, comment out if not needed)
|
||||
# COPY . /app
|
||||
# RUN yarn
|
||||
|
||||
# Default command (optional)
|
||||
CMD ["yarn start"]
|
5
03_source/frontend/entrypoint.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -ex
|
||||
|
||||
yarn dev
|
194
03_source/frontend/eslint.config.mjs
Normal file
@@ -0,0 +1,194 @@
|
||||
import globals from 'globals';
|
||||
import eslintJs from '@eslint/js';
|
||||
import eslintTs from 'typescript-eslint';
|
||||
import reactPlugin from 'eslint-plugin-react';
|
||||
import importPlugin from 'eslint-plugin-import';
|
||||
import reactHooksPlugin from 'eslint-plugin-react-hooks';
|
||||
import perfectionistPlugin from 'eslint-plugin-perfectionist';
|
||||
import unusedImportsPlugin from 'eslint-plugin-unused-imports';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* @rules common
|
||||
* from 'react', 'eslint-plugin-react-hooks'...
|
||||
*/
|
||||
const commonRules = () => ({
|
||||
...reactHooksPlugin.configs.recommended.rules,
|
||||
'func-names': 1,
|
||||
'no-bitwise': 2,
|
||||
'no-unused-vars': 0,
|
||||
'object-shorthand': 1,
|
||||
'no-useless-rename': 1,
|
||||
'default-case-last': 2,
|
||||
'consistent-return': 2,
|
||||
'no-constant-condition': 1,
|
||||
'default-case': [2, { commentPattern: '^no default$' }],
|
||||
'lines-around-directive': [2, { before: 'always', after: 'always' }],
|
||||
'arrow-body-style': [2, 'as-needed', { requireReturnForObjectLiteral: false }],
|
||||
// react
|
||||
'react/jsx-key': 0,
|
||||
'react/prop-types': 0,
|
||||
'react/display-name': 0,
|
||||
'react/no-children-prop': 0,
|
||||
'react/jsx-boolean-value': 2,
|
||||
'react/self-closing-comp': 2,
|
||||
'react/react-in-jsx-scope': 0,
|
||||
'react/jsx-no-useless-fragment': [1, { allowExpressions: true }],
|
||||
'react/jsx-curly-brace-presence': [2, { props: 'never', children: 'never' }],
|
||||
// typescript
|
||||
'@typescript-eslint/no-shadow': 2,
|
||||
'@typescript-eslint/no-explicit-any': 0,
|
||||
'@typescript-eslint/no-empty-object-type': 0,
|
||||
'@typescript-eslint/consistent-type-imports': 1,
|
||||
'@typescript-eslint/no-unused-vars': [1, { args: 'none' }],
|
||||
});
|
||||
|
||||
/**
|
||||
* @rules import
|
||||
* from 'eslint-plugin-import'.
|
||||
*/
|
||||
const importRules = () => ({
|
||||
...importPlugin.configs.recommended.rules,
|
||||
'import/named': 0,
|
||||
'import/export': 0,
|
||||
'import/default': 0,
|
||||
'import/namespace': 0,
|
||||
'import/no-named-as-default': 0,
|
||||
'import/newline-after-import': 2,
|
||||
'import/no-named-as-default-member': 0,
|
||||
'import/no-cycle': [
|
||||
0, // disabled if slow
|
||||
{ maxDepth: '∞', ignoreExternal: false, allowUnsafeDynamicCyclicDependency: false },
|
||||
],
|
||||
});
|
||||
|
||||
/**
|
||||
* @rules unused imports
|
||||
* from 'eslint-plugin-unused-imports'.
|
||||
*/
|
||||
const unusedImportsRules = () => ({
|
||||
'unused-imports/no-unused-imports': 1,
|
||||
'unused-imports/no-unused-vars': [
|
||||
0,
|
||||
{ vars: 'all', varsIgnorePattern: '^_', args: 'after-used', argsIgnorePattern: '^_' },
|
||||
],
|
||||
});
|
||||
|
||||
/**
|
||||
* @rules sort or imports/exports
|
||||
* from 'eslint-plugin-perfectionist'.
|
||||
*/
|
||||
const sortImportsRules = () => {
|
||||
const customGroups = {
|
||||
mui: ['custom-mui'],
|
||||
auth: ['custom-auth'],
|
||||
hooks: ['custom-hooks'],
|
||||
utils: ['custom-utils'],
|
||||
types: ['custom-types'],
|
||||
routes: ['custom-routes'],
|
||||
sections: ['custom-sections'],
|
||||
components: ['custom-components'],
|
||||
};
|
||||
|
||||
return {
|
||||
'perfectionist/sort-named-imports': [1, { type: 'line-length', order: 'asc' }],
|
||||
'perfectionist/sort-named-exports': [1, { type: 'line-length', order: 'asc' }],
|
||||
'perfectionist/sort-exports': [
|
||||
1,
|
||||
{
|
||||
order: 'asc',
|
||||
type: 'line-length',
|
||||
groupKind: 'values-first',
|
||||
},
|
||||
],
|
||||
'perfectionist/sort-imports': [
|
||||
2,
|
||||
{
|
||||
order: 'asc',
|
||||
ignoreCase: true,
|
||||
type: 'line-length',
|
||||
environment: 'node',
|
||||
maxLineLength: undefined,
|
||||
newlinesBetween: 'always',
|
||||
internalPattern: ['^src/.+'],
|
||||
groups: [
|
||||
'style',
|
||||
'side-effect',
|
||||
'type',
|
||||
['builtin', 'external'],
|
||||
customGroups.mui,
|
||||
customGroups.routes,
|
||||
customGroups.hooks,
|
||||
customGroups.utils,
|
||||
'internal',
|
||||
customGroups.components,
|
||||
customGroups.sections,
|
||||
customGroups.auth,
|
||||
customGroups.types,
|
||||
['parent', 'sibling', 'index'],
|
||||
['parent-type', 'sibling-type', 'index-type'],
|
||||
'object',
|
||||
'unknown',
|
||||
],
|
||||
customGroups: {
|
||||
value: {
|
||||
[customGroups.mui]: ['^@mui/.+'],
|
||||
[customGroups.auth]: ['^src/auth/.+'],
|
||||
[customGroups.hooks]: ['^src/hooks/.+'],
|
||||
[customGroups.utils]: ['^src/utils/.+'],
|
||||
[customGroups.types]: ['^src/types/.+'],
|
||||
[customGroups.routes]: ['^src/routes/.+'],
|
||||
[customGroups.sections]: ['^src/sections/.+'],
|
||||
[customGroups.components]: ['^src/components/.+'],
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Custom ESLint configuration.
|
||||
*/
|
||||
export const customConfig = {
|
||||
plugins: {
|
||||
'react-hooks': reactHooksPlugin,
|
||||
'unused-imports': unusedImportsPlugin,
|
||||
perfectionist: perfectionistPlugin,
|
||||
import: importPlugin,
|
||||
},
|
||||
settings: {
|
||||
// https://www.npmjs.com/package/eslint-import-resolver-typescript
|
||||
...importPlugin.configs.typescript.settings,
|
||||
'import/resolver': {
|
||||
...importPlugin.configs.typescript.settings['import/resolver'],
|
||||
typescript: {
|
||||
project: './tsconfig.json',
|
||||
},
|
||||
},
|
||||
},
|
||||
rules: {
|
||||
...commonRules(),
|
||||
...importRules(),
|
||||
...unusedImportsRules(),
|
||||
...sortImportsRules(),
|
||||
},
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default [
|
||||
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
|
||||
{ ignores: ['*', '!src/', '!eslint.config.*'] },
|
||||
{
|
||||
languageOptions: {
|
||||
globals: { ...globals.browser, ...globals.node },
|
||||
},
|
||||
settings: { react: { version: 'detect' } },
|
||||
},
|
||||
eslintJs.configs.recommended,
|
||||
...eslintTs.configs.recommended,
|
||||
reactPlugin.configs.flat.recommended,
|
||||
customConfig,
|
||||
];
|
15
03_source/frontend/index.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Minimal UI Kit</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
140
03_source/frontend/package.json
Normal file
@@ -0,0 +1,140 @@
|
||||
{
|
||||
"name": "@minimal-kit/vite-ts",
|
||||
"author": "Minimals",
|
||||
"version": "7.0.0",
|
||||
"description": "Vite & TypeScript",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"start": "vite preview",
|
||||
"build": "tsc && vite build",
|
||||
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
||||
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
|
||||
"lint:print": "npx eslint --print-config eslint.config.mjs > eslint-show-config.json",
|
||||
"fm:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\"",
|
||||
"fm:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
||||
"fix:all": "npm run lint:fix && npm run fm:fix",
|
||||
"clean": "rm -rf node_modules .next out dist build",
|
||||
"re:dev": "yarn clean && yarn install && yarn dev",
|
||||
"re:build": "yarn clean && yarn install && yarn build",
|
||||
"re:build-npm": "npm run clean && npm install && npm run build",
|
||||
"tsc:dev": "yarn dev & yarn tsc:watch",
|
||||
"tsc:watch": "tsc --noEmit --watch",
|
||||
"tsc:print": "npx tsc --showConfig"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20"
|
||||
},
|
||||
"packageManager": "yarn@1.22.22",
|
||||
"dependencies": {
|
||||
"@auth0/auth0-react": "^2.3.0",
|
||||
"@dnd-kit/core": "^6.3.1",
|
||||
"@dnd-kit/sortable": "^10.0.0",
|
||||
"@dnd-kit/utilities": "^3.2.2",
|
||||
"@emotion/cache": "^11.14.0",
|
||||
"@emotion/react": "^11.14.0",
|
||||
"@emotion/styled": "^11.14.0",
|
||||
"@fontsource-variable/dm-sans": "^5.2.5",
|
||||
"@fontsource-variable/inter": "^5.2.5",
|
||||
"@fontsource-variable/nunito-sans": "^5.2.5",
|
||||
"@fontsource-variable/public-sans": "^5.2.5",
|
||||
"@fontsource/barlow": "^5.2.5",
|
||||
"@fullcalendar/core": "^6.1.15",
|
||||
"@fullcalendar/daygrid": "^6.1.15",
|
||||
"@fullcalendar/interaction": "^6.1.15",
|
||||
"@fullcalendar/list": "^6.1.15",
|
||||
"@fullcalendar/react": "^6.1.15",
|
||||
"@fullcalendar/timegrid": "^6.1.15",
|
||||
"@fullcalendar/timeline": "^6.1.15",
|
||||
"@hookform/resolvers": "^4.1.3",
|
||||
"@iconify/react": "^5.2.0",
|
||||
"@mui/lab": "^7.0.0-beta.10",
|
||||
"@mui/material": "^7.0.1",
|
||||
"@mui/x-data-grid": "^7.28.2",
|
||||
"@mui/x-date-pickers": "^7.28.2",
|
||||
"@mui/x-tree-view": "^7.28.1",
|
||||
"@react-pdf/renderer": "^4.3.0",
|
||||
"@supabase/supabase-js": "^2.49.3",
|
||||
"@tiptap/core": "^2.11.6",
|
||||
"@tiptap/extension-code-block": "^2.11.6",
|
||||
"@tiptap/extension-code-block-lowlight": "^2.11.6",
|
||||
"@tiptap/extension-image": "^2.11.6",
|
||||
"@tiptap/extension-link": "^2.11.6",
|
||||
"@tiptap/extension-placeholder": "^2.11.6",
|
||||
"@tiptap/extension-text-align": "^2.11.6",
|
||||
"@tiptap/extension-underline": "^2.11.6",
|
||||
"@tiptap/pm": "^2.11.6",
|
||||
"@tiptap/react": "^2.11.6",
|
||||
"@tiptap/starter-kit": "^2.11.6",
|
||||
"apexcharts": "^4.5.0",
|
||||
"autosuggest-highlight": "^3.3.4",
|
||||
"aws-amplify": "^6.14.1",
|
||||
"axios": "^1.8.4",
|
||||
"dayjs": "^1.11.13",
|
||||
"embla-carousel": "^8.5.2",
|
||||
"embla-carousel-auto-height": "^8.5.2",
|
||||
"embla-carousel-auto-scroll": "^8.5.2",
|
||||
"embla-carousel-autoplay": "^8.5.2",
|
||||
"embla-carousel-fade": "^8.5.2",
|
||||
"embla-carousel-react": "^8.5.2",
|
||||
"es-toolkit": "^1.34.1",
|
||||
"firebase": "^11.5.0",
|
||||
"framer-motion": "^12.6.1",
|
||||
"i18next": "^24.2.3",
|
||||
"i18next-browser-languagedetector": "^8.0.4",
|
||||
"i18next-resources-to-backend": "^1.2.1",
|
||||
"lowlight": "^3.3.0",
|
||||
"mapbox-gl": "^3.10.0",
|
||||
"minimal-shared": "^1.0.7",
|
||||
"mui-one-time-password-input": "^4.0.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"react": "^19.1.0",
|
||||
"react-apexcharts": "^1.7.0",
|
||||
"react-dom": "^19.1.0",
|
||||
"react-dropzone": "^14.3.8",
|
||||
"react-hook-form": "^7.55.0",
|
||||
"react-i18next": "^15.4.1",
|
||||
"react-map-gl": "^8.0.2",
|
||||
"react-markdown": "^10.1.0",
|
||||
"react-organizational-chart": "^2.2.1",
|
||||
"react-phone-number-input": "^3.4.12",
|
||||
"react-router": "^7.4.1",
|
||||
"rehype-highlight": "^7.0.2",
|
||||
"rehype-raw": "^7.0.0",
|
||||
"remark-gfm": "^4.0.1",
|
||||
"simplebar-react": "^3.3.0",
|
||||
"sonner": "^2.0.2",
|
||||
"stylis": "^4.3.6",
|
||||
"stylis-plugin-rtl": "^2.1.1",
|
||||
"swr": "^2.3.3",
|
||||
"turndown": "^7.2.0",
|
||||
"yet-another-react-lightbox": "^3.21.8",
|
||||
"zod": "^3.24.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.23.0",
|
||||
"@types/autosuggest-highlight": "^3.2.3",
|
||||
"@types/node": "^22.13.14",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"@types/react": "^19.0.12",
|
||||
"@types/react-dom": "^19.0.4",
|
||||
"@types/stylis": "^4.2.7",
|
||||
"@types/turndown": "^5.0.5",
|
||||
"@typescript-eslint/parser": "^8.28.0",
|
||||
"@vitejs/plugin-react-swc": "^3.8.1",
|
||||
"eslint": "^9.23.0",
|
||||
"eslint-import-resolver-typescript": "^4.2.7",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-perfectionist": "^4.10.1",
|
||||
"eslint-plugin-react": "^7.37.4",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-unused-imports": "^4.1.4",
|
||||
"globals": "^16.0.0",
|
||||
"prettier": "^3.5.3",
|
||||
"typescript": "^5.8.2",
|
||||
"typescript-eslint": "^8.28.0",
|
||||
"vite": "^6.2.3",
|
||||
"vite-plugin-checker": "^0.9.1"
|
||||
}
|
||||
}
|
15
03_source/frontend/prettier.config.mjs
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @type {import("prettier").Config}
|
||||
* Need to restart IDE when changing configuration
|
||||
* Open the command palette (Ctrl + Shift + P) and execute the command > Reload Window.
|
||||
*/
|
||||
const config = {
|
||||
semi: true,
|
||||
tabWidth: 2,
|
||||
endOfLine: 'lf',
|
||||
printWidth: 100,
|
||||
singleQuote: true,
|
||||
trailingComma: 'es5',
|
||||
};
|
||||
|
||||
export default config;
|
After Width: | Height: | Size: 9.7 KiB |
BIN
03_source/frontend/public/assets/background/background-3.webp
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
03_source/frontend/public/assets/background/background-4.jpg
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
03_source/frontend/public/assets/background/background-5.webp
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
03_source/frontend/public/assets/background/background-6.webp
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
03_source/frontend/public/assets/background/background-7.webp
Normal file
After Width: | Height: | Size: 8.1 KiB |
15
03_source/frontend/public/assets/background/overlay.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg width="1440" height="1024" viewBox="0 0 1440 1024" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1900_142575)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M1440 0H0V1024H1440V0Z" fill="url(#paint0_radial_1900_142575)"/>
|
||||
</g>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_1900_142575" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(1303.81 140.567) rotate(107.578) scale(1510.53 831.945)">
|
||||
<stop stop-color="#161C24" stop-opacity="0.24"/>
|
||||
<stop offset="0.498647" stop-color="#161C24" stop-opacity="0.8"/>
|
||||
<stop offset="1" stop-color="#161C24"/>
|
||||
</radialGradient>
|
||||
<clipPath id="clip0_1900_142575">
|
||||
<rect width="1440" height="1024" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 737 B |
After Width: | Height: | Size: 75 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 145 KiB |
BIN
03_source/frontend/public/assets/icons/apps/ic-app-1.webp
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
03_source/frontend/public/assets/icons/apps/ic-app-2.webp
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
03_source/frontend/public/assets/icons/apps/ic-app-3.webp
Normal file
After Width: | Height: | Size: 856 B |
BIN
03_source/frontend/public/assets/icons/apps/ic-app-4.webp
Normal file
After Width: | Height: | Size: 848 B |
BIN
03_source/frontend/public/assets/icons/apps/ic-app-5.webp
Normal file
After Width: | Height: | Size: 738 B |
@@ -0,0 +1,5 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M4 22.5098L7.9997 15.5098H23.9998L19.9997 22.5098H4Z" fill="#3777E3"/>
|
||||
<path d="M16.0003 15.5098H24.0001L16.0003 1.50977H8L16.0003 15.5098Z" fill="#FFCF63"/>
|
||||
<path d="M0 15.5098L4.00024 22.5098L12 8.50977L7.99994 1.50977L0 15.5098Z" fill="#11A861"/>
|
||||
</svg>
|
After Width: | Height: | Size: 362 B |
@@ -0,0 +1,3 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.00015 4.65586L7.0599 0.00976562L12.0001 4.16598L12 4.16608L12 4.16609L4.8819 8.5959L0.00015 4.65586ZM19.1181 8.59585L12 4.16609L12.0001 4.166L12.0001 4.16598L16.9403 0.00984113L24 4.65594L19.1182 8.59597L19.1181 8.59582L19.1181 8.59585ZM19.1181 8.59585L19.1182 8.59597L23.9998 12.5366L16.9401 17.1827L11.9999 13.0265L7.05975 17.1826L0 12.5365L4.88175 8.5965L12 13.0264L19.1181 8.59585ZM12.0145 13.9206L7.05997 18.0648L4.93972 16.6693V18.2333L12.0145 22.5098L19.0892 18.2333V16.6693L16.969 18.0648L12.0145 13.9206Z" fill="#0F82E2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 687 B |
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.9688 8.04883C16.8726 8.04883 16.7764 8.05136 16.6802 8.05628C15.5573 7.14011 14.1652 6.64258 12.6914 6.64253C12.4578 6.64253 12.2273 6.6556 12.0002 6.68039C9.14361 6.9922 6.852 9.2126 6.43223 12.0358C5.77022 12.3495 5.1788 12.8102 4.71169 13.3846C4.00087 14.2587 3.60938 15.3603 3.60938 16.4864C3.60938 16.8879 3.65808 17.2782 3.7492 17.6521C1.66284 17.5393 0 15.8066 0 13.6926C0 11.7306 1.43241 10.0968 3.30628 9.7818C3.62358 7.45089 5.62716 5.64888 8.04375 5.64888C8.35444 5.64888 8.66363 5.67907 8.96761 5.73888C9.78754 4.88342 10.8463 4.31708 12 4.10792C12.3286 4.04834 12.6648 4.01758 13.0055 4.01758C15.6187 4.01758 17.819 5.81786 18.4321 8.24322C17.9583 8.11525 17.4666 8.04883 16.9688 8.04883Z" fill="#0A49B2"/>
|
||||
<path d="M7.77023 13.0537C7.76977 13.026 7.76953 12.9983 7.76953 12.9707C7.76953 10.4914 9.61228 8.43478 12 8.09766C12.226 8.06573 12.4567 8.04883 12.6914 8.04883C14.0249 8.04883 15.2824 8.58166 16.2056 9.52459C16.457 9.47837 16.7123 9.45508 16.9688 9.45508C19.0768 9.45508 20.8286 11.0091 21.1387 13.0317C22.7657 13.3392 24 14.7713 24 16.4863C24 18.4248 22.4229 20.002 20.4844 20.002L8.53125 20.0019C6.59273 20.0019 5.01562 18.4248 5.01562 16.4863C5.01562 14.809 6.19631 13.4023 7.77023 13.0537Z" fill="#0A49B2"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m40 59.3158c0-3.4881 2.8277-6.3158 6.3158-6.3158h107.3682c3.488 0 6.316 2.8277 6.316 6.3158v12.6316c0 3.4881-2.828 6.3158-6.316 6.3158h-107.3682c-3.4881 0-6.3158-2.8277-6.3158-6.3158z" opacity=".24"/><path d="m40 94.0526c0-3.4881 2.8277-6.3158 6.3158-6.3158h107.3682c3.488 0 6.316 2.8277 6.316 6.3158v12.6314c0 3.488-2.828 6.316-6.316 6.316h-107.3682c-3.4881 0-6.3158-2.828-6.3158-6.316z" opacity=".24"/><path d="m40 128.789c0-3.488 2.8277-6.315 6.3158-6.315h107.3682c3.488 0 6.316 2.827 6.316 6.315v12.632c0 3.488-2.828 6.316-6.316 6.316h-107.3682c-3.4881 0-6.3158-2.828-6.3158-6.316z" opacity=".24"/><path d="m148.943 62.7486-3.954 3.8667-3.954-3.8667c-.362-.3413-.936-.3364-1.292.011-.355.3474-.36.9092-.011 1.2626l4.605 4.5035c.36.3516.943.3516 1.303 0l4.605-4.5035c.239-.2261.336-.561.251-.8759-.084-.3149-.336-.5609-.658-.6433s-.664.0115-.895.2456z" opacity=".48"/><path d="m148.943 97.4854-3.954 3.8666-3.954-3.8666c-.362-.3413-.936-.3364-1.292.011-.355.3474-.36.9092-.011 1.2626l4.605 4.504c.36.351.943.351 1.303 0l4.605-4.504c.239-.2261.336-.561.251-.8759-.084-.3149-.336-.5608-.658-.6433-.322-.0824-.664.0115-.895.2456z" opacity=".48"/><path d="m148.943 132.223-3.954 3.866-3.954-3.866c-.362-.342-.936-.337-1.292.01-.355.348-.36.91-.011 1.263l4.605 4.504c.36.351.943.351 1.303 0l4.605-4.504c.239-.226.336-.561.251-.876-.084-.315-.336-.561-.658-.643-.322-.083-.664.011-.895.246z" opacity=".48"/><rect height="7.89474" rx="3.94737" width="31.5789" x="49.4736" y="61.6841"/><rect height="7.89474" opacity=".48" rx="3.94737" width="50.5263" x="49.4736" y="96.4209"/><rect height="7.89474" opacity=".24" rx="3.94737" width="63.1579" x="49.4736" y="131.158"/></g></svg>
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m36 80.1053c0-5.581 4.5243-10.1053 10.1053-10.1053h107.7897c5.581 0 10.105 4.5243 10.105 10.1053v40.4207c0 5.581-4.524 10.106-10.105 10.106h-107.7897c-5.581 0-10.1053-4.525-10.1053-10.106z" opacity=".24"/><rect height="8.42105" opacity=".48" rx="4.21053" width="26.9474" x="88.2104" y="88.5264"/><rect height="8.42105" opacity=".24" rx="4.21053" width="53.8947" x="88.2104" y="103.684"/><path clip-rule="evenodd" d="m66.3032 89.0863 11.1633 18.0377c.8251 1.318.853 2.968.0727 4.311-.8909 1.475-2.523 2.372-4.279 2.354h-22.3264c-1.7681.007-3.4029-.914-4.279-2.411-.7576-1.328-.7299-2.95.0727-4.254l11.1633-18.0377c.9173-1.3982 2.503-2.2443 4.2062-2.2443s3.2889.8461 4.2062 2.2443zm-6.4834 19.0887c0 1.241 1.0233 2.246 2.2857 2.246 1.2623 0 2.2857-1.005 2.2857-2.246 0-1.24-1.0234-2.245-2.2857-2.245-1.2624 0-2.2857 1.005-2.2857 2.245zm2.2857-4.491c1.2623 0 2.2857-1.005 2.2857-2.245v-8.9829c0-1.2402-1.0234-2.2456-2.2857-2.2456-1.2624 0-2.2857 1.0054-2.2857 2.2456v8.9829c0 1.24 1.0233 2.245 2.2857 2.245z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m36 98.158c0-5.581 4.5243-10.1053 10.1053-10.1053h107.7897c5.581 0 10.105 4.5243 10.105 10.1053v40.421c0 5.581-4.524 10.105-10.105 10.105h-107.7897c-5.581 0-10.1053-4.524-10.1053-10.105z" opacity=".24"/><rect height="8.42105" opacity=".48" rx="4.21053" width="26.9474" x="49.4736" y="106.579"/><rect height="8.42105" opacity=".24" rx="4.21053" width="53.8947" x="49.4736" y="121.737"/><rect height="30.3158" opacity=".24" rx="15.1579" width="107.789" x="46.1055" y="51"/><path d="m61.162 60.2632c2.7347 0 4.9516 2.2169 4.9516 4.9516 0 .94-.262 1.8189-.7168 2.5675l2.2578 2.2578c.4604.4604.4604 1.2068 0 1.6673-.4464.4464-1.1619.4599-1.6246.0405l-.0427-.0405-2.2577-2.2579c-.7487.4549-1.6275.7168-2.5676.7168-2.7347 0-4.9516-2.2169-4.9516-4.9515 0-2.7347 2.2169-4.9516 4.9516-4.9516zm0 2.3579c-1.4324 0-2.5937 1.1612-2.5937 2.5937 0 1.4324 1.1613 2.5936 2.5937 2.5936.6994 0 1.3492-.2748 1.834-.7596s.7597-1.1347.7597-1.834c0-1.4325-1.1612-2.5937-2.5937-2.5937z" opacity=".48"/><rect height="8.42105" rx="4.21053" width="47.1579" x="76.4209" y="61.9473"/></g></svg>
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m100 154c29.823 0 54-24.177 54-54 0-29.8234-24.177-54-54-54-29.8234 0-54 24.1766-54 54 0 29.823 24.1766 54 54 54z" opacity=".24"/><path d="m99.9997 100.41c5.7713 0 10.4503-4.4087 10.4503-9.8476s-4.679-9.848-10.4503-9.848c-5.7716 0-10.4504 4.4091-10.4504 9.848s4.6788 9.8476 10.4504 9.8476zm-7.1889 3.065c4.6767-1.46 9.7012-1.46 14.3782 0 4.596 1.435 8.407 4.626 10.568 8.85l1.18 2.307c.812 1.587.157 3.518-1.464 4.313-.456.224-.96.341-1.47.341h-32.0063c-1.8128 0-3.2823-1.439-3.2823-3.215 0-.499.119-.992.3477-1.439l1.1799-2.307c2.1612-4.224 5.972-7.415 10.5688-8.85z"/></g></svg>
|
After Width: | Height: | Size: 706 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><g opacity=".24"><path d="m126.625 68.75h-74.4835c-4.6385 0-8.8462 2.0173-11.778 5.2332-3.4299 3.7622-.9416 9.2429 3.4014 11.8994l40.7183 24.9054c3.8472 2.353 8.6889 2.35 12.5337-.007l40.6061-24.8958c.018-.011.036-.0221.054-.0333-6.516-2.9377-11.052-9.4901-11.052-17.1019z"/><path d="m145.375 112.954c0-9.371-10.261-15.1263-18.258-10.239l-33.2658 20.33c-1.033.648-2.1952.907-3.2283.907-1.033 0-2.1952-.259-3.2283-.907l-33.1255-20.295c-7.9959-4.8993-18.2691.855-18.2691 10.232v20.43c0 8.941 7.2314 16.197 16.1415 16.197h77.0915c8.911 0 16.142-7.256 16.142-16.197z"/></g><path clip-rule="evenodd" d="m164.125 68.75c0 10.3553-8.395 18.75-18.75 18.75s-18.75-8.3947-18.75-18.75 8.395-18.75 18.75-18.75 18.75 8.3947 18.75 18.75zm-10.937 6.6368c0 1.3046-.761 1.957-2.283 1.957h-9.104c-1.522 0-2.282-.6524-2.282-1.957 0-.6347.183-1.1108.55-1.4281.368-.3173.945-.476 1.732-.476 1.174 0 2.125-.9515 2.125-2.1251v-4.9825c0-1.0772-1.172-1.7452-2.099-1.1964-.297.1763-.603.2645-.918.2645-.49 0-.909-.216-1.259-.6479-.35-.432-.525-.9124-.525-1.4413 0-.7229.306-1.2694.918-1.6397l4.198-2.4594c.77-.4408 1.495-.6611 2.178-.6611.699 0 1.263.2115 1.692.6346.428.4232.643.9962.643 1.719v10.3839c0 1.1882.963 2.1514 2.151 2.1514.787 0 1.364.1587 1.732.476.367.3173.551.7934.551 1.4281z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m67.3426 75h-14.1657c-4.516 0-8.1769 3.6727-8.1769 8.2031v32.8129c0 4.53 3.6609 8.203 8.1769 8.203h14.1657c1.367 0 2.6435-.686 3.4018-1.827l13.6281-20.508c.9156-1.377.9156-3.172 0-4.5497l-13.6281-20.5078c-.7583-1.1411-2.0348-1.8265-3.4018-1.8265z"/><path d="m138.309 75h-52.9617c-1.5078 0-2.8932.8325-3.6047 2.1662-.7115 1.3336-.6335 2.9519.2028 4.2105l10.6043 15.9576c.9156 1.3777.9156 3.1727 0 4.5497l-10.6043 15.958c-.8363 1.259-.9143 2.877-.2028 4.211.7115 1.333 2.0969 2.166 3.6047 2.166h52.9617c1.367 0 2.644-.686 3.402-1.827l10.604-15.957c2.747-4.133 2.747-9.5179 0-13.6511l-10.604-15.9574c-.758-1.1411-2.035-1.8265-3.402-1.8265z" opacity=".24"/></g></svg>
|
After Width: | Height: | Size: 789 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m30 81.3684c0-4.0694 3.299-7.3684 7.3684-7.3684h125.2636c4.069 0 7.368 3.299 7.368 7.3684v36.8426c0 4.069-3.299 7.368-7.368 7.368h-125.2636c-4.0694 0-7.3684-3.299-7.3684-7.368z" opacity=".24"/><rect height="16.5789" rx="8.28947" width="70" x="65" y="91.5"/></g></svg>
|
After Width: | Height: | Size: 393 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path clip-rule="evenodd" d="m78.6667 68c-5.8911 0-10.6667 4.7756-10.6667 10.6667v42.6663c0 5.891 4.7756 10.667 10.6667 10.667h42.6663c5.891 0 10.667-4.776 10.667-10.667v-42.6663c0-5.8911-4.776-10.6667-10.667-10.6667zm5.3333 7.1111c-4.9092 0-8.8889 3.9797-8.8889 8.8889v32c0 4.909 3.9797 8.889 8.8889 8.889h32c4.909 0 8.889-3.98 8.889-8.889v-32c0-4.9092-3.98-8.8889-8.889-8.8889z" fill-rule="evenodd" opacity=".24"/><path d="m111.599 87.8567c1.299-1.4649 3.535-1.5952 4.994-.291 1.435 1.2831 1.584 3.4768.351 4.9424l-.062.0715-17.953 20.2474c-1.3313 1.502-3.6312 1.592-5.0746.217l-.0681-.067-10.5282-10.571c-1.3813-1.387-1.3813-3.6355 0-5.0224 1.3587-1.3641 3.5476-1.3865 4.9334-.067l.0687.067 7.8774 7.9094z"/></g></svg>
|
After Width: | Height: | Size: 838 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="51.5789" opacity=".24" rx="25.7895" width="140" x="30" y="74"/><rect height="12.8947" opacity=".48" rx="6.44737" width="60.7895" x="83.4209" y="93.342"/><path clip-rule="evenodd" d="m76.0527 99.7895c0 11.1915-9.0721 20.2635-20.2632 20.2635-11.191 0-20.2631-9.072-20.2631-20.2635 0-11.191 9.0721-20.2631 20.2631-20.2631 11.1911 0 20.2632 9.0721 20.2632 20.2631zm-24.4747 8.8505 3.7168-1.965c.3095-.164.6798-.164.9892 0l3.7168 1.965c.2819.149.6047.201.9185.147.7881-.136 1.3174-.889 1.1822-1.682l-.7112-4.171c-.0583-.342.0546-.691.3022-.934l3.0118-2.9525c.228-.2236.3764-.5165.4222-.8335.115-.7959-.4333-1.5349-1.2246-1.6506l-4.1571-.6076c-.3451-.0504-.6432-.2677-.7968-.5808l-1.8603-3.7914c-.1409-.2872-.372-.5197-.6575-.6614-.7171-.356-1.5852-.0599-1.9391.6614l-1.8602 3.7914c-.1537.3131-.4517.5304-.7969.5808l-4.1571.6076c-.3151.0461-.6063.1954-.8285.4247-.5582.576-.5465 1.498.0261 2.0594l3.0118 2.9525c.2476.243.3606.592.3023.934l-.7113 4.171c-.0538.316-.0027.64.1455.924.3721.712 1.2475.986 1.9552.611z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g clip-rule="evenodd" fill="#919eab" fill-rule="evenodd"><path d="m153.471 91.4441c-1.568-9.5673-6.445-16.6993-14.109-20.5262-4.703-2.2614-9.58-3.3051-14.805-3.3051-7.142 0-13.761 2.0874-19.683 4.0009l-.523.1606c-4.301 1.3234-7.9591 2.4486-10.9731 2.4486-2.6128 0-4.5288-.8697-5.9223-2.6092-1.1236-1.4428-.4721-3.6241.3186-6.2718l.0004-.0012c.0672-.225.1354-.4535.2036-.6851l.0376-.1312c1.0401-3.6338 2.3656-8.2641-.5602-12.0454-1.7418-2.2613-4.7029-3.479-8.1866-3.479-3.4836 0-7.1415 1.2177-10.1026 3.1311-14.4572 9.9152-23.1664 26.4406-23.1664 44.1836 0 29.9193 24.3857 54.2723 54.345 54.2723 24.212 0 45.636-16.177 52.255-39.486.523-2.436 2.265-10.785.871-19.6569zm-29.089 13.3939c-6.793 0-12.192-5.3923-12.192-12.1764s5.399-12.1765 12.192-12.1765c6.794 0 12.193 5.3924 12.193 12.1765s-5.399 12.1764-12.193 12.1764zm-31.3525 22.614c0 3.827 3.1353 6.958 6.9673 6.958 3.8322 0 6.9672-3.131 6.9672-6.958s-3.135-6.958-6.9672-6.958c-3.832 0-6.9673 3.131-6.9673 6.958zm-18.1709-3.52c-3.4816-.377-6.2148-3.344-6.2148-6.917 0-3.349 2.4005-6.165 5.5678-6.816.4524-.093.9205-.142 1.3995-.142 0 0 .0001 0 0 0 3.8321 0 6.9676 3.131 6.9676 6.958 0 3.349-2.4006 6.164-5.568 6.816-.4523.093-.9203.142-1.3992.142-.0001 0 .0001 0 0 0-.2542 0-.5056-.014-.7529-.041zm-13.1817-31.2702c0-3.8269 3.1353-6.958 6.9673-6.958s6.9673 3.1311 6.9673 6.958-3.1353 6.9581-6.9673 6.9581-6.9673-3.1312-6.9673-6.9581z" opacity=".24"/><path d="m93.0294 127.452c0 3.827 3.1353 6.958 6.9673 6.958 3.8323 0 6.9673-3.131 6.9673-6.958s-3.135-6.958-6.9673-6.958c-3.832 0-6.9673 3.131-6.9673 6.958zm-18.1709-3.52c-3.4816-.378-6.2148-3.344-6.2148-6.917 0-3.349 2.4005-6.165 5.5677-6.816.4525-.093.9206-.142 1.3996-.142 3.8321 0 6.9676 3.131 6.9676 6.958 0 3.348-2.4006 6.164-5.568 6.816-.4523.093-.9203.142-1.3992.142-.2542 0-.5056-.014-.7529-.041zm-13.1817-31.2703c0-3.827 3.1353-6.9581 6.9673-6.9581s6.9673 3.1311 6.9673 6.9581c0 3.8269-3.1353 6.958-6.9673 6.958s-6.9673-3.1311-6.9673-6.958z" opacity=".48"/><path d="m124.382 104.838c-6.793 0-12.193-5.3922-12.193-12.1763s5.4-12.1766 12.193-12.1766 12.193 5.3925 12.193 12.1766-5.4 12.1763-12.193 12.1763z"/></g></svg>
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m40 67c0-5.5228 4.4772-10 10-10h100c5.523 0 10 4.4772 10 10v10h-120z" opacity=".48"/><path d="m40 77v56.667c0 5.523 4.4772 10 10 10h100c5.523 0 10-4.477 10-10v-56.667z" opacity=".24"/><g opacity=".48"><path d="m50 96.1667c0-2.7614 2.2386-5 5-5h20c2.7614 0 5 2.2386 5 5v6.6663c0 2.762-2.2386 5-5 5h-20c-2.7614 0-5-2.238-5-5z"/><path d="m85 96.1667c0-2.7614 2.2386-5 5-5h55c2.761 0 5 2.2386 5 5v6.6663c0 2.762-2.239 5-5 5h-55c-2.7614 0-5-2.238-5-5z"/></g><g opacity=".24"><path d="m50 117.833c0-2.761 2.2386-5 5-5h20c2.7614 0 5 2.239 5 5v6.667c0 2.761-2.2386 5-5 5h-20c-2.7614 0-5-2.239-5-5z"/><path d="m85 117.833c0-2.761 2.2386-5 5-5h55c2.761 0 5 2.239 5 5v6.667c0 2.761-2.239 5-5 5h-55c-2.7614 0-5-2.239-5-5z"/></g></g></svg>
|
After Width: | Height: | Size: 852 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m73.3332 51.3333c0-1.8409-1.4924-3.3333-3.3334-3.3333-1.8409 0-3.3333 1.4924-3.3333 3.3333v10h6.6667z"/><path d="m133.333 51.3333c0-1.8409-1.492-3.3333-3.333-3.3333s-3.333 1.4924-3.333 3.3333v10h6.666z"/><path d="m40 74.6667c0-5.5228 4.4772-10 10-10h100c5.523 0 10 4.4772 10 10v66.6663c0 5.523-4.477 10-10 10h-100c-5.5228 0-10-4.477-10-10z" opacity=".24"/><g opacity=".24"><path d="m60 115.5c0-2.761 2.2386-5 5-5h13.3333c2.7615 0 5 2.239 5 5v6.667c0 2.761-2.2385 5-5 5h-13.3333c-2.7614 0-5-2.239-5-5z"/><path d="m88.3333 115.5c0-2.761 2.2386-5 5-5h13.3337c2.761 0 5 2.239 5 5v6.667c0 2.761-2.239 5-5 5h-13.3337c-2.7614 0-5-2.239-5-5z"/></g><g opacity=".48"><path d="m60 93.8333c0-2.7615 2.2386-5 5-5h13.3333c2.7615 0 5 2.2385 5 5v6.6667c0 2.761-2.2385 5-5 5h-13.3333c-2.7614 0-5-2.239-5-5z"/><path d="m88.3333 93.8333c0-2.7615 2.2386-5 5-5h13.3337c2.761 0 5 2.2385 5 5v6.6667c0 2.761-2.239 5-5 5h-13.3337c-2.7614 0-5-2.239-5-5z"/><path d="m116.667 93.8333c0-2.7615 2.238-5 5-5h13.333c2.761 0 5 2.2385 5 5v6.6667c0 2.761-2.239 5-5 5h-13.333c-2.762 0-5-2.239-5-5z"/></g><g opacity=".48"><path d="m73.3332 73.0001c0 1.8409-1.4924 3.3333-3.3334 3.3333-1.8409 0-3.3333-1.4924-3.3333-3.3333 0-1.841 1.4924-3.3334 3.3333-3.3334 1.841 0 3.3334 1.4924 3.3334 3.3334z"/><path d="m133.333 73.0001c0 1.8409-1.492 3.3333-3.333 3.3333s-3.333-1.4924-3.333-3.3333c0-1.841 1.492-3.3334 3.333-3.3334s3.333 1.4924 3.333 3.3334z"/></g></g></svg>
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m40 71.4737c0-5.2322 4.2415-9.4737 9.4737-9.4737h101.0523c5.232 0 9.474 4.2415 9.474 9.4737v56.8423c0 5.232-4.242 9.473-9.474 9.473h-101.0523c-5.2322 0-9.4737-4.241-9.4737-9.473z" opacity=".24"/><rect height="7.89474" rx="3.94737" width="44.2105" x="52.6313" y="74.6316"/><rect height="7.89474" opacity=".24" rx="3.94737" width="44.2105" x="52.6313" y="103.053"/><rect height="7.89474" opacity=".48" rx="3.94737" width="63.1579" x="52.6313" y="88.842"/><rect height="9.47368" opacity=".24" rx="4.73684" width="18.9474" x="109.474" y="118.842"/><rect height="9.47368" opacity=".48" rx="4.73684" width="18.9474" x="131.579" y="118.842"/></g></svg>
|
After Width: | Height: | Size: 771 B |
@@ -0,0 +1,8 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M40 111.559V100.441C40 79.4768 40 68.992 47.032 62.4821C52.876 57.0618 66.1839 56.1501 81.9999 56V156C66.1839 155.85 52.876 154.938 47.032 149.518C40 143.008 40 132.523 40 111.559Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M152.968 62.5111C160 69.0167 160 79.4944 160 100.444V111.556C160 132.506 160 142.983 152.968 149.489C145.936 155.994 134.626 156 112 156H82V56H112C134.626 56 145.942 56 152.968 62.5111Z" fill="#919EAB"/>
|
||||
<g opacity="0.48">
|
||||
<path d="M139.4 90C140.62 90 141.79 90.4741 142.653 91.318C143.515 92.1619 144 93.3065 144 94.5C144 95.6935 143.515 96.838 142.653 97.682C141.79 98.5259 140.62 99 139.4 99H102.6C101.38 99 100.21 98.5259 99.3473 97.682C98.4846 96.838 98 95.6935 98 94.5C98 93.3065 98.4846 92.1619 99.3473 91.318C100.21 90.4741 101.38 90 102.6 90H139.4Z" fill="#919EAB"/>
|
||||
<path d="M133.267 113C134.487 113 135.657 113.474 136.519 114.318C137.382 115.162 137.867 116.306 137.867 117.5C137.867 118.693 137.382 119.838 136.519 120.682C135.657 121.526 134.487 122 133.267 122H108.733C107.513 122 106.343 121.526 105.481 120.682C104.618 119.838 104.133 118.693 104.133 117.5C104.133 116.306 104.618 115.162 105.481 114.318C106.343 113.474 107.513 113 108.733 113H133.267Z" fill="#919EAB"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="108.447" width="108.364" x="75.6362" y="62"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120569"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120569" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120569"/></filter><path d="m85.4815 72.3506c4.3518-1.703 9.0227-2.48 13.6551-2.2609-7.3777 2.9882-14.1475 8.1644-18.4415 15.283-3.7274 6.0933-5.5182 13.3463-5.851 20.5553-1.1251 14.182 5.8179 28.492 16.8845 36.353 2.5555 1.785 5.3338 3.233 8.2714 4.148-7.1078.467-14.337-1.35-20.4575-5.223-7.3997-4.621-13.1545-12.134-15.8695-20.786-3.356-10.519-2.1182-22.5715 3.3945-32.0211 4.2087-7.3406 10.797-13.1214 18.414-16.0483z" fill="#fff"/><path d="m56.3933 76.2154c6.1537-4.2672 13.5745-6.5117 20.932-6.1527-6.8479 3.0063-13.2853 7.5654-17.5714 14.0799-5.1896 7.7026-7.0132 17.4224-6.6991 26.7474.6225 12.618 7.3409 24.654 17.2987 31.545 2.4212 1.711 5.1097 2.908 7.8285 3.964-7.5035.505-15.1364-1.605-21.4609-5.907-7.0462-4.738-12.4617-12.139-14.9959-20.566-2.2477-7.372-2.3028-15.478-.1432-22.8826 2.4378-8.4935 7.7899-15.9917 14.8113-20.828z" fill="#fff"/><path d="m56.3933 76.2154c6.1537-4.2672 13.5745-6.5117 20.932-6.1527-6.8479 3.0063-13.2853 7.5654-17.5714 14.0799-5.1896 7.7026-7.0132 17.4224-6.6991 26.7474.6225 12.618 7.3409 24.654 17.2987 31.545 2.4212 1.711 5.1097 2.908 7.8285 3.964-7.5035.505-15.1364-1.605-21.4609-5.907-7.0462-4.738-12.4617-12.139-14.9959-20.566-2.2477-7.372-2.3028-15.478-.1432-22.8826 2.4378-8.4935 7.7899-15.9917 14.8113-20.828z" fill="#007867" opacity=".16"/><path d="m85.4815 72.3506c4.3518-1.703 9.0227-2.48 13.6551-2.2609-7.3777 2.9882-14.1475 8.1644-18.4415 15.283-3.7274 6.0933-5.5182 13.3463-5.851 20.5553-1.1251 14.182 5.8179 28.492 16.8845 36.353 2.5555 1.785 5.3338 3.233 8.2714 4.148-7.1078.467-14.337-1.35-20.4575-5.223-7.3997-4.621-13.1545-12.134-15.8695-20.786-3.356-10.519-2.1182-22.5715 3.3945-32.0211 4.2087-7.3406 10.797-13.1214 18.414-16.0483z" fill="#007867" opacity=".4"/><g filter="url(#a)"><path d="m118.968 70.1076c8.219-.6272 16.621 1.5024 23.528 6.0098 9.309 5.966 15.807 16.1448 17.169 27.1346 1.385 10.147-1.566 20.789-7.994 28.76-5.578 7.06-13.723 12.037-22.563 13.732-6.42 1.26-13.16.819-19.364-1.261-6.061-2.018-11.595-5.598-15.9244-10.301-6.1603-6.602-9.8483-15.456-10.1515-24.488-.347-8.338 2.1516-16.7608 7.0058-23.5496 6.4373-9.1897 17.0931-15.2637 28.2941-16.0368z" fill="#00a76f"/></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 5.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="152" width="130.824" x="43" y="40"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120567"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120567" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120567"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="49.5293" width="49.5293" x="61.1177" y="65.1765"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="4" dy="4"/><feGaussianBlur stdDeviation="4"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120567"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120567" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-1" dy="-1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120567"/></filter><g filter="url(#a)"><rect fill="#fff" height="120" rx="12" width="98.8235" x="51" y="48"/></g><g filter="url(#b)"><path d="m65.1177 72.769c0-1.9831 1.6094-3.5925 3.5924-3.5925h26.3446c1.983 0 3.5924 1.6094 3.5924 3.5925v4.7899c0 1.983-1.6094 3.5924-3.5924 3.5924-1.9831 0-3.5925-1.6094-3.5925-3.5924v-1.1975h-5.9874v19.1597c1.983 0 3.5925 1.6094 3.5925 3.5924 0 1.9835-1.6095 3.5925-3.5925 3.5925h-7.1849c-1.983 0-3.5924-1.609-3.5924-3.5925 0-1.983 1.6094-3.5924 3.5924-3.5924v-19.1597h-5.9874v1.1975c0 1.983-1.6094 3.5924-3.5924 3.5924s-3.5924-1.6094-3.5924-3.5924z" fill="#00a76f"/></g><rect fill="#007867" height="8.82353" opacity=".4" rx="4.41176" width="24.7059" x="109.235" y="69.1765"/><rect fill="#007867" height="8.82353" opacity=".24" rx="4.41176" width="24.7059" x="109.235" y="81.5293"/><rect fill="#b76e00" height="8.82353" opacity=".16" rx="4.41176" width="24.7059" x="109.235" y="93.8823"/><g fill="#007867"><rect height="8.82353" opacity=".16" rx="4.41176" width="70.5882" x="65.1177" y="113.294"/><rect height="8.82353" opacity=".16" rx="4.41176" width="70.5882" x="65.1177" y="125.647"/></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 8.9 KiB |
@@ -0,0 +1,79 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.24" d="M149.372 111H43.438V121H149.372C148.855 119.427 148.575 117.746 148.575 116C148.575 114.254 148.855 112.573 149.372 111Z" fill="#919EAB"/>
|
||||
<g filter="url(#filter0_di_4130_41285)">
|
||||
<circle cx="37" cy="116" r="15" fill="#00A76F"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_di_4130_41285)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.3543 121L43.8716 113.415C44.5314 112.749 44.5314 111.666 43.8714 111C43.5517 110.678 43.1269 110.5 42.6749 110.5C42.2229 110.5 41.798 110.678 41.4783 111L35.1576 117.378L32.523 114.719C32.2035 114.397 31.7785 114.219 31.3265 114.219C30.8744 114.219 30.4495 114.397 30.13 114.719C29.8103 115.042 29.6343 115.471 29.6343 115.927C29.6343 116.383 29.8103 116.812 30.13 117.134L33.9612 121C34.2809 121.322 34.7058 121.5 35.1578 121.5C35.6098 121.5 36.0346 121.322 36.3543 121Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_di_4130_41285)">
|
||||
<circle cx="100" cy="116" r="20" fill="#FFAB00"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_di_4130_41285)">
|
||||
<path d="M95.9362 125C95.1987 125 94.6624 124.832 94.3272 124.497C94.0088 124.145 93.8496 123.634 93.8496 122.964C93.8496 122.494 93.9501 122.075 94.1512 121.707C94.3691 121.338 94.6457 120.978 94.9808 120.626L99.3803 116.025C100.034 115.321 100.495 114.718 100.763 114.215C101.048 113.712 101.19 113.209 101.19 112.707C101.19 112.07 100.981 111.592 100.562 111.274C100.143 110.955 99.5395 110.796 98.7518 110.796C98.3496 110.796 97.9222 110.855 97.4697 110.972C97.0172 111.073 96.5311 111.257 96.0116 111.525C95.5591 111.726 95.1484 111.785 94.7797 111.701C94.4278 111.617 94.1261 111.433 93.8747 111.148C93.6401 110.863 93.4892 110.536 93.4222 110.168C93.3719 109.799 93.4306 109.439 93.5982 109.087C93.7658 108.718 94.0674 108.416 94.5032 108.182C95.2741 107.763 96.0702 107.461 96.8915 107.277C97.7295 107.092 98.5674 107 99.4054 107C100.78 107 101.928 107.201 102.85 107.603C103.788 108.006 104.5 108.592 104.986 109.363C105.472 110.117 105.715 111.056 105.715 112.179C105.715 112.883 105.607 113.57 105.389 114.24C105.188 114.911 104.852 115.581 104.383 116.251C103.931 116.922 103.319 117.634 102.548 118.388L98.4753 122.411V121.254H104.685C105.305 121.254 105.774 121.413 106.093 121.732C106.428 122.05 106.595 122.511 106.595 123.115C106.595 123.718 106.428 124.187 106.093 124.522C105.774 124.841 105.305 125 104.685 125H95.9362Z" fill="white"/>
|
||||
</g>
|
||||
<circle opacity="0.48" cx="163" cy="116" r="15" fill="#919EAB"/>
|
||||
<path d="M162.725 122.5C162.118 122.5 161.51 122.44 160.902 122.321C160.294 122.202 159.769 122.035 159.328 121.82C158.946 121.642 158.678 121.421 158.523 121.159C158.38 120.897 158.321 120.628 158.344 120.354C158.368 120.08 158.464 119.836 158.631 119.621C158.809 119.406 159.036 119.263 159.31 119.192C159.596 119.108 159.918 119.144 160.276 119.299C160.717 119.49 161.122 119.621 161.492 119.693C161.861 119.764 162.231 119.8 162.6 119.8C163.029 119.8 163.387 119.752 163.673 119.657C163.959 119.561 164.174 119.418 164.317 119.228C164.46 119.025 164.532 118.775 164.532 118.477C164.532 118.059 164.383 117.755 164.084 117.565C163.798 117.362 163.375 117.261 162.815 117.261H161.849C161.396 117.261 161.051 117.147 160.812 116.921C160.574 116.694 160.455 116.373 160.455 115.955C160.455 115.538 160.574 115.216 160.812 114.99C161.051 114.763 161.396 114.65 161.849 114.65H162.493C162.839 114.65 163.131 114.602 163.369 114.507C163.62 114.412 163.81 114.274 163.941 114.096C164.073 113.905 164.138 113.672 164.138 113.398C164.138 113.005 163.995 112.707 163.709 112.504C163.435 112.301 163.024 112.2 162.475 112.2C162.141 112.2 161.802 112.236 161.456 112.307C161.11 112.379 160.741 112.504 160.347 112.683C160.037 112.814 159.751 112.844 159.489 112.772C159.239 112.701 159.03 112.564 158.863 112.361C158.708 112.146 158.613 111.914 158.577 111.664C158.541 111.401 158.583 111.145 158.702 110.895C158.821 110.644 159.048 110.436 159.382 110.269C159.882 110.019 160.425 109.828 161.009 109.697C161.605 109.566 162.201 109.5 162.797 109.5C163.739 109.5 164.543 109.637 165.211 109.911C165.879 110.185 166.385 110.585 166.731 111.109C167.089 111.622 167.267 112.242 167.267 112.969C167.267 113.446 167.178 113.887 166.999 114.292C166.82 114.698 166.558 115.037 166.212 115.312C165.867 115.574 165.461 115.765 164.996 115.884V115.633C165.831 115.765 166.481 116.116 166.946 116.688C167.422 117.249 167.661 117.952 167.661 118.798C167.661 119.561 167.464 120.223 167.071 120.783C166.677 121.344 166.111 121.773 165.372 122.071C164.633 122.357 163.751 122.5 162.725 122.5Z" fill="#919EAB"/>
|
||||
<defs>
|
||||
<filter id="filter0_di_4130_41285" x="18" y="97" width="46" height="46" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="4" dy="4"/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4130_41285"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4130_41285" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1" dy="-1"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4130_41285"/>
|
||||
</filter>
|
||||
<filter id="filter1_di_4130_41285" x="25.6343" y="106.5" width="30.7319" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="4" dy="4"/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4130_41285"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4130_41285" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1" dy="-1"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4130_41285"/>
|
||||
</filter>
|
||||
<filter id="filter2_di_4130_41285" x="72" y="88" width="72" height="72" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4130_41285"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4130_41285" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4130_41285"/>
|
||||
</filter>
|
||||
<filter id="filter3_di_4130_41285" x="89.4048" y="103" width="29.1904" height="34" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="4" dy="4"/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4130_41285"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4130_41285" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1" dy="-1"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4130_41285"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="120.421" width="152" x="32" y="56"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120563"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120563" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120563"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="38.1052" width="38.1055" x="51.7896" y="75.7896"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="4" dy="4"/><feGaussianBlur stdDeviation="4"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120563"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120563" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-1" dy="-1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120563"/></filter><filter id="c" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="71.4736" width="107" x="32" y="104.947"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120563"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120563" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120563"/></filter><g filter="url(#a)"><rect fill="#fff" height="88.4211" rx="12" width="120" x="40" y="64"/></g><g filter="url(#b)"><path d="m66.8422 101.895c6.1042 0 11.0526-4.9486 11.0526-11.0528s-4.9484-11.0526-11.0526-11.0526-11.0526 4.9484-11.0526 11.0526 4.9484 11.0528 11.0526 11.0528z" fill="#ffab00"/></g><path d="m69.1545 152.421h81.3715c5.232 0 9.474-4.242 9.474-9.474v-19.451l-25.255-25.2402c-3.571-3.5693-9.452-3.5693-13.023 0l-54.0907 54.0592c.4731.053.9982.106 1.5232.106z" fill="#007867" opacity=".16"/><g filter="url(#c)"><path d="m47.5354 152.222c-4.3025-.894-7.5354-4.707-7.5354-9.275v-2.462l24.8332-24.792c3.6684-3.661 9.7094-3.661 13.3778 0l36.789 36.728h-63.7066c-.5393 0-3.0039-.109-3.4899-.163-.0901-.011-.1794-.023-.2681-.036z" fill="#00a76f"/></g></svg>
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="88" width="184" x="16" y="72"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120568"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120568" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120568"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="50" width="108" x="54" y="91"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120568"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120568" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120568"/></filter><g filter="url(#a)"><path d="m24 92c0-6.6274 5.3726-12 12-12h128c6.627 0 12 5.3726 12 12v32c0 6.627-5.373 12-12 12h-128c-6.6274 0-12-5.373-12-12z" fill="#fff"/></g><g filter="url(#b)"><path d="m62 107c0-4.418 3.5817-8 8-8h60c4.418 0 8 3.582 8 8v2c0 4.418-3.582 8-8 8h-60c-4.4183 0-8-3.582-8-8z" fill="#00a76f"/></g></svg>
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,59 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_di_4337_65547)">
|
||||
<path d="M40 111.559V100.441C40 79.4768 40 68.992 47.032 62.4821C52.876 57.0618 66.1839 56.1501 81.9999 56V156C66.1839 155.85 52.876 154.938 47.032 149.518C40 143.008 40 132.523 40 111.559Z" fill="#00A76F"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_di_4337_65547)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M152.968 62.5111C160 69.0167 160 79.4944 160 100.444V111.556C160 132.506 160 142.983 152.968 149.489C145.936 155.994 134.626 156 112 156H82V56H112C134.626 56 145.942 56 152.968 62.5111Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_di_4337_65547)">
|
||||
<path d="M139.4 90.0002C140.62 90.0002 141.79 90.4744 142.653 91.3183C143.515 92.1622 144 93.3068 144 94.5002C144 95.6937 143.515 96.8383 142.653 97.6822C141.79 98.5261 140.62 99.0002 139.4 99.0002H102.6C101.38 99.0002 100.21 98.5261 99.3473 97.6822C98.4846 96.8383 98 95.6937 98 94.5002C98 93.3068 98.4846 92.1622 99.3473 91.3183C100.21 90.4744 101.38 90.0002 102.6 90.0002H139.4Z" fill="#FFAB00"/>
|
||||
<path d="M133.267 113C134.487 113 135.657 113.474 136.519 114.318C137.382 115.162 137.867 116.307 137.867 117.5C137.867 118.694 137.382 119.838 136.519 120.682C135.657 121.526 134.487 122 133.267 122H108.733C107.513 122 106.343 121.526 105.481 120.682C104.618 119.838 104.133 118.694 104.133 117.5C104.133 116.307 104.618 115.162 105.481 114.318C106.343 113.474 107.513 113 108.733 113H133.267Z" fill="#FFAB00"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_di_4337_65547" x="32" y="48" width="74" height="132" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4337_65547"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4337_65547" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4337_65547"/>
|
||||
</filter>
|
||||
<filter id="filter1_di_4337_65547" x="74" y="48" width="110" height="132" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4337_65547"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4337_65547" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4337_65547"/>
|
||||
</filter>
|
||||
<filter id="filter2_di_4337_65547" x="94" y="86.0002" width="62" height="48" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="4" dy="4"/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4337_65547"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4337_65547" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-1" dy="-1"/>
|
||||
<feGaussianBlur stdDeviation="1"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_4337_65547"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 7.7 KiB |
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="120.421" width="152" x="32" y="56"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_2208_147554"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_2208_147554" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_2208_147554"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="82.5264" width="114.111" x="50.9473" y="74.9473"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_2208_147554"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_2208_147554" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_2208_147554"/></filter><g filter="url(#a)"><rect fill="#fff" height="88.4211" rx="12" width="120" x="40" y="64"/></g><g filter="url(#b)"><path d="m135.139 133.474h-70.2682c-3.2658 0-5.9235-2.654-5.9235-5.92v-38.6874c0-3.2657 2.6577-5.9193 5.9235-5.9193h70.2642c3.266 0 5.924 2.6536 5.924 5.9193v38.6874c.004 3.266-2.654 5.92-5.92 5.92zm-56.4495-11.839v-15.396l7.8953 9.867 7.8952-9.867v15.396h7.895v-26.849h-7.895l-7.8952 9.871-7.8953-9.871h-7.8953v26.845h7.8953zm52.8965-13.425h-7.895v-13.424h-7.9v13.424h-7.895l11.847 13.819z" fill="#00a76f"/></g></svg>
|
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 8.5 KiB |
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="107.79" width="152" x="32" y="62"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_2701_141901"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_2701_141901" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_2701_141901"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="39.8948" width="110.947" x="32" y="62"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_2701_141901"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_2701_141901" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_2701_141901"/></filter><mask id="c" height="76" maskUnits="userSpaceOnUse" width="120" x="40" y="70"><rect fill="#fff" height="75.7895" rx="12" width="120" x="40" y="70"/></mask><g filter="url(#a)"><rect fill="#fff" height="75.7895" rx="12" width="120" x="40" y="70"/></g><g mask="url(#c)"><path d="m40 70h120v7.8947h-120z" fill="#007867" opacity=".16"/><g filter="url(#b)"><path d="m40 70h75c2.18 0 3.947 1.7673 3.947 3.9474 0 2.18-1.767 3.9473-3.947 3.9473h-75z" fill="#00a76f"/></g></g></svg>
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="107.79" width="152" x="32" y="62"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120555"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120555" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120555"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="34.9473" width="22.3159" x="148.105" y="81.7896"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="4" dy="4"/><feGaussianBlur stdDeviation="4"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120555"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120555" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-1" dy="-1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120555"/></filter><filter id="c" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="24" width="38.1055" x="48.6313" y="85.6841"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="4" dy="4"/><feGaussianBlur stdDeviation="4"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120555"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120555" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-1" dy="-1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120555"/></filter><g filter="url(#a)"><rect fill="#fff" height="75.7895" rx="12" width="120" x="40" y="70"/></g><path d="m160 136.316v-56.8423c0-5.2322-4.241-9.4737-9.474-9.4737v75.789c5.233 0 9.474-4.241 9.474-9.473z" fill="#fff"/><path d="m160 136.316v-56.8423c0-5.2322-4.241-9.4737-9.474-9.4737v75.789c5.233 0 9.474-4.241 9.474-9.473z" fill="#007867" opacity=".16"/><g filter="url(#b)"><rect fill="#ffab00" height="18.9474" rx="3.15789" width="6.31579" x="152.105" y="85.7896"/></g><g filter="url(#c)"><rect fill="#00a76f" height="8" rx="4" width="22.1053" x="52.6313" y="89.6841"/></g><g fill="#007867"><rect height="8" opacity=".4" rx="4" width="50.5263" x="52.6313" y="103.895"/><rect height="8" opacity=".16" rx="4" width="63.1579" x="52.6313" y="118.105"/></g></svg>
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="88.842" width="152" x="32" y="72"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1589_121148"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1589_121148" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1589_121148"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="38.1052" width="38.1055" x="124.421" y="93.3684"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="4" dy="4"/><feGaussianBlur stdDeviation="4"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1589_121148"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1589_121148" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-1" dy="-1"/><feGaussianBlur stdDeviation="1"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1589_121148"/></filter><g filter="url(#a)"><rect fill="#fff" height="56.8421" rx="12" width="120" x="40" y="80"/></g><rect fill="#007867" height="7.89474" opacity=".4" rx="3.94737" width="22.1053" x="49.4736" y="97.3684"/><rect fill="#007867" height="7.89474" opacity=".16" rx="3.94737" width="50.5263" x="49.4736" y="111.579"/><g filter="url(#b)"><path clip-rule="evenodd" d="m150.526 108.421c0 6.104-4.948 11.053-11.052 11.053-6.105 0-11.053-4.949-11.053-11.053s4.948-11.0526 11.053-11.0526c6.104 0 11.052 4.9486 11.052 11.0526zm-8.858.126 3.029 3.029c.572.572.572 1.498.001 2.069-.286.285-.66.428-1.035.428-.374 0-.748-.143-1.034-.428l-3.03-3.029-3.028 3.029c-.286.285-.661.428-1.035.428s-.748-.143-1.034-.428c-.572-.571-.572-1.498 0-2.069l3.029-3.029-3.029-3.029c-.572-.571-.572-1.497 0-2.069.571-.571 1.497-.571 2.068 0l3.029 3.029 3.03-3.029c.571-.571 1.497-.571 2.068 0 .572.572.572 1.498 0 2.069z" fill="#ffab00" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="101.998" width="140" x="38" y="53"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120560"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120560" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.772549 0 0 0 0 0.792157 0 0 0 0 0.819608 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120560"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="89.9353" width="84.4639" x="65.3706" y="89.0818"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_1587_120560"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_1587_120560" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_1587_120560"/></filter><g filter="url(#a)"><path d="m118.897 127.097c-3.582.173-2.407 3.901 1.178 3.901h11.566c12.329 0 22.359-10.026 22.359-22.349 0-9.4883-5.946-17.6145-14.309-20.8511-4.106-1.5887-7.97-4.1414-11.026-7.3094-4.121-4.272-9.863-6.8383-16.009-6.8383-.994 0-1.946-.4471-2.546-1.2399-5.388-7.1167-13.8132-11.4103-22.7662-11.4103-12.9686 0-23.9548 8.6448-27.4924 20.4723-1.2747 4.2616-3.8863 8.1418-7.0762 11.2419-4.2339 4.1149-6.7752 9.8258-6.7752 15.9348 0 12.323 10.0303 22.349 22.3594 22.349h18.9844c.296 0 .4183-.34.2148-.555-1.8513-1.957-4.4482-3.21-7.3177-3.349-.4511-.022-.8859-.045-1.3047-.068-5.1641-.282-7.3133-5.192-3.941-9.113 1.9769-2.299 4.529-5.12 7.7941-8.504 5.671-5.878 9.9072-9.208 12.7091-11.0631 2.5465-1.686 5.6636-1.6863 8.2106-.0003 2.802 1.8554 7.038 5.1844 12.709 11.0634 3.263 3.383 5.814 6.203 7.791 8.502 3.373 3.922 1.224 8.834-3.942 9.115-.439.024-.895.048-1.37.071z" fill="#fff"/></g><g filter="url(#b)"><path clip-rule="evenodd" d="m118.897 127.097c-5.333.258-9.725 4.363-10.14 9.687l-.918 11.786c-.242 3.111-1.744 5.893-4.842 6.263-.943.113-2.074.184-3.4284.184-1.3539 0-2.4851-.071-3.428-.183-3.0987-.371-4.6007-3.153-4.8432-6.264l-.9181-11.789c-.4145-5.323-4.8055-9.428-10.1382-9.687-.4511-.022-.8859-.044-1.3047-.067-5.1641-.282-7.3133-5.192-3.941-9.113 1.9769-2.299 4.529-5.121 7.7941-8.505 5.671-5.878 9.9072-9.207 12.7091-11.0626 2.5465-1.686 5.6634-1.6862 8.2104-.0002 2.802 1.8548 7.038 5.1848 12.709 11.0628 3.263 3.383 5.815 6.204 7.791 8.502 3.373 3.923 1.224 8.834-3.941 9.116-.44.024-.896.047-1.371.07z" fill="#ffab00" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><filter id="a" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="128" width="128" x="44" y="52"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_3961_127861"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3961_127861" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0.717647 0 0 0 0 0.431373 0 0 0 0 0 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_3961_127861"/></filter><filter id="b" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" height="127.883" width="127.996" x="44" y="52.1133"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="8" dy="8"/><feGaussianBlur stdDeviation="8"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.16 0"/><feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_3961_127861"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_3961_127861" mode="normal" result="shape"/><feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dx="-2" dy="-2"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" k2="-1" k3="1" operator="arithmetic"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0.470588 0 0 0 0 0.403922 0 0 0 0.48 0"/><feBlend in2="shape" mode="normal" result="effect2_innerShadow_3961_127861"/></filter><g filter="url(#a)"><path d="m147.964 78.7952c-.04-.6921-.512-1.352-1.12-1.68-.624-.336-1.38-.324-1.988.04l-10.947 6.5637c-3.324-1.7199-5.496-4.9438-5.86-8.6196l12.224-7.3317c.275-.1658.507-.3956.676-.6698.168-.2743.268-.585.292-.9061.021-.3212-.035-.643-.164-.9382-.128-.2951-.326-.555-.576-.7576-3.572-2.884-7.808-4.4359-12.464-4.4959-4.956 0-9.952 2.2958-13.707 6.3037-4.464 4.7557-6.528 9.4715-6.316 14.4074.116 2.708-1.096 5.5399-3.456 7.9077-.476.4959-.668 1.2-.5 1.8639.079.3284.241.6312.47.8797.229.2484.517.4344.838.5402 3.044 1.0079 5.932 2.9119 8.836 5.8197 1.167 1.1679 1.955 2.5917 2.343 4.2397.083.346.257.664.503.921s.555.445.897.543c.18.052.364.076.548.076.531 0 1.04-.21 1.416-.584l3.516-3.5159c1.624.404 3.1.596 4.572.596 5.484 0 10.788-2.288 14.555-6.2797 3.816-4.0476 5.74-9.3474 5.412-14.9232zm-52.5218 47.1658c-.2121-.68-.7641-1.208-1.4559-1.368-1.604-.376-3.0518-1.176-4.1918-2.316-2.9519-2.947-4.8798-5.863-5.8957-8.915-.1076-.324-.296-.614-.5472-.845-.2513-.23-.5572-.392-.8888-.471-.672-.164-1.3839.044-1.8758.532l-.376.38c-1.9639 1.96-4.8358 3.04-8.2116 3.04-11.0277 0-19.9994 8.971-19.9994 19.999 0 .7.0879 1.372.18 2.048l.0639.472c.0419.329.1656.643.3598.913s.4528.487.7522.631c.6081.296 1.32.264 1.904-.084l12.8275-7.696c3.3239 1.72 5.4958 4.944 5.8597 8.62l-13.3795 8.027c-.2848.171-.5226.41-.6916.695-.1691.286-.2641.609-.2764.941-.0131.332.0564.662.2023.96.146.298.3637.555.6338.748 3.4159 2.428 7.3997 3.72 11.5275 3.728h.024c4.9678 0 9.9836-2.332 13.7674-6.392 4.4038-4.724 6.4398-9.403 6.2317-14.307-.108-2.544.9639-5.172 3.0158-7.4.238-.256.404-.57.4813-.911.0773-.34.063-.695-.0412-1.029z" fill="#ffab00"/></g><g filter="url(#b)"><path d="m147.784 149.1-6.896-13.787c-1.02-2.044-3.076-3.316-5.363-3.316h-2.7l-22.999-22.999 1.636-1.636c1.855-1.852 1.855-4.872-.084-6.812-2.488-2.4877-4.8-4.0317-7.276-4.8557-1.784-.5961-3.2-2.012-3.796-3.7958-.8279-2.48-2.3678-4.7918-4.8558-7.2757l-21.2151-21.2111c-4.3879-4.3879-12.0676-4.4078-16.4753 0l-2.3519 2.3479c-2.1959 2.1999-3.4079 5.1238-3.4079 8.2476 0 3.1079 1.212 6.0318 3.4079 8.2317l21.2112 21.2111c2.4878 2.488 4.7998 4.032 7.2756 4.856 1.784.596 3.1999 2.012 3.7958 3.796.824 2.48 2.3719 4.791 4.9318 7.351.908.909 2.1038 1.408 3.3799 1.408 1.268 0 2.4599-.496 3.3599-1.396l1.6359-1.635 22.999 22.999v2.699c0 2.288 1.272 4.344 3.316 5.368l13.787 6.896c.28.133.586.203.896.204.531 0 1.04-.21 1.416-.584l4-4c.296-.298.491-.681.558-1.096s.002-.84-.186-1.216z" fill="#00a76f"/></g></svg>
|
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m102.728 57.2727c0-4.0166 3.256-7.2727 7.272-7.2727h32.728c4.016 0 7.272 3.2561 7.272 7.2727v32.7273c0 4.0166-3.256 7.2727-7.272 7.2727h-32.728c-4.016 0-7.272-3.2561-7.272-7.2727z"/><g opacity=".24"><path d="m50 57.2727c0-4.0166 3.2561-7.2727 7.2727-7.2727h32.7273c4.0166 0 7.2727 3.2561 7.2727 7.2727v32.7273c0 4.0166-3.2561 7.2727-7.2727 7.2727h-32.7273c-4.0166 0-7.2727-3.2561-7.2727-7.2727z"/><path d="m50 110c0-4.017 3.2561-7.273 7.2727-7.273h32.7273c4.0166 0 7.2727 3.256 7.2727 7.273v32.727c0 4.017-3.2561 7.273-7.2727 7.273h-32.7273c-4.0166 0-7.2727-3.256-7.2727-7.273z"/><path d="m102.727 110c0-4.017 3.256-7.273 7.273-7.273h32.727c4.017 0 7.273 3.256 7.273 7.273v32.727c0 4.017-3.256 7.273-7.273 7.273h-32.727c-4.017 0-7.273-3.256-7.273-7.273z"/></g></g></svg>
|
After Width: | Height: | Size: 896 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m100 154c29.823 0 54-24.177 54-54 0-29.8234-24.177-54-54-54-29.8234 0-54 24.1766-54 54 0 29.823 24.1766 54 54 54z" opacity=".24"/><path d="m98.1026 116.525-7.9453 4.177c-1.6651.875-3.7247.235-4.6001-1.43-.3486-.663-.4689-1.423-.3423-2.161l1.5174-8.847c.2347-1.369-.219-2.765-1.2133-3.734l-6.4278-6.266c-1.3472-1.3131-1.3747-3.4697-.0616-4.8169.5229-.5364 1.2081-.8855 1.9494-.9933l8.8831-1.2907c1.3741-.1997 2.5619-1.0627 3.1764-2.3079l3.9726-8.0494c.8326-1.687 2.8751-2.3796 4.5619-1.547.672.3315 1.216.8752 1.547 1.547l3.973 8.0494c.614 1.2452 1.802 2.1082 3.176 2.3079l8.883 1.2907c1.862.2706 3.152 1.9991 2.882 3.8608-.108.7413-.457 1.4265-.994 1.9494l-6.428 6.266c-.994.969-1.448 2.365-1.213 3.734l1.518 8.847c.318 1.854-.928 3.615-2.782 3.933-.738.127-1.498.006-2.161-.342l-7.945-4.177c-1.229-.646-2.6974-.646-3.9264 0z"/></g></svg>
|
After Width: | Height: | Size: 964 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m67 70c0-4.4183 3.5817-8 8-8h52c4.418 0 8 3.5817 8 8s-3.582 8-8 8h-52c-4.4183 0-8-3.5817-8-8z"/><path d="m46 79c4.9706 0 9-4.0294 9-9s-4.0294-9-9-9-9 4.0294-9 9 4.0294 9 9 9z"/><g opacity=".48"><path d="m67 100c0-4.4183 3.5817-8 8-8h80c4.418 0 8 3.5817 8 8 0 4.418-3.582 8-8 8h-80c-4.4183 0-8-3.582-8-8z"/><path d="m46 109c4.9706 0 9-4.029 9-9 0-4.9706-4.0294-9-9-9s-9 4.0294-9 9c0 4.971 4.0294 9 9 9z"/></g><g opacity=".24"><path d="m67 130c0-4.418 3.5817-8 8-8h32c4.418 0 8 3.582 8 8s-3.582 8-8 8h-32c-4.4183 0-8-3.582-8-8z"/><path d="m46 139c4.9706 0 9-4.029 9-9s-4.0294-9-9-9-9 4.029-9 9 4.0294 9 9 9z"/></g></g></svg>
|
After Width: | Height: | Size: 748 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m40 98.2105c0-5.2322 4.2415-9.4737 9.4737-9.4737h101.0523c5.232 0 9.474 4.2415 9.474 9.4737v37.8945c0 5.232-4.242 9.474-9.474 9.474h-101.0523c-5.2322 0-9.4737-4.242-9.4737-9.474z" opacity=".24"/><rect height="7.89474" opacity=".48" rx="3.94737" width="25.2632" x="52.6313" y="106.105"/><rect height="7.89474" opacity=".24" rx="3.94737" width="50.5263" x="52.6313" y="120.316"/><path d="m62.1055 60.3158c0-3.4881 2.8276-6.3158 6.3158-6.3158h63.1577c3.488 0 6.316 2.8277 6.316 6.3158v15.7895c0 3.4881-2.828 6.3158-6.316 6.3158h-63.1577c-3.4882 0-6.3158-2.8277-6.3158-6.3158z" opacity=".24"/><rect height="9.47368" rx="4.73684" width="37.8947" x="81.0527" y="63.4736"/></g></svg>
|
After Width: | Height: | Size: 802 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m43.2432 113.243c7.3141 0 13.2433-5.929 13.2433-13.243s-5.9292-13.2432-13.2433-13.2432c-7.314 0-13.2432 5.9292-13.2432 13.2432s5.9292 13.243 13.2432 13.243z" opacity=".24"/><path d="m40.812 105c-.3455 0-.6116-.089-.7984-.266-.1774-.187-.2661-.448-.2661-.784 0-.337.0887-.593.2661-.771.1868-.177.4529-.266.7984-.266h1.2605v-5.7281h1.1764l-2.0308 1.2465c-.2427.1494-.4715.2101-.6863.182-.2147-.0373-.3968-.1307-.5462-.2801s-.2474-.3314-.2941-.5462c-.0467-.2147-.028-.4295.056-.6442.0841-.2148.2521-.3969.5042-.5463l1.9328-1.2044c.2054-.1308.4155-.2288.6303-.2942.2241-.0653.4575-.098.7002-.098.3549 0 .6303.0934.8264.2801.1961.1774.2941.4389.2941.7843v6.8486h1.1204c.3455 0 .6069.089.7844.266.1867.178.2801.434.2801.771 0 .336-.0934.597-.2801.784-.1775.177-.4389.266-.7844.266z"/><path d="m118.919 113.243c7.314 0 13.243-5.929 13.243-13.243s-5.929-13.2432-13.243-13.2432-13.243 5.9292-13.243 13.2432 5.929 13.243 13.243 13.243z" opacity=".24"/><path d="m118.708 105c-.468 0-.935-.046-1.403-.138-.468-.091-.871-.22-1.211-.385-.293-.137-.499-.307-.619-.509-.11-.201-.155-.408-.137-.619s.092-.399.22-.564c.138-.165.312-.275.523-.33.22-.064.467-.036.742.083.34.147.652.247.936.302s.568.083.853.083c.33 0 .605-.037.825-.11s.385-.183.495-.33c.11-.156.165-.349.165-.578 0-.321-.114-.555-.344-.701-.22-.156-.545-.234-.976-.234h-.743c-.349 0-.614-.087-.798-.262-.183-.174-.275-.421-.275-.7424 0-.3209.092-.5685.275-.7428.184-.1742.449-.2613.798-.2613h.495c.266 0 .491-.0367.674-.1101.193-.0733.339-.1788.44-.3163.101-.1467.152-.3256.152-.5365 0-.3026-.11-.5318-.331-.6877-.21-.1559-.527-.2339-.949-.2339-.256 0-.518.0275-.784.0826-.266.055-.55.1513-.853.2888-.238.1009-.458.1238-.66.0688-.192-.055-.353-.1605-.481-.3164-.119-.165-.193-.3439-.22-.5364-.028-.2018.004-.3989.096-.5915s.266-.353.523-.4814c.385-.1926.802-.3393 1.251-.4402.459-.1009.917-.1513 1.376-.1513.724 0 1.343.1055 1.857.3164.513.2109.903.5181 1.169.9216.275.3943.413.8711.413 1.4305 0 .3668-.069.7061-.207 1.0179-.137.3118-.339.5731-.605.784-.266.2018-.578.3485-.935.4402v-.1926c.642.1009 1.142.371 1.499.812.367.431.55.972.55 1.623 0 .587-.151 1.096-.454 1.527-.302.43-.738.761-1.306.99-.569.22-1.247.33-2.036.33z"/><path d="m156.757 113.243c7.314 0 13.243-5.929 13.243-13.243s-5.929-13.2432-13.243-13.2432-13.243 5.9292-13.243 13.2432 5.929 13.243 13.243 13.243z" opacity=".24"/><path d="m158.099 105c-.388 0-.692-.106-.913-.318-.212-.212-.318-.526-.318-.941v-.498h-2.78c-.406 0-.724-.092-.955-.276-.221-.185-.332-.466-.332-.844 0-.221.042-.433.125-.636.083-.212.23-.466.442-.761l3.375-4.9238c.185-.2766.392-.4795.623-.6086.23-.1291.502-.1936.816-.1936.35 0 .627.106.83.3181.202.2029.304.5164.304.9405v5.0624h.332c.35 0 .613.083.788.249.185.166.277.401.277.705 0 .314-.092.553-.277.719-.175.166-.438.249-.788.249h-.332v.498c0 .406-.106.72-.318.941-.203.212-.503.318-.899.318zm-1.231-3.679v-3.2643h.387l-2.6 3.8593v-.595z"/><path clip-rule="evenodd" d="m94.3244 100c0 7.314-5.9292 13.243-13.2433 13.243-7.314 0-13.2432-5.929-13.2432-13.243s5.9292-13.2432 13.2432-13.2432c7.3141 0 13.2433 5.9292 13.2433 13.2432zm-17.0018 4.256c0 .409.0973.722.2919.937.2048.205.5326.307.9832.307h5.3464c.379 0 .6657-.097.8603-.292.2049-.205.3073-.492.3073-.86 0-.369-.1024-.651-.3073-.845-.1946-.195-.4813-.292-.8603-.292h-3.0792l1.7733-1.752c.4712-.46.845-.896 1.1215-1.305.2868-.4101.4917-.8197.6146-1.2294.1331-.4097.1997-.8296.1997-1.2598 0-.6862-.1485-1.2598-.4455-1.7207-.2971-.4711-.7324-.8296-1.3059-1.0754-.5633-.2458-1.2649-.3687-2.1048-.3687-.5121 0-1.0242.0563-1.5363.169-.5018.1127-.9883.297-1.4595.5531-.2663.1434-.4506.3277-.553.553-.1025.2151-.1383.4353-.1076.6607.041.2253.1332.425.2766.5991.1536.1741.3379.2868.553.338.2254.0512.4763.0154.7528-.1075.3175-.1639.6145-.2766.8911-.338.2765-.0717.5377-.1076.7835-.1076.4814 0 .8501.0973 1.1061.2919.2561.1946.3841.4865.3841.8757 0 .3073-.087.6146-.2611.9218-.1639.3073-.4456.676-.845 1.1058l-2.6886 2.812c-.2048.215-.3738.435-.507.66-.1229.226-.1843.482-.1843.769z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m125.2 142.087c15.906 0 28.8-11.472 28.8-25.623v-44.8408c0-14.1513-12.894-25.6232-28.8-25.6232h-50.4c-15.9058 0-28.8 11.4719-28.8 25.6232v44.8408c0 14.151 12.8942 25.623 28.8 25.623h7.2l15.7511 11.211c1.2856.915 3.0999.935 4.4089.061l.089-.061 15.751-11.211z" opacity=".24"/><rect height="9.64286" rx="4.82143" width="46.2857" x="65.2856" y="77.8215"/><rect height="9.64286" opacity=".24" rx="4.82143" width="46.2857" x="65.2856" y="112.536"/><rect height="9.64286" opacity=".48" rx="4.82143" width="69.4286" x="65.2856" y="95.1785"/></g></svg>
|
After Width: | Height: | Size: 670 B |
@@ -0,0 +1 @@
|
||||
<svg width="200" height="200" viewBox="0 0 200 200" fill="none" xmlns="http://www.w3.org/2000/svg"><rect opacity=".24" x="30" y="87" width="140" height="25.79" rx="12.895" fill="#919EAB"/><rect x="35.526" y="92.526" width="73.684" height="14.737" rx="7.368" fill="#919EAB"/></svg>
|
After Width: | Height: | Size: 280 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path clip-rule="evenodd" d="m132 100c0 17.673-14.327 32-32 32-17.6731 0-32-14.327-32-32 0-17.6731 14.3269-32 32-32 17.673 0 32 14.3269 32 32zm-7.111 0c0 13.746-11.143 24.889-24.889 24.889-13.7458 0-24.8889-11.143-24.8889-24.889 0-13.7458 11.1431-24.8889 24.8889-24.8889 13.746 0 24.889 11.1431 24.889 24.8889z" fill-rule="evenodd" opacity=".24"/><path d="m99.9999 117.778c9.8181 0 17.7781-7.96 17.7781-17.7781 0-9.8183-7.96-17.7777-17.7781-17.7777-9.8183 0-17.7777 7.9594-17.7777 17.7777 0 9.8181 7.9594 17.7781 17.7777 17.7781z"/></g></svg>
|
After Width: | Height: | Size: 659 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m38.7214 109.046-5.1651 2.731c-.9418.498-2.1066.134-2.6017-.813-.1972-.378-.2652-.81-.1936-1.23l.9877-5.792c.0517-.304-.0485-.613-.2681-.828l-4.183-4.1016c-.7619-.747-.7775-1.9739-.0348-2.7403.2957-.3051.6832-.5037 1.1025-.565l5.7762-.8443c.3062-.0447.5706-.2375.7069-.5153l2.5842-5.2669c.4708-.9597 1.626-1.3537 2.5801-.8801.38.1886.6875.498.875.8801l2.5842 5.2669c.1363.2778.4007.4706.7069.5153l5.7762.8443c1.0529.1539 1.7824 1.1372 1.6294 2.1963-.0609.4218-.2583.8115-.5617 1.109l-4.183 4.1016c-.2196.215-.3198.524-.2681.828l.9877 5.792c.1799 1.055-.5245 2.057-1.5731 2.238-.4176.072-.8472.003-1.2222-.195l-5.1651-2.731c-.2745-.146-.603-.146-.8775 0z"/><path d="m69.1411 109.046-5.1651 2.731c-.9417.498-2.1066.134-2.6017-.813-.1971-.378-.2652-.81-.1936-1.23l.9877-5.792c.0517-.304-.0484-.613-.2681-.828l-4.1829-4.1016c-.7619-.747-.7775-1.9739-.0349-2.7403.2958-.3051.6833-.5037 1.1026-.565l5.7762-.8443c.3061-.0447.5705-.2375.7068-.5153l2.5842-5.2669c.4709-.9597 1.6261-1.3537 2.5802-.8801.3799.1886.6875.498.875.8801l2.5842 5.2669c.1362.2778.4007.4706.7068.5153l5.7762.8443c1.053.1539 1.7825 1.1372 1.6295 2.1963-.0609.4218-.2584.8115-.5618 1.109l-4.1829 4.1016c-.2197.215-.3199.524-.2682.828l.9877 5.792c.1799 1.055-.5244 2.057-1.5731 2.238-.4176.072-.8471.003-1.2221-.195l-5.1651-2.731c-.2745-.146-.6031-.146-.8776 0z"/><path d="m99.5609 109.046-5.1651 2.731c-.9418.498-2.1066.134-2.6017-.813-.1972-.378-.2652-.81-.1936-1.23l.9877-5.792c.0517-.304-.0485-.613-.2681-.828l-4.183-4.1016c-.7619-.747-.7775-1.9739-.0348-2.7403.2957-.3051.6832-.5037 1.1025-.565l5.7762-.8443c.3062-.0447.5706-.2375.7069-.5153l2.5842-5.2669c.4709-.9597 1.626-1.3537 2.5799-.8801.38.1886.688.498.875.8801l2.584 5.2669c.137.2778.401.4706.707.5153l5.776.8443c1.053.1539 1.783 1.1372 1.63 2.1963-.061.4218-.258.8115-.562 1.109l-4.183 4.1016c-.219.215-.32.524-.268.828l.988 5.792c.18 1.055-.525 2.057-1.573 2.238-.418.072-.847.003-1.222-.195l-5.166-2.731c-.274-.146-.6026-.146-.8771 0z"/><g opacity=".24"><path d="m129.981 109.046-5.165 2.731c-.942.498-2.107.134-2.602-.813-.197-.378-.265-.81-.194-1.23l.988-5.792c.052-.304-.049-.613-.268-.828l-4.183-4.1016c-.762-.747-.778-1.9739-.035-2.7403.296-.3051.683-.5037 1.103-.565l5.776-.8443c.306-.0447.57-.2375.707-.5153l2.584-5.2669c.471-.9597 1.626-1.3537 2.58-.8801.38.1886.687.498.875.8801l2.584 5.2669c.136.2778.401.4706.707.5153l5.776.8443c1.053.1539 1.783 1.1372 1.63 2.1963-.061.4218-.259.8115-.562 1.109l-4.183 4.1016c-.22.215-.32.524-.268.828l.988 5.792c.179 1.055-.525 2.057-1.574 2.238-.417.072-.847.003-1.222-.195l-5.165-2.731c-.274-.146-.603-.146-.877 0z"/><path d="m160.4 109.046-5.165 2.731c-.941.498-2.106.134-2.601-.813-.198-.378-.266-.81-.194-1.23l.988-5.792c.051-.304-.049-.613-.268-.828l-4.183-4.1016c-.762-.747-.778-1.9739-.035-2.7403.296-.3051.683-.5037 1.102-.565l5.777-.8443c.306-.0447.57-.2375.706-.5153l2.585-5.2669c.47-.9597 1.626-1.3537 2.58-.8801.38.1886.687.498.875.8801l2.584 5.2669c.136.2778.401.4706.707.5153l5.776.8443c1.053.1539 1.782 1.1372 1.629 2.1963-.06.4218-.258.8115-.561 1.109l-4.183 4.1016c-.22.215-.32.524-.268.828l.987 5.792c.18 1.055-.524 2.057-1.573 2.238-.417.072-.847.003-1.222-.195l-5.165-2.731c-.275-.146-.603-.146-.878 0z"/></g></g></svg>
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m100 154c29.823 0 54-24.177 54-54 0-29.8234-24.177-54-54-54-29.8234 0-54 24.1766-54 54 0 29.823 24.1766 54 54 54z" opacity=".24"/><path clip-rule="evenodd" d="m49.8569 100c0 27.146 22.3852 49.105 50.1429 50.143v-100.2858c-27.7577 1.0374-50.1429 22.9965-50.1429 50.1428z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 428 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="25.7895" opacity=".24" rx="12.8947" width="140" x="30" y="87.5264"/><path clip-rule="evenodd" d="m126.711 100.421c0 10.174-8.248 18.421-18.421 18.421-10.174 0-18.4213-8.247-18.4213-18.421 0-10.1736 8.2473-18.421 18.4213-18.421 10.173 0 18.421 8.2474 18.421 18.421zm-24.892-4.551c0-1.8467-1.497-3.3437-3.3435-3.3437-1.8467 0-3.3437 1.497-3.3437 3.3437v9.102c0 1.847 1.497 3.344 3.3437 3.344 1.8465 0 3.3435-1.497 3.3435-3.344zm9.474 0c0-1.8467-1.497-3.3437-3.344-3.3437s-3.344 1.497-3.344 3.3437v9.102c0 1.847 1.497 3.344 3.344 3.344s3.344-1.497 3.344-3.344zm6.13-3.3437c1.846 0 3.343 1.497 3.343 3.3437v9.102c0 1.847-1.497 3.344-3.343 3.344-1.847 0-3.344-1.497-3.344-3.344v-9.102c0-1.8467 1.497-3.3437 3.344-3.3437z" fill-rule="evenodd"/><path d="m92.1797 93.0527h-49.2849c-4.0695 0-7.3684 3.299-7.3684 7.3683 0 4.07 3.2989 7.369 7.3684 7.369h49.2849c-1.4568-2.089-2.3112-4.629-2.3112-7.369 0-2.7395.8544-5.2796 2.3112-7.3683z" opacity=".48"/></g></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path clip-rule="evenodd" d="m66.8421 100.026c0 10.174-8.2474 18.421-18.421 18.421-10.1737 0-18.4211-8.247-18.4211-18.421 0-10.1734 8.2474-18.4208 18.4211-18.4208 10.1736 0 18.421 8.2474 18.421 18.4208zm-12.8947 5.831c0 1.025-.598 1.538-1.794 1.538h-7.1554c-1.196 0-1.794-.513-1.794-1.538 0-.499.1444-.873.4331-1.123.2887-.249.7423-.374 1.3609-.374h1.6703v-7.5035l-1.6496.9769c-.2337.1386-.4743.2079-.7218.2079-.3849 0-.7148-.1698-.9898-.5093-.2749-.3395-.4124-.7171-.4124-1.1328 0-.5681.2406-.9977.7218-1.2887l3.2993-1.933c.6048-.3464 1.1753-.5196 1.7115-.5196.5498 0 .9932.1662 1.33.4988s.5052.7829.5052 1.3511v9.8522h1.6909c.6186 0 1.0722.125 1.3609.374.2887.25.4331.624.4331 1.123z" fill-rule="evenodd" opacity=".48"/><path clip-rule="evenodd" d="m170 100.026c0 12.717-10.309 23.027-23.026 23.027-12.718 0-23.027-10.31-23.027-23.027 0-12.7168 10.309-23.026 23.027-23.026 12.717 0 23.026 10.3092 23.026 23.026zm-15.204 10.496c-.448.371-1.131.557-2.047.557h-11.408c-.75 0-1.344-.222-1.782-.666-.437-.443-.656-1.006-.656-1.687 0-.888.354-1.692 1.063-2.415l6.625-6.842c1.376-1.4241 2.063-2.7347 2.063-3.9318 0-.7018-.203-1.2384-.609-1.61-.406-.3715-.985-.5572-1.735-.5572-.604 0-1.161.0877-1.672.2631-.51.1755-1.099.4283-1.766.7585l-.625.3096c-.083.0413-.245.129-.484.2632-.24.1342-.454.2322-.641.2941-.188.0619-.386.0929-.594.0929-.521 0-.958-.2322-1.313-.6966-.354-.4644-.531-1.0165-.531-1.6563 0-.4541.068-.8256.203-1.1146.136-.289.391-.5573.766-.805.979-.6604 2.078-1.1764 3.297-1.5479 1.219-.3716 2.423-.5573 3.61-.5573 1.542 0 2.896.2528 4.063.7585s2.068 1.2281 2.704 2.1672c.635.9391.953 2.0175.953 3.2353 0 1.259-.255 2.4097-.766 3.452-.51 1.0423-1.38 2.2033-2.609 3.4833l-4.439 4.489h6.283c.916 0 1.599.18 2.047.542.448.361.672.923.672 1.687 0 .784-.224 1.362-.672 1.734z" fill-rule="evenodd"/><path d="m65.9985 105.553h58.9475c-.44-1.771-.674-3.622-.674-5.527 0-1.9047.234-3.7556.674-5.526h-58.9475c.553 1.7446.8511 3.6009.8511 5.526 0 1.926-.2981 3.782-.8511 5.527z" opacity=".24"/><path clip-rule="evenodd" d="m53.9472 105.857c0 1.025-.598 1.538-1.794 1.538h-7.1554c-1.196 0-1.794-.513-1.794-1.538 0-.499.1444-.873.4331-1.123.2887-.249.7423-.374 1.3609-.374h1.6703v-7.5034l-1.6496.9769c-.2337.1386-.4743.2079-.7218.2079-.3849 0-.7148-.1698-.9898-.5093-.2749-.3395-.4124-.7171-.4124-1.1328 0-.5681.2406-.9977.7218-1.2887l3.2992-1.933c.6049-.3464 1.1754-.5196 1.7116-.5196.5498 0 .9932.1662 1.33.4988s.5052.7829.5052 1.3511v9.8521h1.6909c.6186 0 1.0722.125 1.3609.374.2887.25.4331.624.4331 1.123z" fill-rule="evenodd"/></g></svg>
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="52" opacity=".24" rx="26" width="84.5" x="58" y="74"/><path d="m116.5 119.5c10.77 0 19.5-8.73 19.5-19.5 0-10.7696-8.73-19.5-19.5-19.5s-19.5 8.7304-19.5 19.5c0 10.77 8.73 19.5 19.5 19.5z"/></g></svg>
|
After Width: | Height: | Size: 329 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m40 67c0-5.5228 4.4772-10 10-10h100c5.523 0 10 4.4772 10 10v10h-120z" opacity=".48"/><path d="m40 77v56.667c0 5.523 4.4772 10 10 10h100c5.523 0 10-4.477 10-10v-56.667z" opacity=".24"/><rect height="16.6667" rx="6" width="30" x="50" y="91.1667"/><rect height="16.6667" opacity=".48" rx="6" width="30" x="85" y="91.1667"/><rect height="16.6667" opacity=".48" rx="6" width="30" x="120" y="91.1667"/><rect height="16.6667" opacity=".48" rx="6" width="30" x="50" y="112.833"/><rect height="16.6667" opacity=".24" rx="6" width="30" x="85" y="112.833"/><rect height="16.6667" opacity=".24" rx="6" width="30" x="120" y="112.833"/></g></svg>
|
After Width: | Height: | Size: 758 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="51.5789" opacity=".24" rx="25.7895" width="140" x="30" y="74"/><path clip-rule="evenodd" d="m107.368 77.6843c-4.069 0-7.368 3.299-7.368 7.3684v29.4733c0 4.07 3.299 7.369 7.368 7.369h36.843c12.208 0 22.105-9.897 22.105-22.1054s-9.897-22.1053-22.105-22.1053zm20.813 32.1707 4.476-2.367c.313-.166.688-.166 1.002 0l4.476 2.367c.333.176.714.237 1.085.173.932-.161 1.557-1.051 1.398-1.988l-.857-5.021c-.059-.347.056-.7.306-.946l3.627-3.5553c.269-.2642.444-.6104.499-.9849.135-.9407-.513-1.8141-1.448-1.9507l-5.006-.7317c-.349-.0511-.651-.2713-.807-.5884l-2.24-4.5653c-.166-.3394-.44-.6141-.777-.7816-.847-.4207-1.873-.0707-2.292.7816l-2.239 4.5653c-.156.3171-.458.5373-.808.5884l-5.006.7317c-.372.0544-.716.2308-.979.5018-.66.6807-.646 1.7703.031 2.4338l3.626 3.5553c.251.246.365.599.306.946l-.856 5.021c-.064.373-.003.757.172 1.092.44.842 1.474 1.165 2.311.723z" fill-rule="evenodd"/><path d="m67.8451 89.1171 9.7904 9.6376c.3445.3391.3459.8903.0033 1.2312-.1651.1641-.3896.2571-.6237.2571h-.5021c-.3663 0-.6632.296-.6632.663v8.63c0 .722-.5908 1.306-1.3195 1.306h-2.0913c-.6161 0-1.1503-.422-1.2867-1.016l-1.7655-7.692c-.1365-.595-.6706-1.017-1.2868-1.017h-2.3573c-.6162 0-1.1503.422-1.2868 1.017l-1.7655 7.692c-.1365.594-.6706 1.016-1.2868 1.016h-2.0912c-.7288 0-1.3196-.584-1.3196-1.306v-8.63c0-.367-.2969-.663-.6631-.663h-.6604c-.4859 0-.8797-.3903-.8797-.8711 0-.2339.0951-.4579.2638-.6216l9.9374-9.6399c.5158-.5004 1.3423-.4974 1.8543.0067z"/></g></svg>
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="51.5789" opacity=".24" rx="25.7895" width="140" x="30" y="74"/><rect height="22.1053" rx="11.0526" width="22.1053" x="44.7363" y="88.7368"/><rect height="14.7368" opacity=".48" rx="7.36842" width="66.3158" x="74.2104" y="92.4211"/></g></svg>
|
After Width: | Height: | Size: 372 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="16" rx="8" width="48" x="117" y="92"/><rect height="16" opacity=".48" rx="8" width="48" x="35" y="52"/><rect height="16" opacity=".24" rx="8" width="48" x="35" y="132"/><path d="m100 113.171c.835 0 1.5.506 1.5 1.34v10.978c0 .834-.665 1.34-1.5 1.34-.8347 0-1.5-.506-1.5-1.34v-10.978c0-.834.6653-1.34 1.5-1.34z" opacity=".24"/><path d="m100 73.1707c.835 0 1.5.5059 1.5 1.3406v10.9774c0 .8347-.665 1.3406-1.5 1.3406-.8347 0-1.5-.5059-1.5-1.3406v-10.9774c0-.8347.6653-1.3406 1.5-1.3406z" opacity=".24"/><path d="m100 46.8361c-.8342 0-1.5-.5123-1.5-1.3465v-6.8503c0-.9836.6-1.6393 1.5-1.6393s1.5.6557 1.5 1.6393v6.8503c0 .8342-.666 1.3465-1.5 1.3465z" opacity=".24"/><path d="m100 153.164c.834 0 1.5.512 1.5 1.346v6.851c0 .983-.6 1.639-1.5 1.639s-1.5-.656-1.5-1.639v-6.851c0-.834.6658-1.346 1.5-1.346z" opacity=".24"/><circle cx="100" cy="60" opacity=".24" r="9"/><circle cx="100" cy="100" opacity=".24" r="9"/><circle cx="100" cy="140" opacity=".24" r="9"/></g></svg>
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path clip-rule="evenodd" d="m118 47c0 9.9411-8.059 18-18 18-9.9411 0-18-8.0589-18-18s8.0589-18 18-18c9.941 0 18 8.0589 18 18zm-16.5-1.5h6c.828 0 1.5.6716 1.5 1.5s-.672 1.5-1.5 1.5h-6v6c0 .8284-.672 1.5-1.5 1.5-.8284 0-1.5-.6716-1.5-1.5v-6h-6c-.8284 0-1.5-.6716-1.5-1.5s.6716-1.5 1.5-1.5h6v-6c0-.8284.6716-1.5 1.5-1.5.828 0 1.5.6716 1.5 1.5z" fill-rule="evenodd"/><path d="m122.4 85.5892c14.138 0 25.6 10.1972 25.6 22.7758v39.859c0 12.579-11.462 22.776-25.6 22.776h-44.8c-14.1385 0-25.6-10.197-25.6-22.776v-39.859c0-12.5786 11.4615-22.7758 25.6-22.7758h6.4l14.001-9.9653c1.1427-.8134 2.756-.8314 3.919-.0543l.079.0543 14.001 9.9653z" opacity=".24"/><rect height="10" opacity=".48" rx="5" width="48" x="64" y="109"/><rect height="10" opacity=".24" rx="5" width="48" x="64" y="145"/><rect height="10" opacity=".24" rx="5" width="72" x="64" y="127"/></g></svg>
|
After Width: | Height: | Size: 974 B |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m52 50.5882c0-5.8477 4.7405-10.5882 10.5882-10.5882h74.1178c5.848 0 10.588 4.7405 10.588 10.5882v98.8238c0 5.847-4.74 10.588-10.588 10.588h-74.1178c-5.8477 0-10.5882-4.741-10.5882-10.588z" opacity=".24"/><g opacity=".24"><path d="m66.1177 113.235c0-2.437 1.9752-4.412 4.4117-4.412h58.2356c2.436 0 4.411 1.975 4.411 4.412s-1.975 4.412-4.411 4.412h-58.2356c-2.4365 0-4.4117-1.975-4.4117-4.412z"/><path d="m66.1177 129.117c0-2.436 1.9752-4.411 4.4117-4.411h58.2356c2.436 0 4.411 1.975 4.411 4.411 0 2.437-1.975 4.412-4.411 4.412h-58.2356c-2.4365 0-4.4117-1.975-4.4117-4.412z"/></g><g opacity=".48"><path d="m66.1177 65.588c0-2.4365 1.9752-4.4117 4.4117-4.4117h26.4706c2.4366 0 4.412 1.9752 4.412 4.4117 0 2.4366-1.9754 4.4118-4.412 4.4118h-26.4706c-2.4365 0-4.4117-1.9752-4.4117-4.4118z"/><path d="m66.1177 97.3527c0-2.4365 1.9752-4.4117 4.4117-4.4117h26.4706c2.4366 0 4.412 1.9752 4.412 4.4117 0 2.4366-1.9754 4.4123-4.412 4.4123h-26.4706c-2.4365 0-4.4117-1.9757-4.4117-4.4123z"/><path d="m66.1177 81.4704c0-2.4366 1.9752-4.4118 4.4117-4.4118h26.4706c2.4366 0 4.412 1.9752 4.412 4.4118 0 2.4365-1.9754 4.4118-4.412 4.4118h-26.4706c-2.4365 0-4.4117-1.9753-4.4117-4.4118z"/></g><path d="m130.08 81.6956c.508-.4753 1.314-.1188 1.314.5645 0 5.1994-4.24 9.3886-9.464 9.3886h-4v3.0899c0 .8021-.866 1.2775-1.553.8616l-10.061-6.1204c-.656-.3863-.656-1.337 0-1.7232l10.031-6.1204c.687-.4159 1.553.0891 1.553.8616v3.1196h3.791c2.657 0 5.225-1.0101 7.165-2.7928zm-9.105-13.1617c0-.8022.865-1.2776 1.552-.8617l10.031 6.1204c.657.3863.657 1.337 0 1.7232l-10.001 6.0907c-.687.4159-1.552-.0891-1.552-.8616v-3.0899h-3.822c-2.657 0-5.224 1.0101-7.165 2.7928l-1.224 1.129c-.477.4456-1.284.0891-1.284-.5645l.002-.1557c.083-5.127 4.29-9.2329 9.462-9.2329h4.001z"/></g></svg>
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><rect height="25.2632" opacity=".24" rx="8" width="120" x="40" y="53"/><path d="m59.6052 64.7107h-3.6842v-3.6842c0-.5087-.4124-.921-.9211-.921-.5086 0-.921.4123-.921.921v3.6842h-3.6842c-.5087 0-.9211.4124-.9211.9211s.4124.921.9211.921h3.6842v3.6842c0 .5087.4124.9211.921.9211.5087 0 .9211-.4124.9211-.9211v-3.6842h3.6842c.5087 0 .9211-.4123.9211-.921s-.4124-.9211-.9211-.9211z" opacity=".48"/><rect height="7.89474" rx="3.94737" width="63.1579" x="70" y="61.6841"/><rect height="25.2632" opacity=".24" rx="8" width="110.526" x="49.4736" y="87.7368"/><path d="m69.0788 101.553h-9.2105c-.5087 0-.921-.442-.921-.987s.4123-.9869.921-.9869h9.2105c.5087 0 .9211.4419.9211.9869s-.4124.987-.9211.987z" opacity=".48"/><rect height="7.89474" opacity=".48" rx="3.94737" width="53.6842" x="79.4736" y="96.4209"/><rect height="25.2632" opacity=".24" rx="8" width="110.526" x="49.4736" y="122.474"/><path d="m69.0788 136.29h-9.2105c-.5087 0-.921-.442-.921-.987s.4123-.987.921-.987h9.2105c.5087 0 .9211.442.9211.987s-.4124.987-.9211.987z" opacity=".48"/><rect height="7.89474" opacity=".24" rx="3.94737" width="53.6842" x="79.4736" y="131.158"/></g></svg>
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" height="200" viewBox="0 0 200 200" width="200" xmlns="http://www.w3.org/2000/svg"><g fill="#919eab"><path d="m110.557 125.463h-35.0921c-1.2473 0-2.3733.746-2.862 1.893l-6.6104 15.511c-.4895 1.148-1.6156 1.893-2.862 1.893h-13.3309c-2.2514 0-3.7575-2.32-2.8436-4.38l37.1959-83.8191c.4996-1.1248 1.614-1.85 2.8437-1.85h12.1455c1.2299 0 2.3439.7252 2.8439 1.85l37.196 83.8191c.914 2.06-.593 4.38-2.844 4.38h-13.343c-1.24 0-2.362-.737-2.855-1.876l-6.727-15.544c-.494-1.139-1.616-1.877-2.855-1.877zm-30.9804-15.436h26.8544l-13.3622-32.6753z"/><path d="m152.372 53.1104c.899 0 1.628.7293 1.628 1.63v90.0416c0 .9-.729 1.63-1.628 1.63h-10.29c-.9 0-1.628-.73-1.628-1.63s.729-1.631 1.628-1.631h8.662v-19.162h-5.125c-.9 0-1.628-.73-1.628-1.63 0-.901.728-1.631 1.628-1.631h5.125v-19.377h-8.683c-.899 0-1.628-.729-1.628-1.6302 0-.015.002-.0301.002-.046l-.002-.0451c0-.9008.729-1.6301 1.628-1.6301h8.683v-19.0335h-5.125c-.9 0-1.628-.7302-1.628-1.6309 0-.8999.728-1.6301 1.628-1.6301h5.125v-19.3346h-8.662c-.9 0-1.628-.7302-1.628-1.6301 0-.9007.729-1.63 1.628-1.63zm-40.292 89.9436c.899 0 1.628.73 1.628 1.631 0 .875-.69 1.59-1.556 1.628l-.072.002h-1.52c-.899 0-1.628-.731-1.628-1.63 0-.901.729-1.631 1.628-1.631zm-6.948 0c.9 0 1.629.73 1.629 1.631 0 .875-.69 1.59-1.556 1.628l-.073.002h-1.519c-.899 0-1.629-.731-1.629-1.63 0-.901.73-1.631 1.629-1.631zm-6.9469 0c.8989 0 1.6282.73 1.6282 1.631 0 .875-.6896 1.59-1.5556 1.628l-.0726.002h-1.5195c-.8997 0-1.6282-.731-1.6282-1.63 0-.901.7285-1.631 1.6282-1.631zm-6.9469 0c.8988 0 1.6281.73 1.6281 1.631 0 .875-.6904 1.59-1.5557 1.628l-.0724.002h-1.5196c-.8997 0-1.6281-.731-1.6281-1.63 0-.901.7284-1.631 1.6281-1.631zm-6.9479 0c.8997 0 1.629.73 1.629 1.631 0 .875-.6904 1.59-1.5564 1.628l-.0726.002h-1.5195c-.8989 0-1.6282-.731-1.6282-1.63 0-.901.7293-1.631 1.6282-1.631zm-6.947 0c.8989 0 1.6282.73 1.6282 1.631 0 .875-.6904 1.59-1.5557 1.628l-.0725.002h-1.5195c-.8997 0-1.6282-.731-1.6282-1.63 0-.901.7285-1.631 1.6282-1.631zm-6.947 0c.8989 0 1.6282.73 1.6282 1.631 0 .875-.6904 1.59-1.5557 1.628l-.0725.002h-1.5195c-.8997 0-1.6282-.731-1.6282-1.63 0-.901.7285-1.631 1.6282-1.631zm6.541-34.741c.8989 0 1.6282.73 1.6282 1.63s-.7293 1.631-1.6282 1.631h-1.5203c-.8989 0-1.6282-.731-1.6282-1.631s.7293-1.63 1.6282-1.63zm-6.9478 0c.8997 0 1.629.73 1.629 1.63s-.7293 1.631-1.629 1.631h-1.5195c-.8989 0-1.6282-.731-1.6282-1.631s.7293-1.63 1.6282-1.63zm-6.947 0c.8997 0 1.6282.73 1.6282 1.63s-.7285 1.631-1.6282 1.631h-1.5195c-.8997 0-1.6282-.731-1.6282-1.631s.7285-1.63 1.6282-1.63zm-6.947 0c.8989 0 1.6282.73 1.6282 1.63s-.7293 1.631-1.6282 1.631h-1.5204c-.8988 0-1.6281-.731-1.6281-1.631s.7293-1.63 1.6281-1.63zm-6.9478 0c.8997 0 1.629.73 1.629 1.63s-.7293 1.631-1.629 1.631h-1.5196c-.8988 0-1.6281-.731-1.6281-1.631s.7293-1.63 1.6281-1.63zm87.5563-55.313c.899 0 1.629.7301 1.629 1.63 0 .9008-.73 1.6301-1.629 1.6301h-1.519c-.9 0-1.628-.7293-1.628-1.6301 0-.8999.728-1.63 1.628-1.63zm-6.947 0c.899 0 1.629.7301 1.629 1.63 0 .9008-.73 1.6301-1.629 1.6301h-1.52c-.899 0-1.628-.7293-1.628-1.6301 0-.8999.729-1.63 1.628-1.63zm-6.947 0c.899 0 1.629.7301 1.629 1.63 0 .9008-.73 1.6301-1.629 1.6301h-1.52c-.899 0-1.628-.7293-1.628-1.6301 0-.8999.728-1.63 1.628-1.63zm-6.947 0c.898 0 1.628.7301 1.628 1.63 0 .9008-.73 1.6301-1.628 1.6301h-1.52c-.9 0-1.628-.7293-1.628-1.6301 0-.8999.728-1.63 1.628-1.63zm-6.947 0c.898 0 1.628.7301 1.628 1.63 0 .9008-.73 1.6301-1.628 1.6301h-1.521c-.899 0-1.628-.7293-1.628-1.6301 0-.8999.729-1.63 1.628-1.63zm-6.948 0c.899 0 1.629.7301 1.629 1.63 0 .9008-.73 1.6301-1.629 1.6301h-1.52c-.8987 0-1.628-.7293-1.628-1.6301 0-.8999.7293-1.63 1.628-1.63zm-6.9473 0c.8989 0 1.6282.7301 1.6282 1.63 0 .9008-.7293 1.6301-1.6282 1.6301h-1.5195c-.8997 0-1.6282-.7293-1.6282-1.6301 0-.8999.7285-1.63 1.6282-1.63zm-6.947 0c.8989 0 1.6282.7301 1.6282 1.63 0 .9008-.7293 1.6301-1.6282 1.6301h-1.5203c-.8989 0-1.6282-.7293-1.6282-1.6301 0-.8999.7293-1.63 1.6282-1.63z" opacity=".24"/></g></svg>
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" d="M3 12V18C3 22.242 3 24.3645 4.3185 25.6815C5.0325 26.397 5.9835 26.724 7.3785 26.874C7.491 26.724 7.596 26.6055 7.671 26.523C7.845 26.331 8.0655 26.1135 8.28 25.902L10.5195 23.694L11.346 22.857C11.6156 21.2876 12.4313 19.8641 13.6489 18.8378C14.8665 17.8116 16.4076 17.2488 18 17.2488C19.5924 17.2488 21.1335 17.8116 22.3511 18.8378C23.5687 19.8641 24.3844 21.2876 24.654 22.857L25.4805 23.694L27.72 25.902C27.9345 26.1135 28.155 26.331 28.329 26.523C28.404 26.6055 28.509 26.724 28.62 26.874C30.0165 26.724 30.9675 26.397 31.6815 25.6815C33 24.3645 33 22.242 33 18V12C33 7.758 33 5.6355 31.6815 4.3185C30.3645 3 28.242 3 24 3H12C7.758 3 5.6355 3 4.3185 4.3185C3 5.6355 3 7.758 3 12Z" fill="url(#paint0_linear_3787_40783)"/>
|
||||
<path d="M10.499 13.125C10.2006 13.125 9.91444 13.2435 9.70347 13.4545C9.49249 13.6655 9.37396 13.9516 9.37396 14.25C9.37396 14.5484 9.49249 14.8345 9.70347 15.0455C9.91444 15.2565 10.2006 15.375 10.499 15.375H25.499C25.7973 15.375 26.0835 15.2565 26.2945 15.0455C26.5054 14.8345 26.624 14.5484 26.624 14.25C26.624 13.9516 26.5054 13.6655 26.2945 13.4545C26.0835 13.2435 25.7973 13.125 25.499 13.125H10.499ZM12.374 9C12.374 8.70163 12.4925 8.41548 12.7035 8.2045C12.9144 7.99353 13.2006 7.875 13.499 7.875H22.499C22.7973 7.875 23.0835 7.99353 23.2945 8.2045C23.5054 8.41548 23.624 8.70163 23.624 9C23.624 9.29837 23.5054 9.58452 23.2945 9.7955C23.0835 10.0065 22.7973 10.125 22.499 10.125H13.499C13.2006 10.125 12.9144 10.0065 12.7035 9.7955C12.4925 9.58452 12.374 9.29837 12.374 9ZM13.5005 23.8755L13.499 24C13.5011 25.1881 13.973 26.3271 14.8117 27.1686C15.6504 28.0101 16.7878 28.4858 17.9759 28.4919C19.1639 28.498 20.3062 28.034 21.1535 27.2011C22.0008 26.3683 22.4843 25.2342 22.4986 24.0462C22.5129 22.8582 22.0569 21.7127 21.2299 20.8597C20.4029 20.0067 19.2722 19.5153 18.0843 19.4928C16.8964 19.4702 15.7478 19.9184 14.8891 20.7394C14.0304 21.5605 13.5312 22.6878 13.5005 23.8755ZM11.513 25.875L9.89296 27.4725C9.40546 27.9525 9.16246 28.1925 9.07846 28.3935C8.98306 28.6093 8.97006 28.8526 9.04193 29.0773C9.1138 29.302 9.26555 29.4926 9.46846 29.613C9.65146 29.7195 9.98146 29.7525 10.643 29.82C11.015 29.8575 11.2025 29.8755 11.3585 29.9325C11.5297 29.9943 11.6854 30.0926 11.8149 30.2206C11.9444 30.3485 12.0446 30.503 12.1085 30.6735C12.167 30.828 12.1865 31.011 12.224 31.3785C12.2915 32.031 12.326 32.3565 12.434 32.538C12.56 32.7392 12.754 32.8886 12.9808 32.959C13.2076 33.0295 13.4521 33.0163 13.67 32.922C13.8755 32.838 14.12 32.5995 14.6045 32.1195L16.2245 30.5145C15.1075 30.209 14.0877 29.6217 13.2628 28.8091C12.4378 27.9965 11.8353 26.9872 11.513 25.875ZM19.772 30.5145L21.392 32.1195C21.8795 32.5995 22.1225 32.8395 22.328 32.922C22.7975 33.111 23.318 32.949 23.564 32.538C23.672 32.358 23.7065 32.031 23.774 31.38C23.8115 31.011 23.831 30.828 23.8895 30.675C23.9533 30.5043 24.0534 30.3495 24.1829 30.2213C24.3124 30.0931 24.4682 29.9946 24.6395 29.9325C24.797 29.8755 24.983 29.8575 25.355 29.82C26.015 29.7525 26.3465 29.7195 26.5295 29.613C26.7324 29.4926 26.8841 29.302 26.956 29.0773C27.0279 28.8526 27.0149 28.6093 26.9195 28.3935C26.8355 28.191 26.5925 27.951 26.1065 27.4725L24.4865 25.8735C24.1638 26.9861 23.5609 27.9971 22.7354 28.8098C21.9099 29.6224 20.8895 30.2094 19.772 30.5145Z" fill="url(#paint1_linear_3787_40783)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_3787_40783" x1="3" y1="3" x2="26.2645" y2="32.2341" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E33FF"/>
|
||||
<stop offset="1" stop-color="#5119B7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_3787_40783" x1="8.99609" y1="7.875" x2="32.7907" y2="24.9248" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E33FF"/>
|
||||
<stop offset="1" stop-color="#5119B7"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" d="M33 21V17.697C33 13.749 33 11.7735 31.845 10.491C31.7391 10.3726 31.6269 10.26 31.509 10.1535C30.2265 9 28.251 9 24.303 9H23.742C22.0125 9 21.147 9 20.34 8.7705C19.8971 8.64391 19.4703 8.46674 19.068 8.2425C18.336 7.836 17.724 7.2225 16.5 6L15.675 5.175C15.264 4.764 15.06 4.56 14.844 4.38C13.915 3.60996 12.7754 3.13792 11.574 3.0255C11.295 3 11.004 3 10.425 3C9.1005 3 8.439 3 7.887 3.105C6.70176 3.32884 5.6115 3.90471 4.75846 4.75748C3.90542 5.61025 3.32921 6.70033 3.105 7.8855C3 8.439 3 9.102 3 10.425V21C3 26.6565 3 29.4855 4.758 31.242C6.5145 33 9.3435 33 15 33H21C26.6565 33 29.4855 33 31.242 31.242C33 29.4855 33 26.6565 33 21Z" fill="url(#paint0_linear_3787_40775)"/>
|
||||
<path d="M21.7472 17.1599C21.97 17.358 22.1051 17.6363 22.1228 17.9339C22.1405 18.2314 22.0394 18.5239 21.8417 18.7469L17.8412 23.2469C17.7357 23.3657 17.6062 23.4607 17.4613 23.5257C17.3164 23.5908 17.1593 23.6244 17.0005 23.6244C16.8416 23.6244 16.6846 23.5908 16.5397 23.5257C16.3948 23.4607 16.2653 23.3657 16.1597 23.2469L14.1587 20.9969C13.9606 20.7738 13.8593 20.481 13.877 20.1831C13.8947 19.8852 14.03 19.6066 14.2532 19.4084C14.4764 19.2103 14.7691 19.109 15.067 19.1267C15.365 19.1444 15.6436 19.2798 15.8417 19.5029L16.9997 20.8079L20.1602 17.2529C20.3583 17.0302 20.6366 16.8951 20.9342 16.8774C21.2317 16.8596 21.5242 16.9622 21.7472 17.1599Z" fill="url(#paint1_linear_3787_40775)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_3787_40775" x1="3" y1="3" x2="33" y2="33" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#22C55E"/>
|
||||
<stop offset="1" stop-color="#118D57"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_3787_40775" x1="13.875" y1="16.8754" x2="20.4903" y2="24.9616" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#22C55E"/>
|
||||
<stop offset="1" stop-color="#118D57"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.5" d="M24.6232 26.961C24.3096 27.9215 23.7586 28.7873 23.0212 29.478C21.9247 30.5055 20.2327 30.9585 16.8502 31.8645C13.4677 32.7705 11.7757 33.225 10.3132 32.883C9.1576 32.6135 8.10786 32.0075 7.29669 31.1415C6.26919 30.045 5.81469 28.353 4.90869 24.9705L4.13319 22.0725C3.22569 18.69 2.77269 16.998 3.11319 15.5355C3.38306 14.3797 3.98963 13.33 4.85619 12.519C5.95269 11.4915 7.64469 11.0385 11.0272 10.131C11.6662 9.95998 12.2467 9.80398 12.7747 9.66748L12.4087 11.0265L11.6332 13.9245C10.7257 17.307 10.2727 18.9975 10.6132 20.4615C10.8831 21.6172 11.4896 22.667 12.3562 23.478C13.4527 24.5055 15.1447 24.9585 18.5272 25.866C21.5752 26.682 23.2507 27.1305 24.6232 26.961Z" fill="url(#paint0_linear_3787_40767)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.245 16.0725L30.468 18.9705C29.5605 22.353 29.1075 24.045 28.08 25.1415C27.2692 26.0072 26.22 26.6133 25.065 26.883C24.9195 26.9175 24.7725 26.943 24.6225 26.961C23.25 27.1305 21.5745 26.682 18.5265 25.866C15.144 24.9585 13.452 24.5055 12.3555 23.478C11.4895 22.6668 10.8834 21.6171 10.614 20.4615C10.272 18.9975 10.725 17.307 11.6325 13.9245L12.408 11.0265L12.774 9.66899C13.4565 7.16999 13.9155 5.79449 14.796 4.85399C15.607 3.98879 16.6561 3.3833 17.811 3.11399C19.275 2.77199 20.967 3.22499 24.351 4.13249C27.732 5.03849 29.424 5.49149 30.5205 6.51749C31.3868 7.32907 31.9928 8.37937 32.262 9.53549C32.604 10.9995 32.151 12.69 31.245 16.0725ZM16.578 14.7075C16.6163 14.5648 16.6823 14.431 16.7723 14.3138C16.8623 14.1966 16.9745 14.0982 17.1025 14.0244C17.2306 13.9506 17.3719 13.9027 17.5184 13.8835C17.6649 13.8643 17.8138 13.8741 17.9565 13.9125L25.2015 15.855C25.348 15.8897 25.486 15.9535 25.6074 16.0425C25.7288 16.1316 25.831 16.2441 25.9081 16.3734C25.9853 16.5027 26.0356 16.6461 26.0563 16.7953C26.0769 16.9444 26.0675 17.0961 26.0284 17.2415C25.9894 17.3869 25.9215 17.523 25.8289 17.6417C25.7363 17.7604 25.6208 17.8593 25.4893 17.9325C25.3578 18.0057 25.2129 18.0518 25.0632 18.0681C24.9136 18.0843 24.7622 18.0703 24.618 18.027L17.373 16.086C17.0851 16.0087 16.8396 15.8202 16.6906 15.562C16.5415 15.3038 16.501 14.9955 16.578 14.7075ZM15.414 19.0545C15.4913 18.7666 15.6798 18.5211 15.938 18.3721C16.1962 18.223 16.503 18.1825 16.791 18.2595L21.138 19.425C21.2852 19.459 21.424 19.5222 21.5462 19.611C21.6684 19.6998 21.7715 19.8123 21.8493 19.9417C21.9271 20.0712 21.978 20.215 21.999 20.3646C22.0201 20.5142 22.0108 20.6664 21.9717 20.8124C21.9326 20.9583 21.8645 21.0948 21.7715 21.2138C21.6785 21.3328 21.5625 21.4319 21.4304 21.5051C21.2982 21.5784 21.1527 21.6242 21.0025 21.64C20.8523 21.6558 20.7004 21.6412 20.556 21.597L16.209 20.433C16.0663 20.3947 15.9325 20.3287 15.8153 20.2387C15.6981 20.1487 15.5997 20.0365 15.5259 19.9084C15.4521 19.7804 15.4042 19.6391 15.385 19.4926C15.3658 19.3461 15.3756 19.1972 15.414 19.0545Z" fill="url(#paint1_linear_3787_40767)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_3787_40767" x1="3" y1="9.66748" x2="26.2622" y2="31.2285" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFAB00"/>
|
||||
<stop offset="1" stop-color="#B76E00"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_3787_40767" x1="10.5" y1="3" x2="34.3942" y2="24.7825" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFAB00"/>
|
||||
<stop offset="1" stop-color="#B76E00"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
76
03_source/frontend/public/assets/icons/empty/ic-cart.svg
Normal file
@@ -0,0 +1,76 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#919EAB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<g filter="url(#filter0_di_2575_2853367)">
|
||||
<path d="M28.3076 50.5416C28.7263 48.6729 30.5355 47.8134 32.4482 47.7187C36.2621 47.5299 44.3768 47.2672 60 47.2672C75.6232 47.2672 83.7379 47.5299 87.5518 47.7187C89.4645 47.8134 91.2738 48.6729 91.6925 50.5416C91.8731 51.3477 92 52.3741 92 53.6672C92 54.9603 91.8731 55.9867 91.6925 56.7928C91.2738 58.6614 89.4645 59.5209 87.5518 59.6157C83.7379 59.8045 75.6232 60.0672 60 60.0672C44.3768 60.0672 36.2621 59.8045 32.4482 59.6157C30.5355 59.5209 28.7263 58.6614 28.3076 56.7928C28.1269 55.9867 28 54.9603 28 53.6672C28 52.3741 28.1269 51.3477 28.3076 50.5416Z" fill="#DFE3E8"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<path d="M62.9608 68.3071C62.9135 67.686 62.6597 67.0823 62.0871 66.8369C61.6328 66.6422 60.958 66.4673 59.9997 66.4673C59.0543 66.4673 58.3847 66.6375 57.9306 66.829C57.3455 67.0759 57.0893 67.6905 57.0445 68.3239C56.8909 70.4945 56.5911 75.9313 57.0242 80.6543C57.0797 81.2591 57.3327 81.8444 57.8893 82.0878C58.3437 82.2863 59.0252 82.4673 59.9997 82.4673C60.958 82.4673 61.6328 82.2924 62.0871 82.0977C62.6597 81.8522 62.9156 81.2481 62.9677 80.6274C63.4063 75.4034 63.1168 70.3513 62.9608 68.3071Z" fill="#DFE3E8"/>
|
||||
<path d="M77.5207 68.8999C77.5901 67.8908 77.0644 66.9079 76.0837 66.6594C74.7476 66.3209 73.505 66.4852 72.6076 66.7278C71.6837 66.9775 71.1 67.8145 70.9434 68.7585C70.0604 74.0834 69.7576 77.9849 69.6538 80.034C69.6026 81.0442 70.1351 82.0267 71.1157 82.2751C72.425 82.607 73.6445 82.4558 74.5375 82.2214C75.4943 81.97 76.0863 81.0897 76.2266 80.1105C77.0693 74.223 77.3949 70.7242 77.5207 68.8999Z" fill="#DFE3E8"/>
|
||||
<path d="M42.4788 68.8999C42.4093 67.8908 42.9351 66.9079 43.9157 66.6594C45.2519 66.3209 46.4944 66.4852 47.3919 66.7278C48.3157 66.9775 48.8994 67.8145 49.056 68.7585C49.9391 74.0834 50.2418 77.9849 50.3456 80.034C50.3968 81.0442 49.8644 82.0267 48.8837 82.2751C47.5744 82.607 46.3549 82.4558 45.462 82.2214C44.5052 81.97 43.9132 81.0897 43.7728 80.1105C42.9301 74.223 42.6045 70.7242 42.4788 68.8999Z" fill="#DFE3E8"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_di_2575_2853367)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.8315 59.5578C32.525 65.2358 33.8412 74.247 36.0298 83.0979C36.9085 86.6515 39.8862 89.2438 43.5275 89.6195C47.5531 90.0348 53.3439 90.4675 60.0001 90.4675C66.6563 90.4675 72.4472 90.0348 76.4727 89.6195C80.114 89.2438 83.0918 86.6515 83.9703 83.0979C86.159 74.247 87.4753 65.2358 88.1687 59.5578C87.9654 59.5863 87.7592 59.6056 87.5518 59.6159C83.7379 59.8047 75.6232 60.0674 60 60.0674C44.3768 60.0674 36.262 59.8047 32.4482 59.6159C32.2409 59.6056 32.0348 59.5864 31.8315 59.5578ZM62.0875 66.837C62.6601 67.0824 62.9139 67.6861 62.9613 68.3072C63.1173 70.3514 63.4067 75.4036 62.9681 80.6276C62.916 81.2482 62.6601 81.8524 62.0875 82.0978C61.6333 82.2925 60.9584 82.4674 60.0001 82.4674C59.0256 82.4674 58.3441 82.2864 57.8897 82.0879C57.3331 81.8445 57.0801 81.2592 57.0246 80.6544C56.5915 75.9314 56.8913 70.4946 57.0449 68.324C57.0897 67.6906 57.3459 67.076 57.931 66.8291C58.3851 66.6376 59.0547 66.4674 60.0001 66.4674C60.9584 66.4674 61.6333 66.6423 62.0875 66.837ZM76.0841 66.6596C77.0648 66.908 77.5905 67.8909 77.5211 68.9C77.3953 70.7244 77.0697 74.2231 76.227 80.1106C76.0867 81.0898 75.4947 81.9701 74.5379 82.2215C73.6449 82.4559 72.4254 82.6071 71.1161 82.2752C70.1355 82.0268 69.603 81.0443 69.6542 80.0341C69.7581 77.985 70.0608 74.0836 70.9438 68.7586C71.1005 67.8146 71.6841 66.9776 72.608 66.7279C73.5054 66.4853 74.748 66.321 76.0841 66.6596ZM42.4792 68.9C42.4097 67.8909 42.9355 66.908 43.9161 66.6596C45.2523 66.321 46.4949 66.4853 47.3923 66.7279C48.3161 66.9776 48.8998 67.8146 49.0565 68.7586C49.9395 74.0836 50.2422 77.985 50.3461 80.0341C50.3973 81.0443 49.8648 82.0268 48.8841 82.2752C47.5749 82.6071 46.3553 82.4559 45.4624 82.2215C44.5056 81.9701 43.9136 81.0898 43.7733 80.1106C42.9305 74.2231 42.6049 70.7244 42.4792 68.9Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<g opacity="0.48" filter="url(#filter2_di_2575_2853367)">
|
||||
<path d="M40.3501 47.4531C44.39 47.3612 49.7979 47.2873 56.9484 47.2707C56.5169 46.216 55.8259 45.2197 54.9526 44.3854C51.3659 40.9589 45.7756 35.7635 40.0035 30.9646C37.958 29.264 34.9577 28.9597 32.9425 30.6961C32.8058 30.8139 32.6808 30.9284 32.5715 31.0377C32.4622 31.147 32.3477 31.272 32.2299 31.4087C30.4936 33.4239 30.7978 36.4241 32.4984 38.4696C35.1148 41.6165 37.849 44.7095 40.3501 47.4531Z" fill="#919EAB"/>
|
||||
<path d="M79.6501 47.4531C82.1512 44.7095 84.8854 41.6165 87.5019 38.4696C89.2023 36.4241 89.5067 33.4239 87.7703 31.4087C87.6526 31.272 87.538 31.147 87.4287 31.0377C87.3193 30.9284 87.1943 30.8139 87.0577 30.6961C85.0425 28.9597 82.0422 29.264 79.9967 30.9646C74.2246 35.7635 68.6343 40.9589 65.0476 44.3854C64.1743 45.2197 63.4833 46.216 63.0518 47.2707C70.2024 47.2873 75.6102 47.3612 79.6501 47.4531Z" fill="#919EAB"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_di_2575_2853367" x="20" y="39.2672" width="96" height="44.8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2853367"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2853367" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2853367"/>
|
||||
</filter>
|
||||
<filter id="filter1_di_2575_2853367" x="23.8315" y="51.5578" width="88.3369" height="62.9097" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2853367"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2853367" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2853367"/>
|
||||
</filter>
|
||||
<filter id="filter2_di_2575_2853367" x="23.0664" y="21.5326" width="89.8672" height="49.9205" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2853367"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2853367" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2853367"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,39 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#FF5630"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#FF5630"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#22C55E"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#00A76F"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#8E33FF"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#8E33FF"/>
|
||||
</g>
|
||||
<path d="M60 31C42.3269 31 28 43.1399 28 58.1151C28 65.3441 31.3393 71.9119 36.7811 76.7726C37.5465 77.4564 37.8511 78.5374 37.8511 79.563V86.5457C37.8511 87.1107 38.1114 87.6381 38.5445 87.9506C38.5579 87.9556 39.2389 88.4979 40.093 88.1162C48.3046 84.4466 49.2287 83.7082 51.1144 84.1695C71.5401 89.1657 92 76.1686 92 58.1151C92 43.1399 77.6731 31 60 31Z" fill="url(#paint0_linear_4017_39750)"/>
|
||||
<path opacity="0.2" d="M75.5448 81.3823C55.009 86.4056 34.4391 73.3384 34.4391 55.1879C34.4391 46.0426 39.7542 37.9499 47.9091 33.0045C36.2306 37.0463 28 46.7654 28 58.1151C28 65.3441 31.3393 71.9119 36.7811 76.7726C37.5465 77.4564 37.8511 78.5375 37.8511 79.563V86.5458C37.8511 87.7838 39.0401 88.5868 40.093 88.1163C48.3046 84.4466 49.2287 83.7083 51.1144 84.1695C60.225 86.3981 69.3424 85.0468 76.6479 81.2638C76.2739 81.2438 75.9291 81.2883 75.5448 81.3823Z" fill="url(#paint1_linear_4017_39750)"/>
|
||||
<path d="M46.9344 62.5193C48.582 62.5193 49.9177 61.1836 49.9177 59.536C49.9177 57.8884 48.582 56.5528 46.9344 56.5528C45.2868 56.5528 43.9512 57.8884 43.9512 59.536C43.9512 61.1836 45.2868 62.5193 46.9344 62.5193Z" fill="url(#paint2_linear_4017_39750)"/>
|
||||
<path d="M59.9999 62.5193C61.6475 62.5193 62.9832 61.1836 62.9832 59.536C62.9832 57.8884 61.6475 56.5528 59.9999 56.5528C58.3523 56.5528 57.0167 57.8884 57.0167 59.536C57.0167 61.1836 58.3523 62.5193 59.9999 62.5193Z" fill="url(#paint3_linear_4017_39750)"/>
|
||||
<path d="M73.0654 62.5193C74.713 62.5193 76.0487 61.1836 76.0487 59.536C76.0487 57.8884 74.713 56.5528 73.0654 56.5528C71.4178 56.5528 70.0822 57.8884 70.0822 59.536C70.0822 61.1836 71.4178 62.5193 73.0654 62.5193Z" fill="url(#paint4_linear_4017_39750)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_4017_39750" x1="28" y1="31" x2="84.8987" y2="94.6048" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFD666"/>
|
||||
<stop offset="1" stop-color="#FFAB00"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_4017_39750" x1="28" y1="33.0045" x2="82.8038" y2="81.2613" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFAB00"/>
|
||||
<stop offset="1" stop-color="#B76E00"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_4017_39750" x1="43.9512" y1="56.5528" x2="46.0953" y2="68.0872" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF5CC"/>
|
||||
<stop offset="1" stop-color="#FFD666"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_4017_39750" x1="43.9512" y1="56.5528" x2="46.0953" y2="68.0872" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF5CC"/>
|
||||
<stop offset="1" stop-color="#FFD666"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_4017_39750" x1="43.9512" y1="56.5528" x2="46.0953" y2="68.0872" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF5CC"/>
|
||||
<stop offset="1" stop-color="#FFD666"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 9.6 KiB |
@@ -0,0 +1,18 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#919EAB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path d="M60 31C42.3269 31 28 43.1399 28 58.1151C28 65.3441 31.3393 71.9119 36.7811 76.7726C37.5465 77.4564 37.8511 78.5374 37.8511 79.563V86.5457C37.8511 87.1107 38.1114 87.6381 38.5445 87.9506C38.5579 87.9556 39.2389 88.4979 40.093 88.1162C48.3046 84.4466 49.2287 83.7082 51.1144 84.1695C71.5401 89.1657 92 76.1686 92 58.1151C92 43.1399 77.6731 31 60 31Z" fill="#F4F6F8"/>
|
||||
<path opacity="0.16" d="M60 31C42.3269 31 28 43.1399 28 58.1151C28 65.3441 31.3393 71.9119 36.7811 76.7726C37.5465 77.4564 37.8511 78.5374 37.8511 79.563V86.5457C37.8511 87.1107 38.1114 87.6381 38.5445 87.9506C38.5579 87.9556 39.2389 88.4979 40.093 88.1162C48.3046 84.4466 49.2287 83.7082 51.1144 84.1695C71.5401 89.1657 92 76.1686 92 58.1151C92 43.1399 77.6731 31 60 31Z" fill="#919EAB"/>
|
||||
<path opacity="0.08" d="M75.5448 81.3823C55.009 86.4056 34.4391 73.3384 34.4391 55.1879C34.4391 46.0426 39.7542 37.9499 47.9091 33.0045C36.2306 37.0463 28 46.7654 28 58.1151C28 65.3441 31.3393 71.9119 36.7811 76.7726C37.5465 77.4564 37.8511 78.5375 37.8511 79.563V86.5458C37.8511 87.7838 39.0401 88.5868 40.093 88.1163C48.3046 84.4466 49.2287 83.7083 51.1144 84.1695C60.225 86.3981 69.3424 85.0468 76.6479 81.2638C76.2739 81.2438 75.9291 81.2883 75.5448 81.3823Z" fill="#919EAB"/>
|
||||
<path d="M46.9344 62.5193C48.582 62.5193 49.9177 61.1836 49.9177 59.536C49.9177 57.8884 48.582 56.5528 46.9344 56.5528C45.2868 56.5528 43.9512 57.8884 43.9512 59.536C43.9512 61.1836 45.2868 62.5193 46.9344 62.5193Z" fill="#C4CDD5"/>
|
||||
<path d="M59.9999 62.5193C61.6475 62.5193 62.9832 61.1836 62.9832 59.536C62.9832 57.8884 61.6475 56.5528 59.9999 56.5528C58.3523 56.5528 57.0167 57.8884 57.0167 59.536C57.0167 61.1836 58.3523 62.5193 59.9999 62.5193Z" fill="#C4CDD5"/>
|
||||
<path d="M73.0654 62.5193C74.713 62.5193 76.0487 61.1836 76.0487 59.536C76.0487 57.8884 74.713 56.5528 73.0654 56.5528C71.4178 56.5528 70.0822 57.8884 70.0822 59.536C70.0822 61.1836 71.4178 62.5193 73.0654 62.5193Z" fill="#C4CDD5"/>
|
||||
</svg>
|
After Width: | Height: | Size: 8.8 KiB |
57
03_source/frontend/public/assets/icons/empty/ic-content.svg
Normal file
@@ -0,0 +1,57 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#919EAB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<g filter="url(#filter0_di_2575_2852044)">
|
||||
<path d="M28 49.2381H91.9998V79.3214C91.9998 83.6937 88.5887 87.2381 84.3808 87.2381H35.619C31.4112 87.2381 28 83.6937 28 79.3214V49.2381Z" fill="#DFE3E8"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.9048 39.3333C36.6247 39.3333 35.6191 40.3389 35.6191 41.6191C35.6191 42.8989 36.6247 43.9048 37.9048 43.9048C39.185 43.9048 40.1906 42.8989 40.1906 41.6191C40.1906 40.3389 39.185 39.3333 37.9048 39.3333Z" fill="#DFE3E8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.1429 39.3333C43.8628 39.3333 42.8572 40.3389 42.8572 41.6191C42.8572 42.8989 43.8628 43.9048 45.1429 43.9048C46.4231 43.9048 47.4286 42.8989 47.4286 41.6191C47.4286 40.3389 46.4231 39.3333 45.1429 39.3333Z" fill="#DFE3E8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M52.381 39.3333C51.1009 39.3333 50.0953 40.3389 50.0953 41.6191C50.0953 42.8989 51.1009 43.9048 52.381 43.9048C53.6612 43.9048 54.6667 42.8989 54.6667 41.6191C54.6667 40.3389 53.6612 39.3333 52.381 39.3333Z" fill="#DFE3E8"/>
|
||||
<g filter="url(#filter1_di_2575_2852044)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.9998 40.0954V49.2381H28L28 40.0959C28 36.7294 30.7292 34 34.0957 34H85.9046C89.2709 34 91.9998 36.7291 91.9998 40.0954ZM37.9047 39.3333C36.6246 39.3333 35.619 40.3389 35.619 41.619C35.619 42.8989 36.6246 43.9047 37.9047 43.9047C39.1849 43.9047 40.1904 42.8989 40.1904 41.619C40.1904 40.3389 39.1849 39.3333 37.9047 39.3333ZM45.1428 39.3333C43.8627 39.3333 42.8571 40.3389 42.8571 41.619C42.8571 42.8989 43.8627 43.9047 45.1428 43.9047C46.423 43.9047 47.4285 42.8989 47.4285 41.619C47.4285 40.3389 46.423 39.3333 45.1428 39.3333ZM50.0952 41.619C50.0952 40.3389 51.1007 39.3333 52.3809 39.3333C53.661 39.3333 54.6666 40.3389 54.6666 41.619C54.6666 42.8989 53.661 43.9047 52.3809 43.9047C51.1007 43.9047 50.0952 42.8989 50.0952 41.619Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path opacity="0.4" fill-rule="evenodd" clip-rule="evenodd" d="M82.3328 54.2363H65.6662C64.745 54.2363 63.9995 55.067 63.9995 56.0937V78.3825C63.9995 79.4091 64.745 80.2399 65.6662 80.2399H82.3328C83.2541 80.2399 83.9995 79.4091 83.9995 78.3825V56.0937C83.9995 55.067 83.2541 54.2363 82.3328 54.2363Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M37.6667 61.6659H44.3333C45.2546 61.6659 46 60.8351 46 59.8085C46 58.7818 45.2546 57.9511 44.3333 57.9511H37.6667C36.7454 57.9511 36 58.7818 36 59.8085C36 60.8351 36.7454 61.6659 37.6667 61.6659ZM36 67.2381C36 66.2114 36.7454 65.3807 37.6667 65.3807H54.3333C55.2546 65.3807 56 66.2114 56 67.2381C56 68.2647 55.2546 69.0955 54.3333 69.0955H37.6667C36.7454 69.0955 36 68.2647 36 67.2381ZM37.6667 72.8103C36.7454 72.8103 36 73.641 36 74.6677C36 75.6943 36.7454 76.5251 37.6667 76.5251H54.3333C55.2546 76.5251 56 75.6943 56 74.6677C56 73.641 55.2546 72.8103 54.3333 72.8103H37.6667Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_di_2575_2852044" x="20" y="41.2381" width="96" height="70" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2852044"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2852044" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2852044"/>
|
||||
</filter>
|
||||
<filter id="filter1_di_2575_2852044" x="20" y="26" width="96" height="47.2381" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2852044"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2852044" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2852044"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,48 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<mask id="mask0_2733_150756" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="53" y="19" width="50" height="44">
|
||||
<path d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_2733_150756)">
|
||||
<path d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="#F4F6F8"/>
|
||||
<path opacity="0.08" d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="#919EAB"/>
|
||||
<g opacity="0.24" filter="url(#filter0_f_2733_150756)">
|
||||
<path d="M100.622 33.793L68.5283 19.5041C67.2648 18.9415 65.8646 19.159 64.8283 19.9272L75.1556 41.8726C75.5306 42.6761 76.1831 43.3171 76.9931 43.6777C77.8032 44.0384 78.7162 44.0944 79.5642 43.8354L102.783 36.8258C102.661 35.5408 101.884 34.3551 100.622 33.793Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path d="M100.622 33.793L68.5283 19.5041C67.2648 18.9415 65.8646 19.159 64.8283 19.9272L75.1556 41.8726C75.5306 42.6761 76.1831 43.3171 76.9931 43.6777C77.8032 44.0384 78.7162 44.0944 79.5642 43.8354L102.783 36.8258C102.661 35.5408 101.884 34.3551 100.622 33.793Z" fill="#F4F6F8"/>
|
||||
<path opacity="0.04" d="M100.622 33.793L68.5283 19.5041C67.2648 18.9415 65.8646 19.159 64.8283 19.9272L75.1556 41.8726C75.5306 42.6761 76.1831 43.3171 76.9931 43.6777C77.8032 44.0384 78.7162 44.0944 79.5642 43.8354L102.783 36.8258C102.661 35.5408 101.884 34.3551 100.622 33.793Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<mask id="mask1_2733_150756" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="50" width="64" height="52">
|
||||
<path d="M66.8931 50.3799L20.847 60.1673C18.1701 60.7363 16.4613 63.3677 17.0303 66.0446L23.7269 97.5498C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5791C78.3272 91.0102 80.036 88.3788 79.467 85.7019L72.7704 54.1966C72.2014 51.5197 69.57 49.8109 66.8931 50.3799Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_2733_150756)">
|
||||
<path d="M66.8931 50.3799L20.847 60.1673C18.1701 60.7363 16.4613 63.3677 17.0303 66.0446L23.7269 97.5498C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5791C78.3272 91.0102 80.036 88.3788 79.467 85.7019L72.7704 54.1966C72.2014 51.5197 69.57 49.8109 66.8931 50.3799Z" fill="#F4F6F8"/>
|
||||
<path opacity="0.16" d="M66.8931 50.3799L20.847 60.1673C18.1701 60.7363 16.4613 63.3677 17.0303 66.0446L23.7269 97.5498C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5791C78.3272 91.0102 80.036 88.3788 79.467 85.7019L72.7704 54.1966C72.2014 51.5197 69.57 49.8109 66.8931 50.3799Z" fill="#919EAB"/>
|
||||
<g opacity="0.24" filter="url(#filter1_f_2733_150756)">
|
||||
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#F4F6F8"/>
|
||||
<path opacity="0.04" d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#919EAB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_2733_150756" x="52.8281" y="7.18808" width="61.9551" height="48.8077" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2733_150756"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_2733_150756" x="-6.83057" y="26.2721" width="102.456" height="77.542" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_2733_150756"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,58 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_2733_150717)">
|
||||
<mask id="mask0_2733_150717" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="53" y="19" width="50" height="44">
|
||||
<path d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_2733_150717)">
|
||||
<path d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="#FFD666"/>
|
||||
<path opacity="0.16" d="M100.622 33.793L68.5286 19.5041C66.6629 18.6734 64.477 19.5125 63.6463 21.3783L53.8697 43.3369C53.039 45.2027 53.8781 47.3886 55.7438 48.2193L87.8373 62.5082C89.703 63.3389 91.8889 62.4998 92.7196 60.6341L102.496 38.6754C103.327 36.8096 102.488 34.6237 100.622 33.793Z" fill="white"/>
|
||||
<g opacity="0.24" filter="url(#filter0_f_2733_150717)">
|
||||
<path d="M100.622 33.793L68.5283 19.5041C67.2648 18.9415 65.8646 19.159 64.8283 19.9272L75.1556 41.8726C75.5306 42.6761 76.1831 43.3171 76.9931 43.6777C77.8032 44.0384 78.7162 44.0944 79.5642 43.8354L102.783 36.8258C102.661 35.5408 101.884 34.3551 100.622 33.793Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path opacity="0.64" d="M100.622 33.793L68.5283 19.5041C67.2648 18.9415 65.8646 19.159 64.8283 19.9272L75.1556 41.8726C75.5306 42.6761 76.1831 43.3171 76.9931 43.6777C77.8032 44.0384 78.7162 44.0944 79.5642 43.8354L102.783 36.8258C102.661 35.5408 101.884 34.3551 100.622 33.793Z" fill="#FFF5CC"/>
|
||||
</g>
|
||||
<mask id="mask1_2733_150717" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="16" y="50" width="64" height="52">
|
||||
<path d="M66.8931 50.3799L20.847 60.1673C18.1701 60.7363 16.4613 63.3677 17.0303 66.0446L23.7269 97.5498C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5791C78.3272 91.0101 80.036 88.3788 79.467 85.7019L72.7704 54.1966C72.2014 51.5197 69.57 49.8109 66.8931 50.3799Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask1_2733_150717)">
|
||||
<path d="M66.8931 50.3799L20.847 60.1673C18.1701 60.7363 16.4613 63.3677 17.0303 66.0446L23.7269 97.5498C24.2959 100.227 26.9272 101.936 29.6041 101.367L75.6503 91.5791C78.3272 91.0101 80.036 88.3788 79.467 85.7019L72.7704 54.1966C72.2014 51.5197 69.57 49.8109 66.8931 50.3799Z" fill="url(#paint0_linear_2733_150717)"/>
|
||||
<g filter="url(#filter1_f_2733_150717)">
|
||||
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="#006C9C"/>
|
||||
</g>
|
||||
<path d="M66.8935 50.3799L20.8473 60.1673C19.0346 60.5526 17.6879 61.8913 17.1696 63.5403L45.6499 79.1967C46.6893 79.7724 47.9016 79.9533 49.0637 79.7063C50.2259 79.4592 51.2598 78.8009 51.9752 77.8522L71.6252 51.9653C70.4808 50.6686 68.7051 49.9948 66.8935 50.3799Z" fill="url(#paint1_linear_2733_150717)"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#FF5630"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#FF5630"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#22C55E"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#00A76F"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#8E33FF"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#8E33FF"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_f_2733_150717" x="52.8281" y="7.18808" width="61.9551" height="48.8077" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_2733_150717"/>
|
||||
</filter>
|
||||
<filter id="filter1_f_2733_150717" x="-6.83057" y="26.2721" width="102.456" height="77.542" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feGaussianBlur stdDeviation="12" result="effect1_foregroundBlur_2733_150717"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_2733_150717" x1="16" y1="61.1976" x2="66.7125" y2="106.113" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#61F3F3"/>
|
||||
<stop offset="1" stop-color="#00B8D9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_2733_150717" x1="16.6426" y1="61.061" x2="43.5393" y2="97.8586" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#61F3F3"/>
|
||||
<stop offset="1" stop-color="#00B8D9"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_2733_150717">
|
||||
<rect width="120" height="120" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 9.3 KiB |
54
03_source/frontend/public/assets/icons/empty/ic-mail.svg
Normal file
@@ -0,0 +1,54 @@
|
||||
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g opacity="0.48">
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M21.1902 86.066L22.6459 87.5218L24.1062 86.062L24.7302 86.6858L23.2696 88.1454L24.7262 89.6011L24.1005 90.2266L22.6438 88.7711L21.1845 90.2306L20.5605 89.6068L22.0201 88.1475L20.5645 86.6915L21.1902 86.066Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M87.2381 12.7676L88.6937 14.2234L90.1541 12.7635L90.7781 13.3874L89.3175 14.8469L90.7741 16.3026L90.1483 16.9282L88.6916 15.4726L87.2323 16.9322L86.6083 16.3084L88.0679 14.8491L86.6124 13.3931L87.2381 12.7676Z" fill="#919EAB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M96.6978 39.0406L95.6585 40.0797L95.6571 40.081C95.6368 40.1012 95.6207 40.1252 95.6097 40.1517C95.5987 40.1781 95.593 40.2064 95.593 40.235C95.593 40.2637 95.5987 40.292 95.6097 40.3184C95.6207 40.3449 95.6368 40.3689 95.6571 40.3891L95.6585 40.3904L96.6978 41.4295C96.739 41.4704 96.7948 41.4936 96.8529 41.4936C96.911 41.4936 96.9667 41.4706 97.0078 41.4297L98.0487 40.3891C98.069 40.3689 98.0851 40.3449 98.0961 40.3184C98.1072 40.2919 98.1128 40.2636 98.1128 40.235C98.1128 40.2065 98.1072 40.1782 98.0961 40.1517C98.0851 40.1252 98.069 40.1012 98.0487 40.081L98.0473 40.0797L97.008 39.0406C96.9669 38.9997 96.911 38.9765 96.8529 38.9765C96.7948 38.9765 96.739 38.9997 96.6978 39.0406ZM94.7813 39.2011L95.8211 38.1616C96.095 37.8885 96.466 37.735 96.8529 37.735C97.2397 37.735 97.6108 37.8885 97.8847 38.1616L98.9237 39.2004L98.9244 39.2011C99.0606 39.3365 99.1686 39.4975 99.2423 39.6747C99.3162 39.8522 99.3543 40.0426 99.3543 40.235C99.3543 40.4274 99.3162 40.6179 99.2423 40.7954C99.1686 40.9726 99.0606 41.1335 98.9245 41.269L98.9237 41.2697L97.8847 42.3085C97.6108 42.5816 97.2397 42.735 96.8529 42.735C96.466 42.735 96.095 42.5816 95.8211 42.3085L94.7821 41.2697L94.7813 41.2689C94.6452 41.1335 94.5372 40.9726 94.4635 40.7954C94.3896 40.6178 94.3516 40.4273 94.3516 40.235C94.3516 40.0427 94.3896 39.8523 94.4635 39.6747C94.5372 39.4975 94.6452 39.3366 94.7813 39.2011Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M62.355 105.714L61.3157 106.753L61.3143 106.755C61.294 106.775 61.2779 106.799 61.2669 106.825C61.2559 106.852 61.2503 106.88 61.2503 106.909C61.2503 106.937 61.2559 106.966 61.2669 106.992C61.2779 107.019 61.294 107.043 61.3143 107.063L61.3157 107.064L62.355 108.103C62.3962 108.144 62.4521 108.167 62.5101 108.167C62.5682 108.167 62.6239 108.144 62.665 108.103L63.7059 107.063C63.7262 107.043 63.7423 107.019 63.7534 106.992C63.7644 106.966 63.77 106.937 63.77 106.909C63.77 106.88 63.7644 106.852 63.7534 106.825C63.7423 106.799 63.7262 106.775 63.7059 106.755L63.7046 106.753L62.6653 105.714C62.6241 105.673 62.5682 105.65 62.5101 105.65C62.4521 105.65 62.3962 105.673 62.355 105.714ZM60.4385 105.875L61.4784 104.835C61.7522 104.562 62.1233 104.409 62.5101 104.409C62.897 104.409 63.268 104.562 63.5419 104.835L64.581 105.874L64.5817 105.875C64.7178 106.01 64.8258 106.171 64.8995 106.348C64.9734 106.526 65.0115 106.716 65.0115 106.909C65.0115 107.101 64.9734 107.291 64.8995 107.469C64.8258 107.646 64.7178 107.807 64.5817 107.943L64.581 107.943L63.5419 108.982C63.268 109.255 62.897 109.409 62.5101 109.409C62.1233 109.409 61.7522 109.255 61.4784 108.982L60.4393 107.943L60.4385 107.943C60.3024 107.807 60.1944 107.646 60.1207 107.469C60.0468 107.291 60.0088 107.101 60.0088 106.909C60.0088 106.716 60.0468 106.526 60.1207 106.348C60.1945 106.171 60.3024 106.01 60.4385 105.875Z" fill="#919EAB"/>
|
||||
<path opacity="0.24" fill-rule="evenodd" clip-rule="evenodd" d="M104.552 66.3174C104.701 66.2789 104.858 66.278 105.008 66.3153C105.173 66.3561 105.322 66.4409 105.442 66.5601C105.561 66.6797 105.646 66.8295 105.687 66.9935C105.724 67.1437 105.723 67.3005 105.685 67.4497L105.109 70.5411C105.062 70.7839 104.909 71.1334 104.522 71.2523C104.135 71.3714 103.812 71.1678 103.638 70.9932L101.009 68.3653C100.831 68.1888 100.628 67.8651 100.748 67.4773C100.868 67.0899 101.219 66.9375 101.464 66.8922C101.465 66.8921 101.465 66.8921 101.465 66.892L104.552 66.3174ZM104.448 67.5539L102.291 67.9554L104.046 69.7099L104.448 67.5539Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M102.46 94.266C102.609 94.2275 102.766 94.2266 102.916 94.2639C103.08 94.3047 103.23 94.3895 103.349 94.5088C103.469 94.6283 103.554 94.7781 103.594 94.9421C103.632 95.0923 103.631 95.2491 103.592 95.3983L103.016 98.4897C102.97 98.7325 102.817 99.082 102.43 99.201C102.042 99.32 101.72 99.1164 101.545 98.9419L98.9167 96.3139C98.7386 96.1374 98.5356 95.8137 98.6558 95.426C98.776 95.0385 99.1263 94.8861 99.3721 94.8408C99.3724 94.8408 99.3727 94.8407 99.373 94.8407L102.46 94.266ZM102.356 95.5026L100.199 95.904L101.954 97.6586L102.356 95.5026Z" fill="#919EAB"/>
|
||||
<path opacity="0.48" fill-rule="evenodd" clip-rule="evenodd" d="M12.5004 72.4729C12.3186 72.4729 12.1408 72.5269 11.9896 72.6279C11.8383 72.729 11.7205 72.8724 11.651 73.0402C11.5814 73.2081 11.5632 73.393 11.5987 73.5712C11.6341 73.7494 11.7217 73.9132 11.8502 74.0417C11.9787 74.1702 12.1425 74.2577 12.321 74.2932C12.4996 74.3287 12.6845 74.3105 12.8523 74.241C13.0203 74.1715 13.1639 74.0536 13.265 73.9024C13.366 73.7513 13.4199 73.5736 13.4199 73.3919C13.4199 73.1482 13.323 72.9145 13.1506 72.7421C12.9783 72.5698 12.7444 72.4729 12.5004 72.4729ZM11.1113 71.3132C11.5225 71.0386 12.0059 70.8919 12.5004 70.8919C13.1635 70.8919 13.7995 71.1552 14.2684 71.624C14.7374 72.0929 15.0009 72.7288 15.0009 73.3919C15.0009 73.8864 14.8542 74.3698 14.5794 74.7809C14.3047 75.1919 13.9142 75.5125 13.4572 75.7017C13.0002 75.891 12.4975 75.9403 12.0127 75.8438C11.5278 75.7474 11.0822 75.5095 10.7324 75.1598C10.3827 74.8102 10.1446 74.3647 10.0481 73.8797C9.95156 73.3947 10.0011 72.8919 10.1904 72.4351C10.3797 71.9782 10.7002 71.5878 11.1113 71.3132Z" fill="#919EAB"/>
|
||||
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M54.5424 18.4018C54.3606 18.4018 54.1828 18.4557 54.0316 18.5567C53.8803 18.6578 53.7625 18.8013 53.693 18.9691C53.6234 19.137 53.6052 19.3218 53.6407 19.5C53.6761 19.6783 53.7637 19.842 53.8922 19.9705C54.0207 20.099 54.1845 20.1865 54.363 20.222C54.5416 20.2575 54.7265 20.2393 54.8943 20.1698C55.0623 20.1003 55.2059 19.9824 55.307 19.8312C55.408 19.6801 55.4619 19.5025 55.4619 19.3207C55.4619 19.0771 55.365 18.8433 55.1926 18.671C55.0203 18.4986 54.7864 18.4018 54.5424 18.4018ZM53.1533 17.2421C53.5645 16.9674 54.0479 16.8207 54.5424 16.8207C55.2055 16.8207 55.8415 17.084 56.3104 17.5529C56.7794 18.0217 57.0429 18.6577 57.0429 19.3207C57.0429 19.8152 56.8962 20.2986 56.6214 20.7097C56.3467 21.1208 55.9562 21.4413 55.4992 21.6306C55.0422 21.8198 54.5395 21.8691 54.0547 21.7727C53.5698 21.6763 53.1242 21.4383 52.7744 21.0886C52.4247 20.739 52.1865 20.2935 52.09 19.8086C51.9936 19.3236 52.0431 18.8208 52.2324 18.3639C52.4217 17.907 52.7422 17.5167 53.1533 17.2421Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<g opacity="0.48">
|
||||
<g filter="url(#filter0_di_2575_2781069)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.6191 39.1429V54.2437C35.6191 56.2389 36.5885 58.1045 38.2575 59.198C43.416 62.5778 54.7887 69.619 60.0001 69.619C65.2115 69.619 76.5842 62.5778 81.7427 59.198C83.4116 58.1045 84.381 56.2389 84.381 54.2437V39.1429C84.381 34.0934 80.2876 30 75.2382 30H44.762C39.7126 30 35.6191 34.0934 35.6191 39.1429ZM47.0477 39.143C45.7854 39.143 44.762 40.1664 44.762 41.4287C44.762 42.691 45.7854 43.7144 47.0477 43.7144H60.762C62.0243 43.7144 63.0477 42.691 63.0477 41.4287C63.0477 40.1664 62.0243 39.143 60.762 39.143H47.0477ZM47.0477 49.8097C45.7854 49.8097 44.762 50.8331 44.762 52.0954C44.762 53.3577 45.7854 54.3811 47.0477 54.3811H69.9049C71.1672 54.3811 72.1906 53.3577 72.1906 52.0954C72.1906 50.8331 71.1672 49.8097 69.9049 49.8097H47.0477Z" fill="#DFE3E8"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_di_2575_2781069)">
|
||||
<path d="M35.619 42.9555C34.0663 44.1081 32.694 45.1622 31.593 46.0232C29.7583 47.4579 28.6083 49.5737 28.4531 51.8975C28.2419 55.0597 28 60.3681 28 68.0953C28 75.4029 28.4326 80.5471 28.8369 83.7589C29.1701 86.4069 30.9431 88.5069 33.557 89.0465C37.7482 89.9115 45.7515 90.9525 60 90.9525C74.2485 90.9525 82.2519 89.9115 86.443 89.0465C89.0569 88.5069 90.8299 86.4069 91.1631 83.7589C91.5674 80.5471 92 75.4029 92 68.0953C92 60.3681 91.7582 55.0597 91.547 51.8975C91.3917 49.5737 90.2417 47.4579 88.407 46.0232C87.306 45.1622 85.9337 44.1081 84.381 42.9555V54.2437C84.381 56.239 83.4115 58.1046 81.7426 59.1981C76.5841 62.5779 65.2114 69.6191 60 69.6191C54.7886 69.6191 43.4159 62.5779 38.2574 59.1981C36.5884 58.1046 35.619 56.239 35.619 54.2437V42.9555Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<path d="M44.7617 41.4287C44.7617 40.1664 45.7851 39.143 47.0474 39.143H60.7617C62.024 39.143 63.0474 40.1664 63.0474 41.4287C63.0474 42.691 62.024 43.7144 60.7617 43.7144H47.0474C45.7851 43.7144 44.7617 42.691 44.7617 41.4287Z" fill="#919EAB"/>
|
||||
<path d="M44.7617 52.0954C44.7617 50.8331 45.7851 49.8097 47.0474 49.8097H69.9046C71.1669 49.8097 72.1903 50.8331 72.1903 52.0954C72.1903 53.3577 71.1669 54.3811 69.9046 54.3811H47.0474C45.7851 54.3811 44.7617 53.3577 44.7617 52.0954Z" fill="#919EAB"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_di_2575_2781069" x="27.6191" y="22" width="80.7617" height="71.619" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2781069"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2781069" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2781069"/>
|
||||
</filter>
|
||||
<filter id="filter1_di_2575_2781069" x="20" y="34.9555" width="96" height="79.9969" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="8" dy="8"/>
|
||||
<feGaussianBlur stdDeviation="8"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.16 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2575_2781069"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2575_2781069" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-2" dy="-2"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.388235 0 0 0 0 0.45098 0 0 0 0 0.505882 0 0 0 0.48 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect2_innerShadow_2575_2781069"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 11 KiB |
34
03_source/frontend/public/assets/icons/faqs/ic-account.svg
Normal file
@@ -0,0 +1,34 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_296_3266)">
|
||||
<mask id="mask0_296_3266" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3266)" fill-opacity="0.16"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_296_3266)">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
||||
</g>
|
||||
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
||||
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
||||
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
||||
<path d="M48 32C48 40.8366 40.8364 48 32 48C23.1633 48 16 40.8366 16 32C16 23.1633 23.1633 16 32 16C40.8364 16 48 23.1633 48 32Z" fill="#FFD666"/>
|
||||
<path d="M36.2146 22.4116C36.0327 21.7085 35.2566 20.7117 32.3161 20.7117C27.7732 20.7117 27.1262 21.3845 25.9172 20.2227C24.8972 19.2424 24.2981 23.9602 25.6582 25.4585C25.0842 27.5806 25.5434 29.706 25.5434 29.706H38.3254C38.3252 29.706 39.3979 24.7412 36.2146 22.4116Z" fill="#B76E00"/>
|
||||
<path d="M26.8336 29.9292C26.8336 29.9292 26.2825 28.9199 25.1805 28.9199C24.0784 28.9199 23.2976 33.7652 26.8336 32.9576V29.9292Z" fill="#FFE4D1"/>
|
||||
<path d="M37.0352 29.9292C37.0352 29.9292 37.5862 28.9199 38.6882 28.9199C39.7905 28.9199 40.5711 33.7652 37.0352 32.9576V29.9292Z" fill="#FFE4D1"/>
|
||||
<path d="M31.9345 23.4365C23.4911 23.4365 25.1054 37.2842 31.9345 37.2842C38.7633 37.2842 40.3778 23.4365 31.9345 23.4365Z" fill="#FFEFE4"/>
|
||||
<path d="M28.893 21.9785C27.2754 22.0911 26.72 22.1298 25.9159 21.3572C25.393 20.8545 24.9813 21.8508 24.8871 23.1426C24.7572 21.3955 25.2455 19.5784 25.9159 20.2227C26.7201 20.9953 27.2755 20.9567 28.8935 20.8441C29.7085 20.7874 30.7931 20.7119 32.3148 20.7119C35.2555 20.7119 36.0316 21.7085 36.2133 22.4119C38.3463 23.9724 38.568 26.7144 38.4825 28.3555C38.3956 26.769 37.9064 24.7849 36.2133 23.5461C36.0316 22.8428 35.2555 21.8462 32.3148 21.8462C30.7928 21.8462 29.708 21.9217 28.893 21.9785Z" fill="#B76E00"/>
|
||||
<path d="M26.1909 29.2415C26.1909 21.8726 31.934 22.683 31.934 22.683C31.934 22.683 37.6769 21.8726 37.6769 29.2415C37.6769 29.2415 36.954 26.1959 35.2949 25.3653C34.9405 25.1878 34.6891 25.298 34.2983 25.4693C33.8371 25.6714 33.1818 25.9586 31.934 25.9586C30.6861 25.9586 30.0308 25.6714 29.5696 25.4693C29.1788 25.298 28.9274 25.1878 28.573 25.3653C26.914 26.1959 26.1909 29.2415 26.1909 29.2415Z" fill="#B76E00"/>
|
||||
<path d="M43.553 43.0699C43.1426 42.0643 42.3088 41.2582 41.2319 40.9042L36.0434 39.1993C35.5539 39.0384 35.2214 38.5836 35.2168 38.0682L35.1982 35.973C34.331 36.7538 33.2515 37.2377 31.989 37.2489C30.7268 37.2599 29.6389 36.795 28.7578 36.0299L28.7756 38.0516C28.7803 38.5748 28.4458 39.0409 27.9485 39.2042L22.762 40.9051C21.6875 41.2577 20.8545 42.0602 20.4424 43.0624C23.355 46.1048 27.4568 47.9999 32.0015 47.9999C36.542 47.9999 40.6406 46.108 43.553 43.0699Z" fill="#FFAB00"/>
|
||||
<path d="M31.8096 43.7394C34.47 43.7394 36.7393 42.0695 37.6296 39.7211L36.042 39.1993C35.5525 39.0385 35.22 38.5834 35.2156 38.0682L35.197 35.973C34.3296 36.7538 33.2502 37.2377 31.9878 37.2489C30.7253 37.2599 29.6375 36.795 28.7566 36.0299L28.7744 38.0516C28.7791 38.5748 28.4446 39.0409 27.9473 39.2042L26.0332 39.8319C26.9521 42.1217 29.1912 43.7394 31.8096 43.7394Z" fill="#FFE4D1"/>
|
||||
<path d="M32 17.25C40.627 17.25 47.6582 24.0784 47.9866 32.625C47.9946 32.4175 48 32.2095 48 32C48 23.1636 40.8364 16 32 16C23.1633 16 16 23.1636 16 32C16 32.2095 16.0051 32.4175 16.0132 32.625C16.3416 24.0784 23.3728 17.25 32 17.25Z" fill="#FFAB00"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_296_3266" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
||||
<stop/>
|
||||
<stop offset="1" stop-opacity="0.01"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_296_3266">
|
||||
<rect width="64" height="64" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1,33 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_296_3262)">
|
||||
<mask id="mask0_296_3262" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3262)" fill-opacity="0.16"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_296_3262)">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
||||
</g>
|
||||
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
||||
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
||||
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
||||
<path d="M40.3208 20.2264H23.4151C22.0813 20.2264 21 21.3077 21 22.6415V45.5849C21 46.9188 22.0813 48 23.4151 48H40.3208C41.6546 48 42.7358 46.9188 42.7358 45.5849V22.6415C42.7358 21.3077 41.6546 20.2264 40.3208 20.2264Z" fill="#FFAB00"/>
|
||||
<path d="M23 23H41V46H23V23Z" fill="#FFD666"/>
|
||||
<path d="M36.5 43H23V23H41V38.8824L36.5 43Z" fill="#FFF5CC"/>
|
||||
<path d="M34.2829 19.6226V18.4151C34.2829 17.7746 34.0285 17.1603 33.5755 16.7074C33.1226 16.2544 32.5083 16 31.8678 16C31.2273 16 30.613 16.2544 30.1601 16.7074C29.7072 17.1603 29.4527 17.7746 29.4527 18.4151V19.6226H27.0376L25.8301 21.434V23.2453H37.9056V21.434L36.698 19.6226H34.2829Z" fill="#FFD666"/>
|
||||
<path d="M37 43.2264V39H41.2264L37 43.2264Z" fill="#FFAB00"/>
|
||||
<path d="M31.8685 38.3396C30.2862 37.8122 28.9099 36.8002 27.9347 35.4471C26.9594 34.094 26.4346 32.4683 26.4346 30.8004V28.0755C28.0149 28.0755 29.5655 27.646 30.9206 26.8329L31.8685 26.2642L32.8165 26.8329C34.1716 27.646 35.7222 28.0755 37.3025 28.0755V30.8004C37.3025 32.4683 36.7777 34.094 35.8024 35.4471C34.8272 36.8002 33.4509 37.8122 31.8685 38.3396Z" fill="#5BE49B"/>
|
||||
<path d="M31.8676 33.5094C31.7738 33.5094 31.6814 33.4876 31.5976 33.4457C31.5137 33.4038 31.4408 33.3429 31.3846 33.2679L29.5732 30.8528L30.5393 30.1283L31.8676 31.8994L36.8185 25.2981L37.7846 26.0226L32.3506 33.2679C32.2944 33.3429 32.2214 33.4038 32.1376 33.4457C32.0538 33.4876 31.9613 33.5094 31.8676 33.5094Z" fill="#007867"/>
|
||||
<path d="M25.2266 37.7358H28.2454V38.9434H25.2266V37.7358Z" fill="#FFAB00"/>
|
||||
<path d="M25.2266 40.151H29.453V41.3585H25.2266V40.151Z" fill="#FFAB00"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_296_3262" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
||||
<stop/>
|
||||
<stop offset="1" stop-opacity="0.01"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_296_3262">
|
||||
<rect width="64" height="64" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5.5 KiB |
30
03_source/frontend/public/assets/icons/faqs/ic-delivery.svg
Normal file
@@ -0,0 +1,30 @@
|
||||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_296_3265)">
|
||||
<mask id="mask0_296_3265" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="7" width="64" height="53">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="url(#paint0_linear_296_3265)" fill-opacity="0.16"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_296_3265)">
|
||||
<path d="M58.9345 16.6644C50.7574 10.3778 42.8261 15.5013 33.9795 13.6898C25.069 11.8652 21.5189 5.78979 11.37 8.59417C2.37975 11.0783 -3.07525 21.038 1.867 29.3764C3.27537 31.7525 5.67462 33.5452 6.65512 36.2038C8.23675 40.4927 5.82925 43.7854 6.29887 48.0003C8.25037 65.5129 34.9956 58.7295 44.8368 53.2809C60.2705 44.7359 70.7115 25.7188 58.9345 16.6644Z" fill="#00A76F"/>
|
||||
</g>
|
||||
<path opacity="0.08" d="M51.3966 10.297C50.9324 10.297 50.4683 10.1203 50.1149 9.76702C49.4083 9.0604 49.4083 7.91052 50.1149 7.20377C50.8216 6.49702 51.9716 6.49702 52.6782 7.20377C53.3848 7.91052 53.3848 9.06027 52.6782 9.76702C52.3249 10.1203 51.8608 10.297 51.3966 10.297ZM51.3967 7.92314C51.2526 7.92314 51.1086 7.97789 50.9989 8.08764C50.7797 8.30689 50.7797 8.66377 50.9989 8.88315C51.2182 9.1024 51.5751 9.10252 51.7944 8.88315C52.0137 8.6639 52.0137 8.30702 51.7944 8.08764C51.6847 7.97789 51.5407 7.92314 51.3967 7.92314Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M54.54 16.4084C54.0759 16.4086 53.6118 16.2318 53.2584 15.8784C52.916 15.5361 52.7275 15.0809 52.7275 14.5968C52.7275 14.1127 52.916 13.6575 53.2584 13.3152C53.9649 12.6085 55.1148 12.6084 55.8215 13.3152C56.1639 13.6575 56.3524 14.1127 56.3524 14.5968C56.3524 15.0811 56.1639 15.5362 55.8214 15.8784C55.4684 16.2317 55.0042 16.4084 54.54 16.4084ZM54.54 14.0345C54.396 14.0345 54.2519 14.0893 54.1423 14.199C54.0359 14.3053 53.9775 14.4465 53.9775 14.5968C53.9775 14.7471 54.036 14.8883 54.1423 14.9946C54.3617 15.2139 54.7185 15.2139 54.9378 14.9946C55.0442 14.8883 55.1025 14.7471 55.1025 14.5968C55.1025 14.4465 55.044 14.3054 54.9378 14.199C54.8282 14.0893 54.6842 14.0345 54.54 14.0345Z" fill="#00A76F"/>
|
||||
<path opacity="0.08" d="M13.1719 29.595C12.7078 29.595 12.2436 29.4182 11.8903 29.065C11.1837 28.3582 11.1837 27.2083 11.8903 26.5017C12.5969 25.7952 13.7469 25.7951 14.4536 26.5017C15.1602 27.2085 15.1602 28.3582 14.4536 29.065C14.1003 29.4182 13.6361 29.595 13.1719 29.595ZM13.1719 27.2211C13.0279 27.2211 12.8838 27.2758 12.7742 27.3856C12.5548 27.6048 12.5548 27.9617 12.7742 28.1811C12.9934 28.4005 13.3504 28.4003 13.5697 28.1811C13.7891 27.9618 13.7891 27.605 13.5697 27.3856C13.4601 27.2758 13.3161 27.2211 13.1719 27.2211Z" fill="#00A76F"/>
|
||||
<path opacity="0.48" d="M12.3662 35.2127C12.2062 35.2127 12.0463 35.1517 11.9242 35.0297L11.1787 34.2842L10.4332 35.0297C10.1891 35.2737 9.79343 35.2737 9.5493 35.0297C9.30518 34.7855 9.30518 34.3898 9.5493 34.1458L10.7368 32.9583C10.9809 32.7143 11.3766 32.7143 11.6207 32.9583L12.8082 34.1458C13.0523 34.3899 13.0523 34.7857 12.8082 35.0297C12.6861 35.1515 12.5262 35.2127 12.3662 35.2127Z" fill="#00A76F"/>
|
||||
<path opacity="0.24" d="M53.3525 53.3126C53.1925 53.3126 53.0326 53.2516 52.9105 53.1296L52.165 52.3841L51.4195 53.1296C51.1754 53.3736 50.7798 53.3736 50.5356 53.1296C50.2915 52.8855 50.2915 52.4897 50.5356 52.2457L51.7231 51.0582C51.9673 50.8142 52.3629 50.8142 52.607 51.0582L53.7945 52.2457C54.0386 52.4899 54.0386 52.8856 53.7945 53.1296C53.6724 53.2515 53.5125 53.3126 53.3525 53.3126Z" fill="#00A76F"/>
|
||||
<path d="M47.9999 34.7078L43.3129 29.6013C42.9684 29.2256 42.482 29.0118 41.9724 29.0118H36.1535L36.1533 42.993H38.3791C38.3791 41.2345 39.8046 39.809 41.5631 39.809C43.3216 39.809 44.7471 41.2345 44.7471 42.993H46.18C46.6627 42.9931 47.1255 42.8014 47.4668 42.4602C47.8081 42.1189 47.9998 41.656 47.9997 41.1734L47.9999 34.7078Z" fill="#FFAB00"/>
|
||||
<circle cx="41.5629" cy="42.993" r="3.18402" fill="#B76E00"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.1533 34.7077V42.993H26.4626C26.4626 41.2343 25.0369 39.8086 23.2782 39.8086C21.5195 39.8086 20.0938 41.2343 20.0938 42.993H17.8197C17.337 42.9931 16.8741 42.8014 16.5329 42.4601C16.1916 42.1189 15.9999 41.656 16 41.1734V25.9813C15.9999 25.4986 16.1916 25.0358 16.5329 24.6945C16.8741 24.3532 17.337 24.1615 17.8197 24.1616H19.7936C19.907 27.3699 22.5408 29.9121 25.751 29.9121C28.9613 29.9121 31.595 27.3699 31.7085 24.1616H34.3336C35.3386 24.1617 36.1532 24.9763 36.1533 25.9813V34.7077Z" fill="#FFD666"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M31.7124 23.9612C31.7124 24.0283 31.7117 24.0953 31.7087 24.1616C31.5952 27.3699 28.9615 29.9121 25.7512 29.9121C22.541 29.9121 19.9072 27.3699 19.7938 24.1616C19.7908 24.0953 19.79 24.0283 19.79 23.9612C19.79 20.6689 22.459 18 25.7512 18C29.0435 18 31.7124 20.6689 31.7124 23.9612Z" fill="#61F3F3"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.2778 39.809C25.0363 39.809 26.4618 41.2345 26.4618 42.993C26.4618 44.7515 25.0363 46.177 23.2778 46.177C21.5193 46.177 20.0938 44.7515 20.0938 42.993C20.0938 41.2345 21.5193 39.809 23.2778 39.809Z" fill="#B76E00"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M27.7405 26.3456C27.6081 26.3458 27.4806 26.2954 27.3841 26.2048L25.3945 24.3419C25.2892 24.2433 25.2295 24.1055 25.2295 23.9612V20.0953C25.2295 19.8073 25.463 19.5737 25.7511 19.5737C26.0392 19.5737 26.2727 19.8073 26.2727 20.0953V23.7354L28.0971 25.4436C28.2534 25.59 28.3044 25.817 28.2257 26.0161C28.1471 26.2152 27.9547 26.346 27.7406 26.346L27.7405 26.3456Z" fill="#006C9C"/>
|
||||
</g>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_296_3265" x1="43.8414" y1="68.4015" x2="70.1982" y2="12.921" gradientUnits="userSpaceOnUse">
|
||||
<stop/>
|
||||
<stop offset="1" stop-opacity="0.01"/>
|
||||
</linearGradient>
|
||||
<clipPath id="clip0_296_3265">
|
||||
<rect width="64" height="64" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |