init
@@ -0,0 +1,4 @@
|
|||||||
|
# NEXT_PUBLIC_API=http://192.168.1.250:3003/
|
||||||
|
NEXT_PUBLIC_API=https://graff.estate/api/
|
||||||
|
NEXT_PUBLIC_S3_BUCKET=https://storage.yandexcloud.net/dult-faib-knac-fint/
|
||||||
|
NEXT_PUBLIC_TINYMCE_API_KEY=2vf68779upg45y46o6g5gaxldy9gzr399eyaaqa0ki3mj2h2
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"extends": "next/core-web-vitals"
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
/.pnp
|
||||||
|
.pnp.js
|
||||||
|
.yarn/install-state.gz
|
||||||
|
|
||||||
|
# testing
|
||||||
|
/coverage
|
||||||
|
|
||||||
|
# next.js
|
||||||
|
/.next/
|
||||||
|
/dist/
|
||||||
|
|
||||||
|
# production
|
||||||
|
/build
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env*.local
|
||||||
|
|
||||||
|
# vercel
|
||||||
|
.vercel
|
||||||
|
|
||||||
|
# typescript
|
||||||
|
*.tsbuildinfo
|
||||||
|
next-env.d.ts
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
First, run the development server:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm run dev
|
||||||
|
# or
|
||||||
|
yarn dev
|
||||||
|
# or
|
||||||
|
pnpm dev
|
||||||
|
# or
|
||||||
|
bun dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
|
||||||
|
|
||||||
|
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
|
||||||
|
|
||||||
|
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
|
||||||
|
|
||||||
|
## Learn More
|
||||||
|
|
||||||
|
To learn more about Next.js, take a look at the following resources:
|
||||||
|
|
||||||
|
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
|
||||||
|
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||||
|
|
||||||
|
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
||||||
|
|
||||||
|
## Deploy on Vercel
|
||||||
|
|
||||||
|
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
||||||
|
|
||||||
|
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
declare namespace NodeJS {
|
||||||
|
interface ProcessEnv {
|
||||||
|
readonly NEXT_PUBLIC_API: string;
|
||||||
|
readonly NEXT_PUBLIC_S3_BUCKET: string;
|
||||||
|
readonly NEXT_PUBLIC_TINYMCE_API_KEY: string;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
import { NextResponse } from 'next/server';
|
||||||
|
import type { NextRequest } from 'next/server';
|
||||||
|
|
||||||
|
export function middleware(request: NextRequest) {
|
||||||
|
const acceptLanguage = request.headers.get('accept-language') || '';
|
||||||
|
const preferredLocale = acceptLanguage.split(',')[0].split('-')[0];
|
||||||
|
const locale = ['ru', 'en'].includes(preferredLocale)
|
||||||
|
? preferredLocale
|
||||||
|
: 'ru';
|
||||||
|
|
||||||
|
const response = NextResponse.next();
|
||||||
|
response.cookies.set('NEXT_LOCALE', locale);
|
||||||
|
|
||||||
|
return response;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const config = {
|
||||||
|
matcher: ['/((?!api|_next|.*\\..*).*)'],
|
||||||
|
};
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
import createNextIntlPlugin from 'next-intl/plugin';
|
||||||
|
|
||||||
|
const withNextIntl = createNextIntlPlugin();
|
||||||
|
|
||||||
|
/** @type {import('next').NextConfig} */
|
||||||
|
const nextConfig = {
|
||||||
|
output: 'export',
|
||||||
|
distDir: 'dist',
|
||||||
|
reactStrictMode: false,
|
||||||
|
future: { webpack: true },
|
||||||
|
|
||||||
|
// trailingSlash: true,
|
||||||
|
webpack: (config, { isServer }) => {
|
||||||
|
if (!isServer) {
|
||||||
|
config.resolve.fallback = {
|
||||||
|
fs: false,
|
||||||
|
path: false,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
const fileLoaderRule = config.module.rules.find((rule) =>
|
||||||
|
rule.test?.test?.('.svg')
|
||||||
|
);
|
||||||
|
|
||||||
|
config.module.rules.push(
|
||||||
|
// Reapply the existing rule, but only for svg imports ending in ?url
|
||||||
|
{
|
||||||
|
...fileLoaderRule,
|
||||||
|
test: /\.svg$/i,
|
||||||
|
resourceQuery: /url/, // *.svg?url
|
||||||
|
},
|
||||||
|
// Convert all other *.svg imports to React components
|
||||||
|
{
|
||||||
|
test: /\.svg$/i,
|
||||||
|
issuer: fileLoaderRule.issuer,
|
||||||
|
resourceQuery: { not: [...fileLoaderRule.resourceQuery.not, /url/] }, // exclude if *.svg?url
|
||||||
|
use: ['@svgr/webpack'],
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
return config;
|
||||||
|
},
|
||||||
|
images: {
|
||||||
|
remotePatterns: [
|
||||||
|
{
|
||||||
|
protocol: 'https',
|
||||||
|
hostname: 'graff.estate',
|
||||||
|
port: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
protocol: 'https',
|
||||||
|
hostname: 'storage.yandexcloud.net',
|
||||||
|
port: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default withNextIntl(nextConfig);
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
{
|
||||||
|
"name": "graff.estate-nextjs-updated",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"private": true,
|
||||||
|
"scripts": {
|
||||||
|
"dev": "next dev",
|
||||||
|
"build": "next build",
|
||||||
|
"start": "next start",
|
||||||
|
"lint": "next lint",
|
||||||
|
"compile": "graphql-codegen",
|
||||||
|
"watch": "graphql-codegen -w",
|
||||||
|
"generate": "graphql-codegen --config .graphqlrc.json"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@atlaskit/pragmatic-drag-and-drop": "^1.5.0",
|
||||||
|
"@tailwindcss/postcss": "^4.0.0",
|
||||||
|
"@tailwindcss/vite": "^4.0.0",
|
||||||
|
"@tanstack/react-query": "^5.62.7",
|
||||||
|
"@tanstack/react-query-devtools": "^5.64.2",
|
||||||
|
"@tinymce/tinymce-react": "^5.1.1",
|
||||||
|
"countries-phone-masks": "^1.1.0",
|
||||||
|
"date-fns": "^3.6.0",
|
||||||
|
"effector": "^23.3.0",
|
||||||
|
"effector-react": "^23.3.0",
|
||||||
|
"framer-motion": "^11.17.0",
|
||||||
|
"html-react-parser": "^5.1.18",
|
||||||
|
"jose": "^5.9.3",
|
||||||
|
"ky": "^1.4.0",
|
||||||
|
"lenis": "^1.2.1",
|
||||||
|
"libphonenumber-js": "^1.11.7",
|
||||||
|
"next": "14.2.5",
|
||||||
|
"next-intl": "^4.0.2",
|
||||||
|
"postcss": "^8.5.1",
|
||||||
|
"react": "^18",
|
||||||
|
"react-circular-progressbar": "^2.1.0",
|
||||||
|
"react-dom": "^18",
|
||||||
|
"react-dropzone": "^14.3.5",
|
||||||
|
"react-gesture-responder": "^2.1.0",
|
||||||
|
"react-grid-dnd": "^2.1.2",
|
||||||
|
"react-grid-layout": "^1.5.0",
|
||||||
|
"react-hook-form": "^7.53.0",
|
||||||
|
"react-input-mask": "^2.0.4",
|
||||||
|
"react-phone-number-input": "^3.4.5",
|
||||||
|
"react-rangeslider": "^2.2.0",
|
||||||
|
"react-swipeable": "^7.0.2",
|
||||||
|
"react-transition-group": "^4.4.5",
|
||||||
|
"resize-observer-polyfill": "^1.5.1",
|
||||||
|
"sharp": "^0.33.5",
|
||||||
|
"tailwindcss": "^4.0.0",
|
||||||
|
"tinymce": "^7.4.1",
|
||||||
|
"usehooks-ts": "^3.1.0",
|
||||||
|
"zustand": "^4.5.4"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@svgr/webpack": "^8.1.0",
|
||||||
|
"@types/node": "^20",
|
||||||
|
"@types/react": "^18",
|
||||||
|
"@types/react-dom": "^18",
|
||||||
|
"@types/react-grid-layout": "^1.3.5",
|
||||||
|
"@types/react-input-mask": "^3.0.5",
|
||||||
|
"@types/react-phone-number-input": "^3.1.37",
|
||||||
|
"@types/react-rangeslider": "^2.2.7",
|
||||||
|
"@types/react-transition-group": "^4.4.11",
|
||||||
|
"eslint": "^8",
|
||||||
|
"eslint-config-next": "14.2.5",
|
||||||
|
"typescript": "^5"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
/** @type {import('postcss-load-config').Config} */
|
||||||
|
const config = {
|
||||||
|
plugins: {
|
||||||
|
'@tailwindcss/postcss': {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default config;
|
||||||
@@ -0,0 +1,250 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="robots" content="noindex, noarchive">
|
||||||
|
<meta name="format-detection" content="telephone=no">
|
||||||
|
<title>Transfonter demo</title>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet">
|
||||||
|
<style>
|
||||||
|
/*
|
||||||
|
http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
/* demo styles */
|
||||||
|
body {
|
||||||
|
background: #f0f0f0;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
.page {
|
||||||
|
background: #fff;
|
||||||
|
width: 920px;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 20px 20px 0 20px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.font-container {
|
||||||
|
overflow-x: auto;
|
||||||
|
overflow-y: hidden;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
line-height: 1.3;
|
||||||
|
white-space: nowrap;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
position: relative;
|
||||||
|
background: #444;
|
||||||
|
font-size: 32px;
|
||||||
|
color: #fff;
|
||||||
|
padding: 10px 20px;
|
||||||
|
margin: 0 -20px 12px -20px;
|
||||||
|
}
|
||||||
|
.letters {
|
||||||
|
font-size: 25px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
.s10:before {
|
||||||
|
content: '10px';
|
||||||
|
}
|
||||||
|
.s11:before {
|
||||||
|
content: '11px';
|
||||||
|
}
|
||||||
|
.s12:before {
|
||||||
|
content: '12px';
|
||||||
|
}
|
||||||
|
.s14:before {
|
||||||
|
content: '14px';
|
||||||
|
}
|
||||||
|
.s18:before {
|
||||||
|
content: '18px';
|
||||||
|
}
|
||||||
|
.s24:before {
|
||||||
|
content: '24px';
|
||||||
|
}
|
||||||
|
.s30:before {
|
||||||
|
content: '30px';
|
||||||
|
}
|
||||||
|
.s36:before {
|
||||||
|
content: '36px';
|
||||||
|
}
|
||||||
|
.s48:before {
|
||||||
|
content: '48px';
|
||||||
|
}
|
||||||
|
.s60:before {
|
||||||
|
content: '60px';
|
||||||
|
}
|
||||||
|
.s72:before {
|
||||||
|
content: '72px';
|
||||||
|
}
|
||||||
|
.s10:before, .s11:before, .s12:before, .s14:before,
|
||||||
|
.s18:before, .s24:before, .s30:before, .s36:before,
|
||||||
|
.s48:before, .s60:before, .s72:before {
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
font-size: 10px;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
color: #999;
|
||||||
|
padding-right: 6px;
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
display: block;
|
||||||
|
padding: 9px;
|
||||||
|
margin: 0 0 12px;
|
||||||
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.428571429;
|
||||||
|
color: #333;
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
overflow-x: auto;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
/* responsive */
|
||||||
|
@media (max-width: 959px) {
|
||||||
|
.page {
|
||||||
|
width: auto;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="page">
|
||||||
|
<div class="demo">
|
||||||
|
<h1 style="font-family: 'TTHovesPro-DmBd'; font-weight: 600; font-style: normal;">☝︎TT Hoves Pro DemiBold</h1>
|
||||||
|
<pre title="Usage">.your-style {
|
||||||
|
font-family: 'TTHovesPro-DmBd';
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
}</pre>
|
||||||
|
<pre title="Preload (optional)">
|
||||||
|
<link rel="preload" href="TTHovesPro-DmBd.woff2" as="font" type="font/woff2" crossorigin></pre>
|
||||||
|
<div class="font-container" style="font-family: 'TTHovesPro-DmBd'; font-weight: 600; font-style: normal;">
|
||||||
|
<p class="letters">
|
||||||
|
abcdefghijklmnopqrstuvwxyz<br>
|
||||||
|
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
||||||
|
0123456789.:,;()*!?'@#<>$%&^+-=~
|
||||||
|
</p>
|
||||||
|
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="demo">
|
||||||
|
<h1 style="font-family: 'TTHovesPro-Md'; font-weight: 500; font-style: normal;">☝︎TT Hoves Pro Medium</h1>
|
||||||
|
<pre title="Usage">.your-style {
|
||||||
|
font-family: 'TTHovesPro-Md';
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
}</pre>
|
||||||
|
<pre title="Preload (optional)">
|
||||||
|
<link rel="preload" href="TTHovesPro-Md.woff2" as="font" type="font/woff2" crossorigin></pre>
|
||||||
|
<div class="font-container" style="font-family: 'TTHovesPro-Md'; font-weight: 500; font-style: normal;">
|
||||||
|
<p class="letters">
|
||||||
|
abcdefghijklmnopqrstuvwxyz<br>
|
||||||
|
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
||||||
|
0123456789.:,;()*!?'@#<>$%&^+-=~
|
||||||
|
</p>
|
||||||
|
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="demo">
|
||||||
|
<h1 style="font-family: 'TTHovesPro-Rg'; font-weight: normal; font-style: normal;">☝︎TT Hoves Pro Regular</h1>
|
||||||
|
<pre title="Usage">.your-style {
|
||||||
|
font-family: 'TTHovesPro-Rg';
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}</pre>
|
||||||
|
<pre title="Preload (optional)">
|
||||||
|
<link rel="preload" href="TTHovesPro-Rg.woff2" as="font" type="font/woff2" crossorigin></pre>
|
||||||
|
<div class="font-container" style="font-family: 'TTHovesPro-Rg'; font-weight: normal; font-style: normal;">
|
||||||
|
<p class="letters">
|
||||||
|
abcdefghijklmnopqrstuvwxyz<br>
|
||||||
|
ABCDEFGHIJKLMNOPQRSTUVWXYZ<br>
|
||||||
|
0123456789.:,;()*!?'@#<>$%&^+-=~
|
||||||
|
</p>
|
||||||
|
<p class="s10" style="font-size: 10px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s11" style="font-size: 11px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s12" style="font-size: 12px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s14" style="font-size: 14px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s18" style="font-size: 18px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s24" style="font-size: 24px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s30" style="font-size: 30px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s36" style="font-size: 36px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s48" style="font-size: 48px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s60" style="font-size: 60px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
<p class="s72" style="font-size: 72px;">The quick brown fox jumps over the lazy dog.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: 'TTHovesPro';
|
||||||
|
src: url('TTHovesPro-DmBd.eot');
|
||||||
|
src:
|
||||||
|
url('TTHovesPro-DmBd.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('TTHovesPro-DmBd.woff2') format('woff2'),
|
||||||
|
url('TTHovesPro-DmBd.woff') format('woff'),
|
||||||
|
url('TTHovesPro-DmBd.ttf') format('truetype');
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'TTHovesPro';
|
||||||
|
src: url('TTHovesPro-Md.eot');
|
||||||
|
src:
|
||||||
|
url('TTHovesPro-Md.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('TTHovesPro-Md.woff2') format('woff2'),
|
||||||
|
url('TTHovesPro-Md.woff') format('woff'),
|
||||||
|
url('TTHovesPro-Md.ttf') format('truetype');
|
||||||
|
font-weight: 500;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'TTHovesPro';
|
||||||
|
src: url('TTHovesPro-Rg.eot');
|
||||||
|
src:
|
||||||
|
url('TTHovesPro-Rg.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('TTHovesPro-Rg.woff2') format('woff2'),
|
||||||
|
url('TTHovesPro-Rg.woff') format('woff'),
|
||||||
|
url('TTHovesPro-Rg.ttf') format('truetype');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: swap;
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 11.0001L11 11.0002L11.0003 3.00024L13.0003 3.00032L13 11.0002L21 11.0001L21 13.0001L13 13.0002L13 21.0003H11L11 13.0002L3 13.0001L3 11.0001Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 296 B |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 10.8181 3.23279 9.64778 3.68508 8.55585C4.13738 7.46392 4.80031 6.47177 5.63604 5.63604C6.47177 4.80031 7.46392 4.13738 8.55585 3.68508C9.64778 3.23279 10.8181 3 12 3C13.1819 3 14.3522 3.23279 15.4442 3.68508C16.5361 4.13738 17.5282 4.80031 18.364 5.63604C19.1997 6.47177 19.8626 7.46392 20.3149 8.55585C20.7672 9.64778 21 10.8181 21 12L21 12Z" stroke="currentColor" stroke-width="2"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 6V14H11V8L13 6Z" fill="currentColor"/>
|
||||||
|
<rect x="11" y="16" width="2" height="2" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 978 B |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect width="10.2956" height="10.2956" transform="matrix(0.874157 0.485643 -0.874157 0.485643 12 3)" fill="currentColor"/>
|
||||||
|
<path d="M12 17L3 12L5 10.8889L12 14.7778L19 10.8889L21 12L14 15.8889L12 17Z" fill="currentColor"/>
|
||||||
|
<path d="M12 21L3 16L5 14.8889L12 18.7778L19 14.8889L21 16L14 19.8889L12 21Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 403 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9598 16.0492V4L13.0398 6.08V16.0492L18.5444 10.5446L20.0152 12.0154L11.9998 20.0308L3.98438 12.0154L5.45516 10.5446L10.9598 16.0492Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 289 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.96641 13.0246L20.0156 13.0246L17.9356 10.9446L7.96641 10.9446L13.471 5.44L12.0002 3.96922L3.98484 11.9846L12.0002 20L13.471 18.5292L7.96641 13.0246Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 304 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5877 9.5903L7.06765 18.1104V15.1688L14.117 8.11951H6.33226V6.03951H17.6677V17.375L15.5877 17.375L15.5877 9.5903Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 269 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.0336 10.9754L3.98437 10.9754L6.06437 13.0554L16.0336 13.0554L10.529 18.56L11.9998 20.0308L20.0152 12.0154L11.9998 4L10.529 5.47078L16.0336 10.9754Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 304 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.9598 7.95078V20L13.0398 17.92V7.95078L18.5444 13.4554L20.0152 11.9846L11.9998 3.96922L3.98438 11.9846L5.45516 13.4554L10.9598 7.95078Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 291 B |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21 6.66667H3V4H18.4286L21 6.66667Z" fill="currentColor"/>
|
||||||
|
<path d="M3 10.6667H21V13.3333H3V10.6667Z" fill="currentColor"/>
|
||||||
|
<path d="M3 17.3333H21V20H5.57143L3 17.3333Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 281 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.70711 18L19.4142 8.29289L18 6.87868L9.70711 15.1716L5.41421 10.8787L4 12.2929L9.70711 18Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 261 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 17.707L19.7072 9.99992L18.293 8.58571L12.0001 14.8786L5.70718 8.58571L4.29297 9.99992L12.0001 17.707Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 263 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 11.7072L14.7071 4.00009L16.1213 5.41431L9.82843 11.7072L16.1213 18.0001L14.7071 19.4143L7 11.7072Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 254 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.1211 11.7072L9.41399 4.00009L7.99977 5.41431L14.2927 11.7072L7.99977 18.0001L9.41399 19.4143L17.1211 11.7072Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 266 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0001 6.58594L19.7072 14.293L18.293 15.7073L12.0001 9.41436L5.70718 15.7073L4.29297 14.293L12.0001 6.58594Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 263 B |
@@ -0,0 +1,7 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M17 8H7V6H15L17 8Z" fill="currentColor"/>
|
||||||
|
<path d="M7 11H17V13H7V11Z" fill="currentColor"/>
|
||||||
|
<path d="M7 16H17V18H9L7 16Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 22V2H19L21 4V22H3ZM19 4H18H5V20H19V5V4Z" fill="currentColor"/>
|
||||||
|
<path d="M19 4H18L19 5V4Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 397 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.34303 4.92896L11.9999 10.5858L17.6569 4.92925L19.0711 6.34352L13.4141 12L19.071 17.6569L17.6567 19.0711L11.9999 13.4142L6.34292 19.0712L4.92871 17.657L10.5857 12L4.92882 6.34317L6.34303 4.92896Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 350 B |
|
After Width: | Height: | Size: 62 KiB |
@@ -0,0 +1,8 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6 5C6 3.89543 6.89543 3 8 3C9.10457 3 10 3.89543 10 5C10 6.10457 9.10457 7 8 7C6.89543 7 6 6.10457 6 5Z" fill="currentColor"/>
|
||||||
|
<path d="M13 5C13 3.89543 13.8954 3 15 3C16.1046 3 17 3.89543 17 5C17 6.10457 16.1046 7 15 7C13.8954 7 13 6.10457 13 5Z" fill="currentColor"/>
|
||||||
|
<path d="M6 12C6 10.8954 6.89543 10 8 10C9.10457 10 10 10.8954 10 12C10 13.1046 9.10457 14 8 14C6.89543 14 6 13.1046 6 12Z" fill="currentColor"/>
|
||||||
|
<path d="M13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12Z" fill="currentColor"/>
|
||||||
|
<path d="M6 19C6 17.8954 6.89543 17 8 17C9.10457 17 10 17.8954 10 19C10 20.1046 9.10457 21 8 21C6.89543 21 6 20.1046 6 19Z" fill="currentColor"/>
|
||||||
|
<path d="M13 19C13 17.8954 13.8954 17 15 17C16.1046 17 17 17.8954 17 19C17 20.1046 16.1046 21 15 21C13.8954 21 13 20.1046 13 19Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 956 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 11.1426V17.9999H19V13.1428L21 11.1428V19.9999H3V13.1426L5 11.1426Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0001 10.5858V3L13.0001 5V10.5858L16.293 7.29289L17.7072 8.70711L12.0001 14.4142L6.29297 8.70711L7.70718 7.29289L11.0001 10.5858Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 427 B |
@@ -0,0 +1,15 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_10_1292)">
|
||||||
|
<mask id="mask0_10_1292" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
|
||||||
|
<rect width="24" height="24" fill="#D9D9D9"/>
|
||||||
|
</mask>
|
||||||
|
<g mask="url(#mask0_10_1292)">
|
||||||
|
<path d="M3 21V16.75L16.2 3.575C16.4 3.39167 16.6208 3.25 16.8625 3.15C17.1042 3.05 17.3583 3 17.625 3C17.8917 3 18.15 3.05 18.4 3.15C18.65 3.25 18.8667 3.4 19.05 3.6L20.425 5C20.625 5.18333 20.7708 5.4 20.8625 5.65C20.9542 5.9 21 6.15 21 6.4C21 6.66667 20.9542 6.92083 20.8625 7.1625C20.7708 7.40417 20.625 7.625 20.425 7.825L7.25 21H3ZM17.6 7.8L19 6.4L17.6 5L16.2 6.4L17.6 7.8Z" fill="currentColor"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_10_1292">
|
||||||
|
<rect width="24" height="24" fill="currentColor"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 834 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.6062 26.8124L4.33226 18.0611C3.56893 17.6744 3.56893 16.5842 4.33226 16.1975L21.6062 7.44625C21.9042 7.2953 22.2564 7.29595 22.5538 7.448L39.6707 16.1993C40.4295 16.5872 40.4295 17.6715 39.6707 18.0594L39.0524 18.3755V25.8045C39.6674 26.0731 40.0971 26.6866 40.0971 27.4006V30.1861C40.0971 31.1476 39.3177 31.927 38.3562 31.927C37.3947 31.927 36.6153 31.1476 36.6153 30.1861V27.4006C36.6153 26.6868 37.0449 26.0733 37.6597 25.8046V19.0875L33.482 21.2235L22.5541 26.8105L22.5538 26.8106C22.5283 26.8237 22.5023 26.8356 22.4761 26.8464M20.8197 28.3653L10.5017 23.138V29.3159V29.4899H10.5058C10.6703 32.967 15.7498 35.7574 21.9918 35.7574C28.2339 35.7574 33.3134 32.967 33.4779 29.4899H33.482V29.3159V23.1788L23.3466 28.3606C22.5535 28.7661 21.6143 28.7678 20.8197 28.3653Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 927 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 18V7H9.89962V8.42871H4.66042V11.7803H9.53959L8 13.2036H4.66042V16.5713H9.9641V18H3Z" fill="currentColor"/>
|
||||||
|
<path d="M21 7V18H19.4739L13.8801 9.93262H13.778V18H12.1175V7H13.6544L19.2536 15.0781H19.3557V9L21 7Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 324 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.5 14.3889C5.31872 14.3889 4.36111 15.3465 4.36111 16.5278C4.36111 17.7091 5.31872 18.6667 6.5 18.6667C7.68128 18.6667 8.63889 17.7091 8.63889 16.5278C8.63889 15.3465 7.68128 14.3889 6.5 14.3889ZM2.63407 15.6111C3.04789 13.8592 4.6217 12.5556 6.5 12.5556C8.3783 12.5556 9.95211 13.8592 10.3659 15.6111H23V17.4444H10.3659C9.95211 19.1963 8.3783 20.5 6.5 20.5C4.6217 20.5 3.04789 19.1963 2.63407 17.4444H1V15.6111H2.63407Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.5 5.83333C18.6813 5.83333 19.6389 6.79095 19.6389 7.97222C19.6389 9.1535 18.6813 10.1111 17.5 10.1111C16.3187 10.1111 15.3611 9.1535 15.3611 7.97222C15.3611 6.79095 16.3187 5.83333 17.5 5.83333ZM21.3659 7.05556C20.9521 5.30368 19.3783 4 17.5 4C15.6217 4 14.0479 5.30368 13.6341 7.05556H1V8.88889H13.6341C14.0479 10.6408 15.6217 11.9444 17.5 11.9444C19.3783 11.9444 20.9521 10.6408 21.3659 8.88889H23V7.05556H21.3659Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.997 12.102a11.8 11.8 0 0 1-1.24 5.292.7.7 0 1 1-1.253-.623 10.4 10.4 0 0 0 1.093-4.669A6.28 6.28 0 0 1 7.96 7.183a.7.7 0 1 1 .875 1.093 4.88 4.88 0 0 0-1.838 3.826m4.901-.7a.7.7 0 0 0-.7.7c0 2.728-.693 5.41-2.013 7.798a.7.7 0 1 0 1.225.68 17.5 17.5 0 0 0 2.188-8.478.7.7 0 0 0-.7-.7m0-2.8a3.5 3.5 0 0 0-3.5 3.5.7.7 0 1 0 1.4 0 2.1 2.1 0 1 1 4.2 0 18.7 18.7 0 0 1-1.795 8.052.701.701 0 0 0 1.27.598 20.1 20.1 0 0 0 1.926-8.65 3.5 3.5 0 0 0-3.501-3.5m0-5.602a9.11 9.11 0 0 0-9.102 9.102 7.7 7.7 0 0 1-.438 2.567.7.7 0 0 0 1.321.466c.344-.974.518-2 .517-3.033a7.702 7.702 0 1 1 15.404 0c0 1.6-.155 3.196-.463 4.765a.7.7 0 0 0 1.373.272c.326-1.66.49-3.346.49-5.037A9.11 9.11 0 0 0 11.898 3m-2.94 11.217a.7.7 0 0 0-.823.547 13.2 13.2 0 0 1-1.507 3.977.7.7 0 0 0 1.213.7 14.6 14.6 0 0 0 1.663-4.397.7.7 0 0 0-.547-.827m2.94-8.416q-.395 0-.788.049a.7.7 0 0 0 .175 1.389 4.908 4.908 0 0 1 5.514 4.863q0 1.362-.168 2.713a.7.7 0 0 0 1.155.617.7.7 0 0 0 .231-.437q.177-1.438.175-2.888a6.31 6.31 0 0 0-6.294-6.306m5.07 11.224a.7.7 0 0 0-.853.503c-.128.498-.276.998-.438 1.488a.7.7 0 0 0 1.07.791.7.7 0 0 0 .254-.345c.175-.519.332-1.05.468-1.58a.7.7 0 0 0-.5-.856z" fill="#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg width="222" height="190" viewBox="0 0 222 190" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M205.568 190H16.9596C8.05771 190 0.841309 182.784 0.841309 173.882V16.1183C0.841309 7.2164 8.05771 0 16.9596 0H98.5381C104.442 0 109.227 4.78571 109.227 10.6892C109.227 13.6409 111.62 16.0338 114.572 16.0338H205.568C214.47 16.0338 221.687 23.2502 221.687 32.152V173.882C221.687 182.784 214.47 190 205.568 190Z" fill="#232425"/>
|
||||||
|
<path d="M205.568 190H16.9596C8.05771 190 0.841309 182.784 0.841309 173.882V16.1183C0.841309 7.2164 8.05771 0 16.9596 0H98.5381C104.442 0 109.227 4.78571 109.227 10.6892C109.227 13.6409 111.62 16.0338 114.572 16.0338H205.568C214.47 16.0338 221.687 23.2502 221.687 32.152V173.882C221.687 182.784 214.47 190 205.568 190Z" fill="url(#paint0_linear_3359_49840)"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_3359_49840" x1="111.264" y1="0" x2="111.264" y2="190" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#0F1011" stop-opacity="0.4"/>
|
||||||
|
<stop offset="1" stop-color="#0F1011" stop-opacity="0"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg width="248" height="155" viewBox="0 0 248 155" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M219.693 154.998H26.5435C18.2281 154.998 11.2774 148.672 10.4965 140.393L0.686934 36.4041C-0.213738 26.8563 7.37122 18.6389 16.9605 18.7737L65.8792 19.4613C70.5351 19.5267 75.1499 18.5828 79.4061 16.6943L112.711 1.91729C114.77 1.00405 116.996 0.532227 119.248 0.532227H231.281C240.784 0.532227 248.225 8.71137 247.328 18.1718L235.74 140.401C234.955 148.676 228.006 154.998 219.693 154.998Z" fill="#232425"/>
|
||||||
|
<path d="M219.693 154.998H26.5435C18.2281 154.998 11.2774 148.672 10.4965 140.393L0.686934 36.4041C-0.213738 26.8563 7.37122 18.6389 16.9605 18.7737L65.8792 19.4613C70.5351 19.5267 75.1499 18.5828 79.4061 16.6943L112.711 1.91729C114.77 1.00405 116.996 0.532227 119.248 0.532227H231.281C240.784 0.532227 248.225 8.71137 247.328 18.1718L235.74 140.401C234.955 148.676 228.006 154.998 219.693 154.998Z" fill="url(#paint0_linear_3359_49841)"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear_3359_49841" x1="124" y1="0.532227" x2="124" y2="154.998" gradientUnits="userSpaceOnUse">
|
||||||
|
<stop stop-color="#0F1011" stop-opacity="0"/>
|
||||||
|
<stop offset="1" stop-color="#0F1011" stop-opacity="0.4"/>
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M5.41421 20L9.70711 15.7071L8.29289 14.2929L4 18.5858V14.2929L2 16.2929V22H7.70711L9.70711 20H5.41421Z" fill="currentColor"/>
|
||||||
|
<path d="M20 5.41421V9.70711L22 7.70711V2L16.2929 2L14.2929 4H18.5858L14.2929 8.29289L15.7071 9.70711L20 5.41421Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 352 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18.1371 6H10.1532L6 10.4296V18.1075H13.6882L18.1371 13.9732V6Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 176 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M17.8603 2H21.8523V5.98661L19.6278 8.05375H15.7837V4.21479L17.8603 2Z" fill="currentColor"/>
|
||||||
|
<path d="M22.0001 12.0133C22.0001 11.3659 21.9384 10.733 21.8206 10.1199C21.8183 10.0933 21.8159 10.0667 21.8134 10.0402L15.7635 10.0401V13.9999L15.7642 13.9999L17.7129 13.9999C16.8908 16.3524 14.6495 18.0402 12.0135 18.0402C11.9874 18.0402 11.9614 18.0401 11.9355 18.0397C8.63872 17.9977 5.97921 15.3157 5.97921 12.0133C5.97921 8.86571 8.39537 6.28166 11.4765 6.01002C11.6349 5.99605 11.7951 5.98819 11.9568 5.98668C11.9757 5.98651 11.9946 5.98642 12.0135 5.98642L12.0142 5.98642V2.02665H12C6.47717 2.02665 2 6.49784 2 12.0133C2 17.5288 6.47717 22 12 22C17.5229 22 22.0001 17.5288 22.0001 12.0133Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 804 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M20.5246 4.57156C18.5574 2.47615 15.368 2.47615 13.4008 4.57156L12 6.0637L10.5992 4.57156C8.63199 2.47615 5.44256 2.47615 3.47538 4.57156C1.50821 6.66697 1.50821 10.0643 3.47538 12.1597L12 22L20.5246 12.1597C22.4918 10.0643 22.4918 6.66697 20.5246 4.57156Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 369 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M20.5246 5.48884C18.5574 3.50372 15.368 3.50372 13.4008 5.48884L12 6.90246L10.5992 5.48884C8.63199 3.50372 5.44256 3.50372 3.47538 5.48884C1.50821 7.47397 1.50821 10.6925 3.47538 12.6776L12 22L20.5246 12.6776C22.4918 10.6925 22.4918 7.47397 20.5246 5.48884Z" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 412 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.8553 2.79082C29.2749 2.30118 28.4074 2.3748 27.9177 2.95525C27.4281 3.5357 27.5017 4.40319 28.0822 4.89283C29.1302 5.77689 29.4749 6.97596 29.3071 8.09829C27.4039 7.14328 25.2192 6.59183 22.8169 6.59183C14.8155 6.59183 8.88039 13.5892 8.31696 21.1758C3.90061 22.9555 4.61743 28.6642 9.19584 29.5867H10.0746C12.5844 34.3568 16.9037 37.8048 22.3781 37.758C28.2514 37.7078 32.9231 34.8988 35.5595 29.5867C40.9822 29.5867 41.7394 23.4034 37.3171 21.1758C37.3171 16.7672 35.2512 12.4416 31.7525 9.66108C32.5481 7.39376 32.1336 4.71269 29.8553 2.79082ZM31.7525 9.66108C31.0013 9.0641 30.1841 8.53835 29.3071 8.09829C28.9774 10.3043 26.6676 12.2139 23.8265 10.8519C23.1417 10.5237 22.3205 10.8127 21.9922 11.4975C21.6639 12.1822 21.9529 13.0035 22.6377 13.3317C26.893 15.3716 30.5976 12.9522 31.7525 9.66108ZM17.5444 21.5702C17.5588 21.5791 17.5724 21.5903 17.5838 21.6025C17.5724 21.6149 17.5587 21.6261 17.5444 21.6351C17.5301 21.6261 17.5164 21.6149 17.505 21.6025C17.5164 21.5903 17.5301 21.5791 17.5444 21.5702ZM17.5444 18.8998C16.7283 18.8998 16.0168 19.222 15.5244 19.7802C15.055 20.3122 14.851 20.981 14.8512 21.6033C14.8514 22.2255 15.0559 22.8939 15.525 23.4256C16.0172 23.9833 16.7283 24.3058 17.5444 24.3058C18.3605 24.3058 19.0717 23.9833 19.5638 23.4256C20.033 22.8939 20.2374 22.2255 20.2376 21.6033C20.2378 20.981 20.0338 20.3122 19.5644 19.7802C19.072 19.222 18.3605 18.8998 17.5444 18.8998ZM28.9687 21.5702C28.9831 21.5791 28.9967 21.5903 29.0081 21.6025C28.9967 21.6149 28.983 21.6261 28.9687 21.6351C28.9544 21.6261 28.9407 21.6149 28.9293 21.6025C28.9407 21.5903 28.9544 21.5791 28.9687 21.5702ZM28.9687 18.8998C28.1526 18.8998 27.4411 19.222 26.9487 19.7802C26.4793 20.3122 26.2753 20.981 26.2755 21.6033C26.2757 22.2255 26.4802 22.8939 26.9493 23.4256C27.4415 23.9833 28.1526 24.3058 28.9687 24.3058C29.7848 24.3058 30.496 23.9833 30.9881 23.4256C31.4573 22.8939 31.6617 22.2255 31.6619 21.6033C31.6621 20.981 31.4581 20.3122 30.9887 19.7802C30.4963 19.222 29.7848 18.8998 28.9687 18.8998ZM28.7364 29.0865C29.2023 28.4869 29.0938 27.623 28.4941 27.1572C27.8944 26.6913 27.0306 26.7997 26.5647 27.3994C25.3555 28.956 24.0267 29.5413 22.8375 29.5237C21.6284 29.5058 20.2719 28.8601 19.0457 27.3695C18.5633 26.783 17.6968 26.6987 17.1103 27.1811C16.5239 27.6635 16.4395 28.53 16.9219 29.1165C18.525 31.0654 20.5872 32.2407 22.7968 32.2734C25.0264 32.3064 27.1163 31.1719 28.7364 29.0865Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,8 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M7 7H5.68439L5 7.73171V9H6.26689L7 8.31707V7Z" fill="currentColor"/>
|
||||||
|
<path d="M7 11H5.68439L5 11.7317V13H6.26689L7 12.3171V11Z" fill="currentColor"/>
|
||||||
|
<path d="M7 15H5.68439L5 15.7317V17H6.26689L7 16.3171V15Z" fill="currentColor"/>
|
||||||
|
<path d="M9 15H19L17 17H9V15Z" fill="currentColor"/>
|
||||||
|
<rect x="9" y="11" width="10" height="2" fill="currentColor"/>
|
||||||
|
<path d="M9 7H17L19 9H9V7Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 486 B |
@@ -0,0 +1,9 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18.9999 12C19.5523 12 20.0064 11.5505 19.9376 11.0025C19.745 9.46994 19.1116 8.01808 18.1039 6.82871C16.8797 5.38372 15.1826 4.41989 13.3144 4.10872C11.4463 3.79755 9.52839 4.15922 7.90189 5.12938C6.27539 6.09953 5.04582 7.61525 4.43194 9.40685C3.81806 11.1985 3.85968 13.1497 4.54941 14.9135C5.23914 16.6773 6.53224 18.1392 8.19863 19.0391C9.86502 19.9391 11.7966 20.2186 13.6498 19.828C15.1751 19.5066 16.5658 18.7483 17.6578 17.6559C18.0483 17.2653 17.9652 16.6317 17.529 16.2929C17.0927 15.9542 16.4693 16.0409 16.0629 16.4149C15.2735 17.1413 14.2989 17.6472 13.2373 17.8709C11.8475 18.1638 10.3988 17.9541 9.14904 17.2792C7.89928 16.6043 6.92948 15.5079 6.4122 14.1851C5.89491 12.8623 5.86369 11.3989 6.32409 10.0552C6.78449 8.71152 7.70665 7.57476 8.92649 6.84716C10.1463 6.11956 11.5847 5.84832 12.9858 6.08169C14.3869 6.31506 15.6597 7.03791 16.5778 8.12163C17.2791 8.94938 17.7387 9.94667 17.9167 11.0045C18.0083 11.5492 18.4476 12 18.9999 12Z" fill="url(#paint0_angular_10_1207)"/>
|
||||||
|
<defs>
|
||||||
|
<radialGradient id="paint0_angular_10_1207" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(12 12) rotate(45) scale(7.9196)">
|
||||||
|
<stop offset="0.874517" stop-color="currentColor"/>
|
||||||
|
<stop offset="0.982613" stop-color="currentColor" stop-opacity="0"/>
|
||||||
|
</radialGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.48959 4.54773C9.80905 1.15076 15.191 1.15076 18.5104 4.54773C21.8299 7.9447 21.8299 13.4523 18.5104 16.8492L12.5 23L6.48959 16.8492C3.17014 13.4523 3.17014 7.9447 6.48959 4.54773ZM12.5 13.1838C13.8413 13.1838 14.9286 12.0711 14.9286 10.6985C14.9286 9.3259 13.8413 8.2132 12.5 8.2132C11.1587 8.2132 10.0714 9.3259 10.0714 10.6985C10.0714 12.0711 11.1587 13.1838 12.5 13.1838Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 530 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 9.75024C5 8.86382 5.18106 7.98608 5.53284 7.16713C5.88463 6.34818 6.40024 5.60407 7.05025 4.97727C7.70026 4.35048 8.47194 3.85328 9.32122 3.51406C10.1705 3.17484 11.0807 3.00024 12 3.00024C12.9193 3.00024 13.8295 3.17484 14.6788 3.51406C15.5281 3.85328 16.2997 4.35048 16.9497 4.97727C17.5998 5.60407 18.1154 6.34818 18.4672 7.16713C18.8189 7.98608 19 8.86382 19 9.75024C19 14.8654 14.9802 18.6885 13.033 20.2403C12.4205 20.7284 11.5795 20.7284 10.967 20.2403C9.01984 18.6885 5 14.8654 5 9.75024ZM12 14.0002C14.2091 14.0002 16 12.2094 16 10.0002C16 7.79111 14.2091 6.00024 12 6.00024C9.79086 6.00024 8 7.79111 8 10.0002C8 12.2094 9.79086 14.0002 12 14.0002Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 20H20L22 18V4H4L2 6V20ZM6.30278 6L12 9.79815L17.6972 6H6.30278ZM4 6.86852V18H19H20V17V6.86852L12 12.2019L4 6.86852Z" fill="currentColor"/>
|
||||||
|
<path d="M19 18H20V17L19 18Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 323 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M38.672 31.2574L29.6784 8.3877L22.0708 21.7567L14.494 8.3877L5.4696 31.2574H2.8208V34.7234H16.4344V31.2574H14.4016L16.3728 25.5632L22.0708 34.971L27.7688 25.5632L29.74 31.2574H27.7072V34.7234H41.3208V31.2574H38.672Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 329 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 7.3335L7.33335 7.3335L8.66669 7.3335L14 7.3335L14 8.66683L8.66666 8.66684H7.33333L2 8.66683L2 7.3335Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 273 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C6.34315 2 5 3.34315 5 5V19C5 20.6569 6.34315 22 8 22H16C17.6569 22 19 20.6569 19 19V5C19 3.34314 17.6569 2 16 2H8ZM8 4C7.44772 4 7 4.44772 7 5L7 19C7 19.5523 7.44772 20 8 20L16 20C16.5523 20 17 19.5523 17 19V5C17 4.44772 16.5523 4 16 4L8 4Z" fill="currentColor"/>
|
||||||
|
<rect x="9" y="3" width="6" height="2" rx="1" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 466 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M5.74 3.9932C5.65218 3.8942 5.54559 3.81362 5.4264 3.75612C5.30721 3.69863 5.1778 3.66536 5.04566 3.65825C4.91352 3.65114 4.78128 3.67033 4.65661 3.71471C4.53194 3.75908 4.41732 3.82776 4.31939 3.91677C4.22146 4.00577 4.14216 4.11333 4.0861 4.2332C4.03004 4.35308 3.99833 4.48289 3.99281 4.61512C3.98728 4.74734 4.00806 4.87934 4.05392 5.00348C4.09979 5.12761 4.16983 5.24141 4.26 5.33827L6.37583 7.66591H3.66667C3.22464 7.66591 2.80072 7.84151 2.48816 8.15409C2.17559 8.46667 2 8.89062 2 9.33267V14.6663C2 15.1084 2.17559 15.5323 2.48816 15.8449C2.80072 16.1575 3.22464 16.3331 3.66667 16.3331H7.32333L13.0525 20.7892C13.2003 20.9042 13.3773 20.9754 13.5635 20.9947C13.7498 21.014 13.9377 20.9806 14.1059 20.8984C14.2741 20.8161 14.4158 20.6883 14.515 20.5295C14.6141 20.3707 14.6667 20.1872 14.6667 20V16.7864L17.5933 20.0058C17.7726 20.1984 18.0206 20.3126 18.2835 20.3236C18.5464 20.3345 18.8031 20.2415 18.9978 20.0645C19.1926 19.8875 19.3097 19.6409 19.3238 19.3781C19.338 19.1153 19.248 18.8576 19.0733 18.6607L5.74 3.9932ZM4 9.66602H6.66667V14.333H4V9.66602ZM12.6667 17.9548L8.66667 14.8438V10.1861L12.6667 14.583V17.9548ZM10.0833 6.78752C10.0027 6.68383 9.94333 6.56528 9.90854 6.43863C9.87376 6.31198 9.86425 6.17972 9.88058 6.0494C9.89691 5.91907 9.93875 5.79325 10.0037 5.6791C10.0687 5.56495 10.1555 5.46471 10.2592 5.38411L13.0517 3.21149C13.1993 3.09633 13.3763 3.02494 13.5625 3.00544C13.7487 2.98594 13.9367 3.01911 14.105 3.10117C14.2732 3.18324 14.4151 3.3109 14.5144 3.46963C14.6137 3.62837 14.6665 3.81179 14.6667 3.99903V9.24433C14.6667 9.50956 14.5613 9.76393 14.3738 9.95148C14.1862 10.139 13.9319 10.2444 13.6667 10.2444C13.4014 10.2444 13.1471 10.139 12.9596 9.95148C12.772 9.76393 12.6667 9.50956 12.6667 9.24433V6.04415L11.4875 6.96087C11.3838 7.04165 11.2653 7.10121 11.1386 7.13614C11.0119 7.17107 10.8796 7.18068 10.7491 7.16443C10.6187 7.14818 10.4928 7.10637 10.3786 7.04142C10.2643 6.97646 10.164 6.88962 10.0833 6.78586V6.78752ZM16.25 10.9003C16.0862 10.6998 16.0065 10.4437 16.0276 10.1857C16.0488 9.92766 16.1691 9.68791 16.3634 9.51683C16.5577 9.34575 16.8107 9.25668 17.0693 9.26834C17.3279 9.28 17.5719 9.39149 17.75 9.57935C18.2475 10.1449 18.5588 10.8499 18.6415 11.5986C18.7243 12.3472 18.5745 13.1032 18.2125 13.7638C18.0774 13.9814 17.864 14.1388 17.6163 14.2037C17.3686 14.2687 17.1054 14.236 16.881 14.1126C16.6566 13.9892 16.4881 13.7844 16.4102 13.5404C16.3324 13.2964 16.3511 13.0318 16.4625 12.8012C16.598 12.5558 16.6683 12.2798 16.6667 11.9995C16.6663 11.5941 16.5182 11.2027 16.25 10.8986V10.9003ZM22 11.9995C21.9989 13.621 21.4362 15.1921 20.4075 16.4456C20.3246 16.5487 20.2221 16.6343 20.1059 16.6976C19.9897 16.7608 19.8621 16.8003 19.7305 16.8138C19.5989 16.8274 19.4659 16.8147 19.3392 16.7765C19.2126 16.7382 19.0948 16.6753 18.9926 16.5912C18.8905 16.5071 18.806 16.4036 18.7442 16.2867C18.6823 16.1697 18.6443 16.0417 18.6322 15.9099C18.6202 15.7782 18.6344 15.6454 18.6741 15.5191C18.7138 15.3929 18.7781 15.2759 18.8633 15.1747C19.6215 14.2523 20.0246 13.089 19.9997 11.8952C19.9747 10.7014 19.5235 9.55595 18.7275 8.66597C18.6364 8.56873 18.5656 8.45426 18.5193 8.32928C18.4731 8.2043 18.4523 8.07133 18.4581 7.93819C18.464 7.80505 18.4964 7.67443 18.5534 7.55399C18.6104 7.43355 18.691 7.32572 18.7903 7.23686C18.8896 7.14799 19.0057 7.07986 19.1317 7.03649C19.2577 6.99311 19.3911 6.97536 19.524 6.98428C19.657 6.99319 19.7868 7.0286 19.9059 7.08841C20.025 7.14822 20.1309 7.23122 20.2175 7.33256C21.3663 8.61548 22.001 10.2774 22 11.9995Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.6341 11.5845C29.6341 1.83812 15.5046 0.698735 15.5046 11.5845C5.58661 13.207 8.68878 26.36 17.3878 26.3612L21.1932 26.3611V37.1726H15.5042C14.7448 37.1726 14.1292 37.7882 14.1292 38.5476C14.1292 39.307 14.7448 39.9226 15.5042 39.9226H29.6338C30.3931 39.9226 31.0088 39.307 31.0088 38.5476C31.0088 37.7882 30.3931 37.1726 29.6338 37.1726H23.9432V26.3611L27.7494 26.361C35.6496 26.3608 38.2758 13.5175 29.6341 11.5845ZM23.9432 26.3611V21.3584L28.4016 18.9546C29.07 18.5942 29.3198 17.7602 28.9594 17.0918C28.599 16.4234 27.7649 16.1736 27.0965 16.534L23.9432 18.2342V14.8416C23.9432 14.0822 23.3276 13.4666 22.5682 13.4666C21.8089 13.4666 21.1932 14.0822 21.1932 14.8416V26.3611L23.9432 26.3611Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 850 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M10 3H7L5 5V21H8L10 19V3Z" fill="currentColor"/>
|
||||||
|
<path d="M19 3H16L14 5V21H17L19 19V3Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 199 B |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18.9704 21.092L3.41406 5.53564V8.36407L16.142 21.092H18.9704Z" fill="currentColor"/>
|
||||||
|
<path d="M9.07054 9.77817L11.899 6.94975L8.36343 3.41421H5.53501L4.12079 4.82843L9.07054 9.77817Z" fill="currentColor"/>
|
||||||
|
<path d="M14.7263 15.4349L19.676 20.3846L21.0902 18.9704V16.142L17.5547 12.6064L14.7263 15.4349Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21 12L6 21L6 3L21 12Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 135 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M12.0001 11.9998H18.0001M12.0001 11.9998L12.0001 6M12.0001 11.9998L12.0001 18M12.0001 11.9998H6" stroke="currentColor" stroke-width="2" stroke-linecap="square" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 275 B |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C10.9494 4 9.90914 4.20693 8.93853 4.60896C7.96793 5.011 7.08602 5.60028 6.34315 6.34315C5.60028 7.08601 5.011 7.96793 4.60896 8.93853C4.20693 9.90914 4 10.9494 4 12C4 13.0506 4.20693 14.0909 4.60896 15.0615C5.011 16.0321 5.60028 16.914 6.34315 17.6569C7.08601 18.3997 7.96793 18.989 8.93853 19.391C9.90914 19.7931 10.9494 20 12 20C13.0506 20 14.0909 19.7931 15.0615 19.391C16.0321 18.989 16.914 18.3997 17.6569 17.6569C18.3997 16.914 18.989 16.0321 19.391 15.0615C19.7931 14.0909 20 13.0506 20 12C20 10.9494 19.7931 9.90914 19.391 8.93853C18.989 7.96793 18.3997 7.08602 17.6569 6.34315C16.914 5.60028 16.0321 5.011 15.0615 4.60896C14.0909 4.20693 13.0506 4 12 4ZM8.17317 2.7612C9.38642 2.25866 10.6868 2 12 2C13.3132 2 14.6136 2.25866 15.8268 2.76121C17.0401 3.26375 18.1425 4.00035 19.0711 4.92893C19.9997 5.85752 20.7362 6.95991 21.2388 8.17317C21.7413 9.38642 22 10.6868 22 12C22 13.3132 21.7413 14.6136 21.2388 15.8268C20.7362 17.0401 19.9997 18.1425 19.0711 19.0711C18.1425 19.9997 17.0401 20.7362 15.8268 21.2388C14.6136 21.7413 13.3132 22 12 22C10.6868 22 9.38642 21.7413 8.17317 21.2388C6.95991 20.7362 5.85752 19.9997 4.92893 19.0711C4.00035 18.1425 3.26375 17.0401 2.7612 15.8268C2.25866 14.6136 2 13.3132 2 12C2 10.6868 2.25866 9.38642 2.76121 8.17316C3.26375 6.95991 4.00035 5.85752 4.92893 4.92893C5.85752 4.00035 6.95991 3.26375 8.17317 2.7612Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 8C10.9294 8 10 8.91059 10 10.1111V11.1111H8V10.1111C8 7.8752 9.75689 6 12 6C14.2431 6 16 7.8752 16 10.1111C16 11.3591 15.2208 12.3058 14.5607 12.9629C14.272 13.2503 13.9593 13.5261 13.682 13.7706C13.6305 13.816 13.5802 13.8603 13.5315 13.9035C13.2029 14.1946 12.9463 14.4318 12.7604 14.6495L12.1109 15.4099L10.5901 14.1109L11.2396 13.3505C11.5273 13.0137 11.8825 12.6924 12.2052 12.4065C12.2609 12.3572 12.3159 12.3086 12.3702 12.2607C12.648 12.0156 12.9077 11.7864 13.1497 11.5455C13.7528 10.9452 14 10.5019 14 10.1111C14 8.91059 13.0706 8 12 8Z" fill="currentColor"/>
|
||||||
|
<rect x="11" y="16" width="2" height="2" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5045 3.50875L16.465 2.33708L15.6411 0.958496L10.9702 3.74999L13.796 8.12077L15.1447 7.24882L13.6698 4.96761C17.4919 5.71593 20.394 9.13848 20.394 13.2693C20.394 17.9511 16.6661 21.7231 12.0962 21.7231C7.52626 21.7231 3.79841 17.9511 3.79841 13.2693C3.79841 10.7891 4.84556 8.56188 6.5122 7.01615L5.42009 5.83861C3.43603 7.67873 2.19238 10.3284 2.19238 13.2693C2.19238 18.8123 6.61366 23.3291 12.0962 23.3291C17.5787 23.3291 22 18.8123 22 13.2693C22 8.56661 18.8175 4.60248 14.5045 3.50875Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 646 B |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M3 17.8204V7H6.81755C7.6473 7 8.33585 7.14441 8.88321 7.43324C9.43405 7.72206 9.84544 8.12184 10.1174 8.63257C10.3893 9.13977 10.5253 9.72622 10.5253 10.3919C10.5253 11.0541 10.3876 11.637 10.1121 12.1407C9.84021 12.6409 9.42882 13.0301 8.87798 13.3084C8.33062 13.5866 7.64207 13.7257 6.81232 13.7257H3.9204V12.3204H6.66589C7.18884 12.3204 7.61418 12.2446 7.94189 12.0932C8.2731 11.9417 8.5154 11.7216 8.6688 11.4328C8.8222 11.1439 8.8989 10.797 8.8989 10.3919C8.8989 9.98335 8.82045 9.62936 8.66357 9.32997C8.51017 9.03058 8.26787 8.80163 7.93667 8.64313C7.60895 8.48111 7.17838 8.4001 6.64497 8.4001H4.61592V17.8204H3ZM8.28704 12.9385L10.9332 17.8204H9.09239L6.49855 12.9385H8.28704Z" fill="currentColor"/>
|
||||||
|
<path d="M19.3788 9L21 7V14.1167C21 14.874 20.8239 15.545 20.4718 16.1297C20.1197 16.7109 19.6246 17.1687 18.9866 17.5034C18.3486 17.8345 17.6008 18 16.7432 18C15.889 18 15.1429 17.8345 14.5049 17.5034C13.8669 17.1687 13.3719 16.7109 13.0198 16.1297C12.6676 15.545 12.4916 14.874 12.4916 14.1167V9L14.1075 7V13.9846C14.1075 14.4742 14.2138 14.9092 14.4265 15.2896C14.6426 15.67 14.9477 15.9694 15.3417 16.1878C15.7356 16.4027 16.2028 16.5101 16.7432 16.5101C17.287 16.5101 17.756 16.4027 18.1499 16.1878C18.5474 15.9694 18.8507 15.67 19.0598 15.2896C19.2725 14.9092 19.3788 14.4742 19.3788 13.9846V9Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.1898 10.8151H6.92792V7.30789H16.1898C16.7308 7.30789 17.107 7.39814 17.2958 7.5557C17.4846 7.7133 17.6015 8.00557 17.6015 8.43252V9.69184C17.6015 10.1417 17.4846 10.434 17.2958 10.5915C17.107 10.7491 16.7308 10.8165 16.1898 10.8165V10.8151ZM16.8252 4.00134H3V19H6.92792V14.1203H14.1667L17.6015 19H22L18.213 14.0974C19.6092 13.8994 20.2361 13.49 20.7531 12.8152C21.2702 12.1404 21.5295 11.0616 21.5295 9.6218V8.49718C21.5295 7.64325 21.435 6.96848 21.2702 6.4513C21.1053 5.93409 20.8237 5.48425 20.4235 5.08018C20.0008 4.69768 19.5303 4.4283 18.9653 4.24782C18.4003 4.09025 17.6945 4 16.8252 4V4.00134Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 718 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 45 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.688 5.9585C20.6215 5.9585 18.6396 6.7794 17.1784 8.24062C15.9781 9.44092 15.2099 10.9925 14.9738 12.6538C14.8883 13.2552 15.3888 13.7502 15.9963 13.7502H16.5463C17.1538 13.7502 17.6343 13.2519 17.7658 12.6588C17.9719 11.7292 18.4391 10.8691 19.123 10.1852C20.0685 9.23967 21.3508 8.7085 22.688 8.7085C24.0251 8.7085 25.3075 9.23967 26.253 10.1852C26.9369 10.8691 27.404 11.7292 27.6101 12.6588C27.7416 13.2519 28.2221 13.7502 28.8296 13.7502H29.3796C29.9871 13.7502 30.4876 13.2552 30.4021 12.6538C30.166 10.9925 29.3978 9.44092 28.1975 8.24062C26.7363 6.7794 24.7544 5.9585 22.688 5.9585ZM9.85449 19.9835L9.85462 33.1835C9.85465 35.6136 11.8246 37.5835 14.2546 37.5835H31.1211C33.5512 37.5835 35.5211 35.6136 35.5211 33.1835V19.9835C35.5211 17.5534 33.5512 15.5835 31.1211 15.5835H14.2545C11.8244 15.5835 9.85447 17.5535 9.85449 19.9835Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 995 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M16.4206 10.4489L11.9949 2.86255L7.5724 10.4507L5.85896 13.3906L4.14551 16.3305V18.3969L7.69027 17.2055L11.4279 15.9493V10.7394L12.0044 9.75025L12.5708 10.7212V15.9548L16.307 17.2076L19.8496 18.3955V16.327L18.1351 13.3879L16.4206 10.4489Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 351 B |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg viewBox="0 0 45 45" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M31.3272 24.5563H14.0124L11.242 10.7044H38.2531L31.3272 24.5563Z" fill="currentColor"/>
|
||||||
|
<path d="M34.7901 34.9452C34.7901 36.8577 33.2397 38.4081 31.3272 38.4081C29.4146 38.4081 27.8642 36.8577 27.8642 34.9452C27.8642 33.0326 29.4146 31.4822 31.3272 31.4822C33.2397 31.4822 34.7901 33.0326 34.7901 34.9452Z" fill="currentColor"/>
|
||||||
|
<path d="M17.4753 34.9452C17.4753 36.8577 15.9249 38.4081 14.0124 38.4081C12.0998 38.4081 10.5494 36.8577 10.5494 34.9452C10.5494 33.0326 12.0998 31.4822 14.0124 31.4822C15.9249 31.4822 17.4753 33.0326 17.4753 34.9452Z" fill="currentColor"/>
|
||||||
|
<path d="M7.08643 7.24146H10.5494L11.242 10.7044M14.0124 24.5563H31.3272L38.2531 10.7044H11.242M14.0124 24.5563L11.242 10.7044M14.0124 24.5563L10.0422 28.5264C8.95148 29.6171 9.72401 31.4822 11.2666 31.4822H31.3272M31.3272 31.4822C29.4146 31.4822 27.8642 33.0326 27.8642 34.9452C27.8642 36.8577 29.4146 38.4081 31.3272 38.4081C33.2397 38.4081 34.7901 36.8577 34.7901 34.9452C34.7901 33.0326 33.2397 31.4822 31.3272 31.4822ZM17.4753 34.9452C17.4753 36.8577 15.9249 38.4081 14.0124 38.4081C12.0998 38.4081 10.5494 36.8577 10.5494 34.9452C10.5494 33.0326 12.0998 31.4822 14.0124 31.4822C15.9249 31.4822 17.4753 33.0326 17.4753 34.9452Z" stroke="currentColor" stroke-width="2.75" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,11 @@
|
|||||||
|
<svg viewBox="0 0 28 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M4.26888 6.02722C3.92553 4.62869 5.41929 3.38886 7.35196 3.38886C9.09349 3.38886 10.8386 3.75255 11.5005 6.0206H13.734V9.4822C10.9518 7.34639 4.92018 8.68541 4.26888 6.02391M27.4256 5.06511H22.3992L17.6171 9.9583V0.185148H13.7376V2.5557C13.6102 2.40361 13.4792 2.25153 13.327 2.10275C11.9146 0.707528 9.88285 0 7.28471 0C4.2795 0 2.56983 1.25636 1.66366 2.31104C0.541578 3.6203 0.0389462 5.40565 0.385837 6.86369C1.28492 10.6328 5.02638 11.2345 7.77673 11.5684C9.94657 11.8329 12.0244 12.1999 11.9677 14.0084C11.9111 15.883 9.64568 16.3459 8.16255 16.3459C4.29365 16.3459 4.16269 13.6745 4.16269 13.6745H0C0.0601749 14.6763 0.38583 16.2897 1.70614 17.6717C3.15387 19.1859 5.3237 19.953 8.159 19.953C10.3324 19.953 12.3146 19.2917 13.734 18.1147V19.7314H17.6135V15.116L18.9869 13.7108L22.9054 19.7314H27.422L21.7196 10.9138L27.4256 5.07172V5.06511Z" fill="currentColor"/>
|
||||||
|
<path d="M0.880965 25.1845C0.955544 25.2082 1.04411 25.219 1.14432 25.219C1.27017 25.219 1.37038 25.1845 1.44496 25.1133C1.51954 25.0442 1.57082 24.9493 1.59645 24.8458L0 21.7134H1.06274L2.0882 23.9613L2.9878 21.7134H4.0016L2.5613 24.8005C2.37253 25.2082 2.17676 25.5102 1.96468 25.7022C1.75026 25.9007 1.51721 25.9999 1.26085 25.9999C1.17229 25.9999 1.10469 25.9999 1.04643 25.9891C0.983502 25.9827 0.932233 25.9719 0.890283 25.9611L0.771421 25.9266C0.738793 25.9158 0.708501 25.9028 0.675873 25.8985V25.1068C0.731807 25.1413 0.801714 25.1715 0.883284 25.1888" fill="currentColor"/>
|
||||||
|
<path d="M5.82616 24.7185C5.76323 24.7358 5.69331 24.7487 5.61873 24.766C5.54416 24.7768 5.46259 24.7897 5.37869 24.7962C5.29712 24.807 5.21555 24.807 5.13864 24.807C4.94287 24.807 4.77973 24.7897 4.62824 24.7595C4.48374 24.725 4.3579 24.6775 4.25768 24.6085C4.15747 24.5395 4.08055 24.4446 4.03161 24.3281C3.98034 24.218 3.95703 24.0778 3.95703 23.9139V22.7964H4.82401V23.7564C4.82401 23.8427 4.83566 23.9203 4.8613 23.9721C4.87994 24.0304 4.91724 24.0778 4.96851 24.1123C5.01978 24.1469 5.07572 24.1706 5.1503 24.1814C5.22488 24.1943 5.31343 24.1986 5.41364 24.1986C5.56513 24.1986 5.677 24.1878 5.76556 24.1641C5.85412 24.1361 5.92171 24.1059 5.97299 24.0778V22.7964H6.83997V25.8943H5.97299V24.6711C5.9357 24.6819 5.88442 24.6991 5.82149 24.7185" fill="currentColor"/>
|
||||||
|
<path d="M9.254 24.4507C9.19807 24.4745 9.12814 24.4982 9.03958 24.509L8.80652 24.55C8.7063 24.5672 8.61774 24.5845 8.54316 24.6082C8.46858 24.632 8.40567 24.66 8.3544 24.6945C8.30313 24.7355 8.26584 24.7808 8.2402 24.8347C8.21457 24.8865 8.20291 24.9512 8.20291 25.0332C8.20291 25.0979 8.21456 25.1562 8.23554 25.2015C8.26117 25.2533 8.29146 25.2899 8.33574 25.3244C8.37303 25.3546 8.41732 25.3827 8.4686 25.3935C8.52453 25.4107 8.5828 25.4172 8.64572 25.4172C8.67835 25.4172 8.72031 25.4107 8.77158 25.4064C8.82285 25.3999 8.87179 25.3892 8.93471 25.3719C8.99064 25.3482 9.04657 25.3244 9.10484 25.2899C9.16077 25.2597 9.21205 25.2144 9.25633 25.1626C9.3076 25.1109 9.34489 25.0462 9.3682 24.9642C9.39383 24.8887 9.41249 24.8002 9.41249 24.6967V24.3817C9.36122 24.4119 9.30527 24.4335 9.25633 24.4507M10.3004 25.51C10.3074 25.5682 10.3261 25.62 10.3447 25.6502C10.3634 25.6912 10.382 25.7149 10.4076 25.7322C10.4333 25.7494 10.4519 25.7624 10.4822 25.7667V25.894H9.51969L9.46842 25.7473C9.44279 25.689 9.43579 25.62 9.43579 25.5315L9.24 25.7128C9.17008 25.7645 9.10251 25.812 9.02094 25.853C8.93937 25.894 8.85079 25.9285 8.74359 25.9522C8.63638 25.9759 8.51053 25.9867 8.36603 25.9867C8.22154 25.9867 8.07706 25.9695 7.95121 25.9285C7.82536 25.8875 7.71815 25.8228 7.62493 25.7473C7.53636 25.6653 7.46178 25.5661 7.4105 25.4453C7.35923 25.3288 7.33594 25.1885 7.33594 25.0311C7.33594 24.9038 7.35459 24.7873 7.39887 24.6751C7.44315 24.5651 7.50605 24.4702 7.58063 24.3903C7.6622 24.3084 7.75775 24.2393 7.86962 24.1875C7.98149 24.1293 8.10968 24.0948 8.25417 24.0775L9.10251 23.961C9.13513 23.9546 9.16544 23.9546 9.20273 23.9438C9.24002 23.9373 9.27263 23.9265 9.30293 23.9028C9.33556 23.8855 9.35888 23.8618 9.37753 23.8338C9.39617 23.7992 9.41016 23.7582 9.41016 23.7065C9.41016 23.6547 9.39848 23.6072 9.3845 23.5662C9.36585 23.5188 9.33325 23.4843 9.29596 23.4562C9.25168 23.4217 9.20039 23.398 9.1328 23.3807C9.06289 23.3635 8.97666 23.357 8.87411 23.357C8.75525 23.357 8.66671 23.3678 8.59679 23.385C8.52221 23.4088 8.46392 23.4433 8.42663 23.4778C8.38235 23.5188 8.35207 23.5641 8.3311 23.6116L8.2938 23.7798H7.42683C7.42683 23.7453 7.43381 23.6935 7.44547 23.6223C7.45712 23.5576 7.48274 23.4821 7.52003 23.4001C7.55266 23.3246 7.6086 23.2427 7.67153 23.1607C7.73445 23.0787 7.81602 23.0032 7.93022 22.9342C8.03043 22.8694 8.16328 22.8112 8.31477 22.7702C8.46626 22.7292 8.64107 22.7055 8.85548 22.7012C9.15146 22.7012 9.39617 22.7292 9.58495 22.7832C9.76674 22.8414 9.91123 22.9169 10.0184 23.0054C10.1187 23.0981 10.1886 23.1974 10.2259 23.3074C10.2585 23.4174 10.2771 23.5296 10.2771 23.6396V25.2813C10.2771 25.3741 10.2841 25.4496 10.2958 25.5078" fill="currentColor"/>
|
||||||
|
<path d="M12.8179 23.6765C12.7922 23.6118 12.7549 23.56 12.7106 23.519C12.6594 23.4715 12.6034 23.4435 12.5405 23.4198C12.4706 23.4025 12.389 23.3896 12.2958 23.3896C12.1513 23.3896 12.0371 23.4198 11.9509 23.4823C11.8623 23.547 11.7947 23.6225 11.7504 23.7153C11.6992 23.8145 11.6759 23.9181 11.6549 24.0303C11.6432 24.1403 11.6293 24.246 11.6293 24.3452C11.6293 24.4445 11.6363 24.5545 11.6479 24.6667C11.6596 24.7832 11.6852 24.8824 11.7365 24.9752C11.7808 25.0679 11.8437 25.1499 11.9369 25.2082C12.0255 25.2729 12.1443 25.3009 12.2958 25.3009C12.396 25.3009 12.4846 25.2837 12.5592 25.2427C12.6291 25.2082 12.692 25.1607 12.7409 25.1089C12.7922 25.0507 12.8295 24.9924 12.8551 24.9277C12.8738 24.8695 12.8878 24.8112 12.8878 24.7594H13.792C13.792 24.8112 13.785 24.8759 13.7664 24.9579C13.7408 25.0442 13.7105 25.1262 13.6662 25.2189C13.6219 25.3074 13.559 25.4002 13.4891 25.4929C13.4075 25.5857 13.3189 25.6677 13.2071 25.7367C13.0929 25.8122 12.967 25.8704 12.8179 25.9179C12.6664 25.9654 12.4916 25.9869 12.2958 25.9869C12.0441 25.9869 11.8181 25.9524 11.6223 25.8812C11.4265 25.8057 11.2634 25.7 11.1328 25.5598C11 25.4196 10.8998 25.2513 10.8299 25.042C10.76 24.8371 10.7227 24.6041 10.7227 24.3431C10.7227 24.082 10.76 23.8426 10.8369 23.6376C10.9115 23.4392 11.0187 23.2644 11.1585 23.1242C11.296 22.984 11.4614 22.8804 11.6549 22.8092C11.8437 22.7337 12.0627 22.6992 12.2958 22.6992C12.396 22.6992 12.5032 22.71 12.6174 22.7229C12.7246 22.7337 12.8318 22.7639 12.939 22.7985C13.0462 22.8394 13.1465 22.8847 13.2467 22.9452C13.3422 23.0034 13.4285 23.0789 13.51 23.1652C13.5846 23.2536 13.6475 23.3572 13.6988 23.4737C13.7478 23.5902 13.7804 23.7304 13.792 23.8879H12.8878C12.8691 23.8059 12.8505 23.7304 12.8179 23.6722" fill="currentColor"/>
|
||||||
|
<path d="M16.9157 22.7983V23.4498H15.9042V25.8962H15.0349V23.4498H14.0234V22.7983H16.9157Z" fill="currentColor"/>
|
||||||
|
<path d="M19.4215 23.9158V22.7983H20.2885V25.8962H19.4215V24.5673H18.1443V25.8962H17.2773V22.7983H18.1443V23.9158H19.4215Z" fill="currentColor"/>
|
||||||
|
<path d="M21.8458 24.7075L23.067 22.7983H23.9783V25.8962H23.109V24.0258H23.0973L21.9157 25.8962H20.9648V22.7983H21.8341V24.7075H21.8458Z" fill="currentColor"/>
|
||||||
|
<path d="M26.7865 22.7983H27.9424L26.5604 24.0841L28.0007 25.8962H26.868L25.8869 24.5846L25.5349 24.9168V25.8962H24.668V22.7983H25.5349V23.9741L26.7865 22.7983Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 7.2 KiB |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 45 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M15.1793 14.4377V29.5623C15.1793 30.9488 14.0471 32.0832 12.6447 32.0832C11.2506 32.0832 10.11 30.9488 10.11 29.5623V29.4613C9.84813 29.5623 9.56096 29.6125 9.265 29.6125C7.87094 29.6125 6.73037 28.4781 6.73037 27.0916L6.73102 24.5208H5.15964C3.76557 24.5208 2.625 23.3864 2.625 21.9999C2.625 20.605 3.76557 19.4789 5.15964 19.4789H6.73102V16.9161C6.73102 15.5213 7.87159 14.3952 9.26565 14.3952C9.56125 14.3952 9.84842 14.4455 10.1107 14.538L10.1103 14.4374C10.1103 13.0426 11.2509 11.9165 12.645 11.9165C14.0471 11.9165 15.1793 13.0429 15.1793 14.4377Z" fill="currentColor"/>
|
||||||
|
<path d="M16.7593 19.4791H28.8322V24.5206H16.7593V19.4791Z" fill="currentColor"/>
|
||||||
|
<path d="M42.9583 21.9997C42.9583 23.3862 41.8261 24.5206 40.4237 24.5206H38.8608V27.0918C38.8608 28.4783 37.7286 29.6127 36.3261 29.6127C36.0305 29.6127 35.7431 29.5624 35.4811 29.4615L35.4815 29.5621C35.4815 30.9486 34.3493 32.083 32.9468 32.083C31.5528 32.083 30.4122 30.9486 30.4122 29.5621V14.4376C30.4122 13.0427 31.5528 11.9167 32.9468 11.9167C34.3493 11.9167 35.4815 13.0427 35.4815 14.4376V14.5385C35.7433 14.446 36.0305 14.3957 36.3265 14.3957C37.7289 14.3957 38.8611 15.5217 38.8611 16.9166L38.8608 19.4791H40.4237C41.8261 19.4791 42.9583 20.6048 42.9583 21.9997Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.7939 15.4672H21.7778V17.4152H4.7939L8.05711 20.6225L6.65564 22L1 16.4412L6.65564 10.8824L8.05711 12.2598L4.7939 15.4672Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2061 7.53284L2.22222 7.53284L2.22222 5.58481H19.2061L15.9429 2.37747L17.3444 1L23 6.55882L17.3444 12.1176L15.9429 10.7402L19.2061 7.53284Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 491 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.26935 11.8862C8.0944 9.60933 11.3197 8.13768 12.9195 7.41574C17.5123 5.36097 18.467 5 19.0862 5C19.2152 5 19.5249 5.02777 19.7313 5.19437C19.8861 5.33321 19.9377 5.52757 19.9635 5.66641C19.9893 5.80524 20.0151 6.11068 19.9893 6.36059C19.7313 9.16506 18.6734 16.0235 18.1057 19.1612C17.8735 20.494 17.4091 20.9383 16.9704 20.9938C16.0157 21.0771 15.2675 20.2997 14.3386 19.661C12.8936 18.6336 12.068 17.995 10.6488 16.9954C9.02329 15.8292 10.0812 15.1905 11.0101 14.1631C11.2423 13.8855 15.4997 9.74817 15.5771 9.35943C15.5771 9.3039 15.6029 9.13729 15.4997 9.05399C15.3965 8.97069 15.2675 8.99846 15.1643 9.02623C15.0094 9.05399 12.6872 10.72 8.17181 13.9965C7.50095 14.4963 6.90749 14.7185 6.36564 14.7185C5.77218 14.7185 4.63688 14.3575 3.7854 14.0521C2.7533 13.6911 1.92763 13.4967 2.00503 12.8858C2.08244 12.5526 2.49528 12.2194 3.26935 11.8862Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1005 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 6V18C0 19.6568 1.34315 21 3.00001 21L21 21C22.6569 20.9999 24 19.6568 24 18V6C24 4.34315 22.6569 3 21 3H3C1.34315 3 0 4.34315 0 6ZM2.00017 6V17.9999C2.00017 18.5522 2.44789 18.9999 3.00017 18.9999L8.0494 18.9999C8.02292 18.6694 8.01183 18.3347 8.01336 17.9999C8.01587 17.4477 8.46107 16.9999 9.01336 16.9999C9.56564 16.9999 10.0134 17.4477 10.0134 17.9999V12C10.0134 11.4477 10.4611 11 11.0134 11C11.5656 11 12.0134 11.4477 12.0134 12V16.2222C12.0134 15.6699 12.4611 15.2222 13.0134 15.2222C13.5656 15.2222 14.0134 15.6699 14.0134 16.2222V17C14.0134 16.4477 14.4611 16 15.0134 16C15.5656 16 16.0134 16.4477 16.0134 17V18.2222C16.0134 17.6699 16.4611 17.2222 17.0134 17.2222C17.5656 17.2222 18.0134 17.6699 18.0134 18.2222V19L21.0002 19C21.5525 19 22.0002 18.5523 22.0002 18L22.0002 6C22.0002 5.44771 21.5525 4.99999 21.0002 4.99999H3.00017C2.44789 4.99999 2.00017 5.44771 2.00017 6ZM12.4393 7.20993C11.7636 7.00836 11.0529 6.9512 10.3542 7.04167C9.65536 7.13213 8.98186 7.36851 8.3788 7.73727C7.77563 8.10611 7.25562 8.59969 6.85606 9.18772C6.45638 9.77592 6.18702 10.4443 6.06877 11.1487C5.9505 11.8531 5.98663 12.5742 6.17429 13.2629C6.31949 13.7958 6.86916 14.11 7.40202 13.9648C7.93487 13.8196 8.24913 13.27 8.10394 12.7371C7.9923 12.3274 7.97084 11.8986 8.04116 11.4798C8.11147 11.061 8.27173 10.6629 8.5103 10.3118C8.74882 9.96074 9.05996 9.66504 9.42217 9.44355C9.78434 9.22209 10.1896 9.07966 10.6109 9.02511C11.0323 8.97057 11.4606 9.00507 11.8676 9.12648C12.2746 9.24789 12.6516 9.45363 12.973 9.73081C13.2945 10.008 13.5531 10.3505 13.7308 10.736C13.9084 11.1216 14.0007 11.5408 14.0007 11.9655C14.0007 12.5178 14.4484 12.9655 15.0007 12.9655C15.5529 12.9655 16.0007 12.5178 16.0007 11.9655C16.0007 11.251 15.8454 10.5463 15.5472 9.89905C15.2491 9.25197 14.8157 8.67892 14.2791 8.21622C13.7427 7.75362 13.1151 7.41152 12.4393 7.20993Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,5 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M9.43682 11.7105V18.6579H11.1737V11.7105H9.43682Z" fill="currentColor"/>
|
||||||
|
<path d="M15.2263 18.6579V11.7105H13.4895V18.6579H15.2263Z" fill="currentColor"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.14756 4.47368V3.41228C9.14756 3.03343 9.26054 2.67554 9.45463 2.36316C9.64677 2.05392 9.91189 1.79848 10.2126 1.59804C10.5136 1.39733 10.8556 1.24793 11.2144 1.14885C11.5739 1.04959 11.9529 1 12.3318 1C12.7106 1 13.0897 1.04959 13.4491 1.14885C13.808 1.24793 14.1499 1.39733 14.451 1.59804C14.7517 1.79848 15.0168 2.05392 15.2089 2.36316C15.403 2.67554 15.516 3.03343 15.516 3.41228V4.47368H20.5698L21.4961 9.10526H20.078L18.9201 23H5.74302L4.58513 9.10526H3.16699L4.09331 4.47368H9.14756ZM11.6767 2.82303C11.8792 2.76712 12.1024 2.73684 12.3318 2.73684C12.5612 2.73684 12.7844 2.76712 12.9868 2.82303C13.19 2.87912 13.3586 2.95717 13.4876 3.04318C13.617 3.12946 13.693 3.21441 13.7336 3.27978C13.7723 3.34202 13.7791 3.38564 13.7791 3.41228V4.47368H10.8844V3.41228C10.8844 3.38564 10.8912 3.34202 10.9299 3.27978C10.9705 3.21441 11.0466 3.12946 11.176 3.04318C11.305 2.95717 11.4736 2.87912 11.6767 2.82303ZM7.34115 21.2632L6.32799 9.10526H18.3351L17.322 21.2632H7.34115ZM19.1459 6.21053L19.3775 7.36842H5.2856L5.51718 6.21053H19.1459Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<rect x="3" y="3" width="18" height="18" rx="1" stroke="currentColor" stroke-width="2"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 169 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M14.1058 3.10162C13.9376 3.01939 13.7497 2.98603 13.5635 3.00533C13.3773 3.02463 13.2003 3.09581 13.0525 3.21079L7.32333 7.66663H3.66667C3.22464 7.66663 2.80072 7.84223 2.48816 8.15479C2.17559 8.46735 2 8.89128 2 9.33331V14.6667C2 15.1087 2.17559 15.5326 2.48816 15.8452C2.80072 16.1577 3.22464 16.3333 3.66667 16.3333H7.32333L13.0525 20.7892C13.2003 20.9042 13.3773 20.9754 13.5635 20.9947C13.7498 21.014 13.9377 20.9806 14.1059 20.8984C14.2741 20.8161 14.4158 20.6883 14.515 20.5295C14.6141 20.3707 14.6667 20.1872 14.6667 20V3.99996C14.6667 3.81273 14.6141 3.62927 14.5149 3.47045C14.4158 3.31163 14.274 3.18384 14.1058 3.10162ZM4 9.66664H6.66667V14.3333H4V9.66664ZM12.6667 17.955L8.66667 14.8442V9.15581L12.6667 6.04496V17.955ZM18.6667 12C18.6668 12.8933 18.3408 13.7559 17.75 14.4258C17.6631 14.5243 17.5577 14.6047 17.4397 14.6625C17.3217 14.7202 17.1935 14.7542 17.0625 14.7624C16.9314 14.7706 16.8 14.7529 16.6757 14.7103C16.5515 14.6677 16.4368 14.601 16.3383 14.5142C16.2398 14.4273 16.1594 14.3218 16.1017 14.2039C16.0439 14.0859 16.01 13.9577 16.0018 13.8266C15.9936 13.6955 16.0113 13.5641 16.0539 13.4399C16.0965 13.3156 16.1631 13.201 16.25 13.1025C16.5179 12.7982 16.6657 12.4067 16.6657 12.0012C16.6657 11.5958 16.5179 11.2043 16.25 10.9C16.0835 10.6999 16.0016 10.4427 16.0217 10.1832C16.0418 9.92363 16.1623 9.68215 16.3576 9.51005C16.5529 9.33795 16.8076 9.24881 17.0676 9.26155C17.3277 9.2743 17.5724 9.38793 17.75 9.57831C18.3403 10.2469 18.6662 11.1081 18.6667 12ZM22 12C22.001 13.722 21.3663 15.3838 20.2175 16.6667C20.0407 16.8644 19.7926 16.9837 19.5278 16.9985C19.263 17.0133 19.0031 16.9222 18.8054 16.7454C18.6077 16.5686 18.4884 16.3205 18.4736 16.0557C18.4588 15.7909 18.5499 15.531 18.7267 15.3333C19.5466 14.4166 19.9999 13.2299 19.9999 12C19.9999 10.7701 19.5466 9.58334 18.7267 8.66664C18.6355 8.5694 18.5648 8.45494 18.5185 8.32997C18.4722 8.20499 18.4514 8.07203 18.4573 7.9389C18.4631 7.80577 18.4955 7.67515 18.5526 7.55472C18.6096 7.43428 18.6902 7.32647 18.7895 7.2376C18.8888 7.14874 19.0048 7.08062 19.1308 7.03725C19.2568 6.99388 19.3902 6.97613 19.5232 6.98504C19.6562 6.99396 19.786 7.02936 19.9051 7.08916C20.0242 7.14897 20.1301 7.23197 20.2167 7.3333C21.3657 8.61603 22.0008 10.2778 22 12Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.08512 6H1.78769C1.13128 6 1 6.29684 1 6.62526C1 7.21074 1.7785 10.1147 4.62666 13.9554C6.52499 16.5783 9.19986 18 11.6338 18C13.0943 18 13.2748 17.6842 13.2748 17.1404V15.1579C13.2748 14.5263 13.4127 14.4 13.8755 14.4C14.2168 14.4 14.801 14.5642 16.1637 15.8286C17.7214 17.3274 17.978 18 18.8543 18H21.1517C21.8082 18 22.1364 17.6842 21.9467 17.0608C21.7399 16.44 20.9962 15.5387 20.0089 14.4707C19.4733 13.8619 18.6699 13.2057 18.427 12.8779C18.0857 12.4566 18.1841 12.2691 18.427 11.8945C18.427 11.8945 21.2259 8.10063 21.5187 6.81284C21.6644 6.34421 21.5187 6 20.8229 6H18.5261C17.9419 6 17.6728 6.29684 17.5271 6.62526C17.5271 6.62526 16.3587 9.36505 14.7038 11.1448C14.1682 11.6602 13.9247 11.8244 13.6326 11.8244C13.4869 11.8244 13.2755 11.6602 13.2755 11.1922V6.81284C13.2755 6.25074 13.1055 6 12.6191 6H9.00884C8.64388 6 8.42464 6.26084 8.42464 6.50842C8.42464 7.04084 9.25171 7.164 9.33705 8.66211V11.9179C9.33705 12.6316 9.20314 12.7611 8.91038 12.7611C8.13188 12.7611 6.23749 10.0086 5.11371 6.85958C4.89316 6.24632 4.67195 6 4.08512 6Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M4 16.3312V12.0004C4 9.79137 5.79077 8.00053 7.99985 8.00045L15.9999 8.00015C18.209 8.00007 20 9.79095 20 12.0001V16.3312C20 17.8051 18.8051 19 17.3312 19C16.828 19 16.3281 18.9187 15.8509 18.7592L14.2187 18.2137C12.7787 17.7325 11.2213 17.7325 9.78132 18.2137L8.14914 18.7592C7.6719 18.9187 7.17202 19 6.66883 19C5.19487 19 4 17.8051 4 16.3312Z" fill="currentColor"/>
|
||||||
|
<path d="M7.72361 4.55279C7.893 4.214 8.23926 4 8.61803 4H15.382C15.7607 4 16.107 4.214 16.2764 4.55279L16.6382 5.27639C16.8044 5.60884 16.5627 6 16.191 6H7.80902C7.43733 6 7.19558 5.60884 7.3618 5.27639L7.72361 4.55279Z" fill="currentColor"/>
|
||||||
|
<path d="M0.552787 16.2764C0.214002 16.107 1.13948e-07 15.7607 8.04587e-08 15.382L-1.63914e-07 12.618C-1.97403e-07 12.2393 0.214002 11.893 0.552786 11.7236L1.27639 11.3618C1.60884 11.1956 2 11.4373 2 11.809L2 16.191C2 16.5627 1.60884 16.8044 1.27639 16.6382L0.552787 16.2764Z" fill="currentColor"/>
|
||||||
|
<path d="M23.4472 16.2764C23.786 16.107 24 15.7607 24 15.382L24 12.618C24 12.2393 23.786 11.893 23.4472 11.7236L22.7236 11.3618C22.3912 11.1956 22 11.4373 22 11.809L22 16.191C22 16.5627 22.3912 16.8044 22.7236 16.6382L23.4472 16.2764Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21 12C21 16.9706 16.9706 21 12 21M21 12C21 7.02944 16.9706 3 12 3M21 12H3M12 21C7.02944 21 3 16.9706 3 12M12 21V3M12 21C14.7614 21 17 16.9706 17 12M12 21C9.23858 21 7.00001 16.9706 7.00001 12M3 12C3 7.02944 7.02944 3 12 3M12 3C9.23858 3 7.00001 7.02944 7.00001 12M12 3C14.7614 3 17 7.02944 17 12M17 12H7.00001" stroke="currentColor" stroke-width="2" stroke-linecap="square"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 466 B |
@@ -0,0 +1,3 @@
|
|||||||
|
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.814 5.42292C20.6746 5.65563 21.3522 6.34144 21.5822 7.21213C22 8.79042 22 12.0833 22 12.0833C22 12.0833 22 15.3763 21.5822 16.9545C21.3522 17.8251 20.6746 18.511 19.814 18.7436C18.2543 19.1667 12 19.1667 12 19.1667C12 19.1667 5.74586 19.1667 4.18612 18.7436C3.32566 18.511 2.64791 17.8251 2.41794 16.9545C2 15.3763 2 12.0833 2 12.0833C2 12.0833 2 8.79042 2.41794 7.21213C2.64791 6.34144 3.32566 5.65563 4.18612 5.42292C5.74586 5 12 5 12 5C12 5 18.2543 5 19.814 5.42292ZM10.3333 9.16658V14.9999L15.3333 12.0833L10.3333 9.16658Z" fill="currentColor"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 683 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 301 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 165 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 340 KiB |
|
After Width: | Height: | Size: 272 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 54 KiB |