feat ui: finish cards, all trigger, all icons
|
|
@ -1,40 +1,45 @@
|
|||
import { Segmented } from 'antd';
|
||||
import { Angry, ArrowDownUp, Mouse, MousePointerClick, Unlink } from 'lucide-react';
|
||||
import {
|
||||
Angry,
|
||||
ArrowDownUp,
|
||||
Mouse,
|
||||
MousePointerClick,
|
||||
Unlink,
|
||||
} from 'lucide-react';
|
||||
import React from 'react';
|
||||
|
||||
|
||||
|
||||
import ExCard from './ExCard';
|
||||
|
||||
|
||||
const TYPES = {
|
||||
Frustrations: 0,
|
||||
Errors: 1,
|
||||
Users: 2
|
||||
}
|
||||
Frustrations: 'frustrations',
|
||||
Errors: 'errors',
|
||||
Users: 'users',
|
||||
};
|
||||
|
||||
function ExampleCount() {
|
||||
function ExampleCount({ onCard }: { onCard: (card: string) => void }) {
|
||||
const [type, setType] = React.useState(TYPES.Frustrations);
|
||||
|
||||
const el = {
|
||||
[TYPES.Frustrations]: <Frustrations />,
|
||||
[TYPES.Errors]: <Errors />,
|
||||
[TYPES.Users]: <Users />
|
||||
[TYPES.Users]: <Users />,
|
||||
};
|
||||
return (
|
||||
<ExCard
|
||||
onCard={onCard}
|
||||
type={'count' + `-${type}`}
|
||||
title={
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<div>Sessions by</div>
|
||||
<div className={'font-normal'}>
|
||||
<Segmented
|
||||
options={[
|
||||
{ label: 'Frustrations', value: '0' },
|
||||
{ label: 'Errors', value: '1' },
|
||||
{ label: 'Users', value: '2'}
|
||||
]}
|
||||
onChange={(v) => setType(Number(v))}
|
||||
/>
|
||||
<Segmented
|
||||
options={[
|
||||
{ label: 'Frustrations', value: '0' },
|
||||
{ label: 'Errors', value: '1' },
|
||||
{ label: 'Users', value: '2' },
|
||||
]}
|
||||
onChange={(v) => setType(v)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
|
|
@ -78,7 +83,7 @@ export function Frustrations() {
|
|||
},
|
||||
];
|
||||
|
||||
const lineWidth = 140
|
||||
const lineWidth = 140;
|
||||
return (
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
{rows.map((r) => (
|
||||
|
|
@ -148,7 +153,7 @@ export function Errors() {
|
|||
},
|
||||
];
|
||||
|
||||
const lineWidth = 270
|
||||
const lineWidth = 270;
|
||||
return (
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
{rows.map((r) => (
|
||||
|
|
@ -160,30 +165,30 @@ export function Errors() {
|
|||
<Circle badgeType={1}>{r.icon}</Circle>
|
||||
<div className={'ml-2 flex flex-col gap-0'}>
|
||||
<div>{r.label}</div>
|
||||
<div style={{ display: 'flex' }}>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth * (0.01 * r.progress),
|
||||
background: '#394EFF',
|
||||
}}
|
||||
className={'rounded-l'}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth - lineWidth * (0.01 * r.progress),
|
||||
background: '#E2E4F6',
|
||||
}}
|
||||
className={'rounded-r'}
|
||||
/>
|
||||
<div style={{ display: 'flex' }}>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth * (0.01 * r.progress),
|
||||
background: '#394EFF',
|
||||
}}
|
||||
className={'rounded-l'}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth - lineWidth * (0.01 * r.progress),
|
||||
background: '#E2E4F6',
|
||||
}}
|
||||
className={'rounded-r'}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className={'min-w-8 ml-auto'}>{r.value}</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
export function Users() {
|
||||
|
|
@ -207,8 +212,8 @@ export function Users() {
|
|||
{
|
||||
label: 'maria@mycompany.com',
|
||||
value: '123',
|
||||
}
|
||||
]
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
|
|
@ -226,7 +231,7 @@ export function Users() {
|
|||
</div>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
export function Circle({
|
||||
|
|
@ -234,7 +239,7 @@ export function Circle({
|
|||
badgeType,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
badgeType: 0 | 1 | 2;
|
||||
badgeType: 0 | 1 | 2 | 3;
|
||||
}) {
|
||||
const colors = {
|
||||
// frustrations
|
||||
|
|
@ -243,6 +248,8 @@ export function Circle({
|
|||
1: '#FFF1F0',
|
||||
// users and domains
|
||||
2: '#EBF4F5',
|
||||
// sessions by url
|
||||
3: '#E2E4F6',
|
||||
};
|
||||
|
||||
return (
|
||||
|
|
@ -255,5 +262,4 @@ export function Circle({
|
|||
);
|
||||
}
|
||||
|
||||
|
||||
export default ExampleCount
|
||||
export default ExampleCount;
|
||||
|
|
|
|||
|
|
@ -3,17 +3,21 @@ import React from 'react'
|
|||
function ExCard({
|
||||
title,
|
||||
children,
|
||||
type,
|
||||
onCard,
|
||||
}: {
|
||||
title: React.ReactNode;
|
||||
children: React.ReactNode;
|
||||
type: string;
|
||||
onCard: (card: string) => void;
|
||||
}) {
|
||||
return (
|
||||
<div
|
||||
className={'rounded overflow-hidden border p-4 bg-white'}
|
||||
className={'rounded overflow-hidden border p-4 bg-white hover:border-gray-light hover:shadow'}
|
||||
style={{ width: 400, height: 286 }}
|
||||
>
|
||||
<div className={'font-semibold text-lg'}>{title}</div>
|
||||
<div className={'flex flex-col gap-2 mt-2'}>{children}</div>
|
||||
<div className={'flex flex-col gap-2 mt-2 cursor-pointer'} onClick={() => onCard(type)}>{children}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
|
||||
import ExCard from './ExCard';
|
||||
|
||||
function ExampleFunnel() {
|
||||
function ExampleFunnel({ onCard }: { onCard: (card: string) => void }) {
|
||||
const steps = [
|
||||
{
|
||||
progress: 500,
|
||||
|
|
@ -16,7 +16,11 @@ function ExampleFunnel() {
|
|||
},
|
||||
];
|
||||
return (
|
||||
<ExCard title={'Funnel'}>
|
||||
<ExCard
|
||||
title={'Funnel'}
|
||||
onCard={onCard}
|
||||
type={'funnel'}
|
||||
>
|
||||
<>
|
||||
{steps.map((step, index) => (
|
||||
<div key={index}>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import CustomNode from 'App/components/shared/Insights/SankeyChart/CustomNode';
|
|||
|
||||
import ExCard from './ExCard';
|
||||
|
||||
function ExamplePath() {
|
||||
function ExamplePath({ onCard }: { onCard: (card: string) => void }) {
|
||||
const data = {
|
||||
nodes: [
|
||||
{ idd: 0, name: 'Home' },
|
||||
|
|
@ -30,7 +30,11 @@ function ExamplePath() {
|
|||
],
|
||||
};
|
||||
return (
|
||||
<ExCard title={'Path Finder'}>
|
||||
<ExCard
|
||||
title={'Path Finder'}
|
||||
onCard={onCard}
|
||||
type={'path-finder'}
|
||||
>
|
||||
<ResponsiveContainer width={'100%'} height={230}>
|
||||
<Sankey
|
||||
nodeWidth={6}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
|
||||
import ExCard from './ExCard';
|
||||
|
||||
function PerfBreakdown() {
|
||||
function PerfBreakdown({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [
|
||||
['5K', '1K'],
|
||||
['4K', '750'],
|
||||
|
|
@ -21,7 +21,11 @@ function PerfBreakdown() {
|
|||
];
|
||||
const bgs = ['#E2E4F6', '#A7BFFF', '#394EFF'];
|
||||
return (
|
||||
<ExCard title={'Breakdown'}>
|
||||
<ExCard
|
||||
title={'Breakdown'}
|
||||
onCard={onCard}
|
||||
type={'perf-breakdown'}
|
||||
>
|
||||
<div className={'relative'}>
|
||||
<div className={'flex flex-col gap-4'}>
|
||||
{rows.map((r) => (
|
||||
|
|
|
|||
|
|
@ -0,0 +1,54 @@
|
|||
import React from 'react';
|
||||
|
||||
import { Icon } from 'UI';
|
||||
|
||||
import ExCard from '../ExCard';
|
||||
import ByComponent from './Component';
|
||||
|
||||
function ByBrowser({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [
|
||||
{
|
||||
label: 'Chrome',
|
||||
progress: 85,
|
||||
value: '2.5K',
|
||||
icon: <Icon name={'color/chrome'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Edge',
|
||||
progress: 25,
|
||||
value: '405',
|
||||
icon: <Icon name={'color/edge'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Safari',
|
||||
progress: 5,
|
||||
value: '302',
|
||||
icon: <Icon name={'color/safari'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Firefox',
|
||||
progress: 3,
|
||||
value: '194',
|
||||
icon: <Icon name={'color/firefox'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Opera',
|
||||
progress: 1,
|
||||
value: '57',
|
||||
icon: <Icon name={'color/opera'} size={26} />,
|
||||
},
|
||||
];
|
||||
|
||||
const lineWidth = 200;
|
||||
return (
|
||||
<ByComponent
|
||||
onCard={onCard}
|
||||
type={'sessions-by-browser'}
|
||||
title={'Sessions by Browser'}
|
||||
rows={rows}
|
||||
lineWidth={lineWidth}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default ByBrowser;
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
import React from 'react';
|
||||
|
||||
import { Icon } from 'UI';
|
||||
|
||||
import ByComponent from './Component';
|
||||
|
||||
function ByCountry({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [
|
||||
{
|
||||
label: 'United States',
|
||||
progress: 70,
|
||||
value: '165K',
|
||||
icon: <Icon name={'color/us'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'India',
|
||||
progress: 25,
|
||||
value: '100K',
|
||||
icon: <Icon name={'color/in'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'United Kingdom',
|
||||
progress: 10,
|
||||
value: '50K',
|
||||
icon: <Icon name={'color/gb'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'France',
|
||||
progress: 7,
|
||||
value: '30K',
|
||||
icon: <Icon name={'color/fr'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Germany',
|
||||
progress: 4,
|
||||
value: '20K',
|
||||
icon: <Icon name={'color/de'} size={26} />,
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ByComponent
|
||||
rows={rows}
|
||||
title={'Sessions by Country'}
|
||||
lineWidth={180}
|
||||
onCard={onCard}
|
||||
type={'sessions-by-country'}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default ByCountry;
|
||||
|
|
@ -0,0 +1,53 @@
|
|||
import React from 'react';
|
||||
|
||||
import { Icon } from 'UI';
|
||||
|
||||
import ByComponent from './Component';
|
||||
|
||||
function BySystem({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [
|
||||
{
|
||||
label: 'Windows',
|
||||
progress: 75,
|
||||
value: '2.5K',
|
||||
icon: <Icon name={'color/microsoft'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'MacOS',
|
||||
progress: 25,
|
||||
value: '405',
|
||||
icon: <Icon name={'color/apple'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Ubuntu',
|
||||
progress: 10,
|
||||
value: '302',
|
||||
icon: <Icon name={'color/ubuntu'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Fedora',
|
||||
progress: 7,
|
||||
value: '302',
|
||||
icon: <Icon name={'color/fedora'} size={26} />,
|
||||
},
|
||||
{
|
||||
label: 'Unknown',
|
||||
progress: 4,
|
||||
value: '194',
|
||||
icon: <Icon name={'question-circle'} size={26} />,
|
||||
},
|
||||
];
|
||||
|
||||
const lineWidth = 200;
|
||||
return (
|
||||
<ByComponent
|
||||
onCard={onCard}
|
||||
type={'sessions-by-system'}
|
||||
title={'Sessions by Operating System'}
|
||||
rows={rows}
|
||||
lineWidth={lineWidth}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default BySystem;
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
import { LinkOutlined } from '@ant-design/icons';
|
||||
import { Segmented } from 'antd';
|
||||
import React from 'react';
|
||||
|
||||
import { Circle } from '../Count';
|
||||
import ExCard from '../ExCard';
|
||||
|
||||
function ByUrl({ onCard }: { onCard: (card: string) => void }) {
|
||||
const [mode, setMode] = React.useState(0);
|
||||
const rows = [
|
||||
{
|
||||
label: '/category/womens/dresses',
|
||||
ptitle: 'Dresses',
|
||||
value: '500',
|
||||
progress: 75,
|
||||
icon: <LinkOutlined size={12} />,
|
||||
},
|
||||
{
|
||||
label: '/search?q=summer+dresses',
|
||||
ptitle: 'Search: summer dresses',
|
||||
value: '306',
|
||||
progress: 60,
|
||||
icon: <LinkOutlined size={12} />,
|
||||
},
|
||||
{
|
||||
label: '/account/orders',
|
||||
ptitle: 'Account: Orders',
|
||||
value: '198',
|
||||
progress: 30,
|
||||
icon: <LinkOutlined size={12} />,
|
||||
},
|
||||
{
|
||||
label: '/checkout/confirmation',
|
||||
ptitle: 'Checkout: Confirmation',
|
||||
value: '47',
|
||||
progress: 15,
|
||||
icon: <LinkOutlined size={12} />,
|
||||
},
|
||||
{
|
||||
label: '/checkout/payment',
|
||||
ptitle: 'Checkout: Payment',
|
||||
value: '5',
|
||||
progress: 5,
|
||||
icon: <LinkOutlined size={12} />,
|
||||
},
|
||||
];
|
||||
|
||||
const lineWidth = 240;
|
||||
return (
|
||||
<ExCard
|
||||
onCard={onCard}
|
||||
type={'sessions-by-url'}
|
||||
title={
|
||||
<div className={'flex gap-2 items-center'}>
|
||||
<div>Sessions by</div>
|
||||
<div className={'font-normal'}><Segmented
|
||||
options={[
|
||||
{ label: 'URL', value: '0' },
|
||||
{ label: 'Page Title', value: '1' },
|
||||
]}
|
||||
onChange={(v) => setMode(Number(v))}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
{rows.map((r) => (
|
||||
<div
|
||||
className={
|
||||
'flex items-center gap-2 border-b border-dotted last:border-0 py-2 first:pt-0 last:pb-0'
|
||||
}
|
||||
>
|
||||
<Circle badgeType={1}>{r.icon}</Circle>
|
||||
<div className={'ml-2 flex flex-col gap-0'}>
|
||||
<div>{mode === 0 ? r.label : r.ptitle}</div>
|
||||
<div style={{ display: 'flex' }}>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth * (0.01 * r.progress),
|
||||
background: '#394EFF',
|
||||
}}
|
||||
className={'rounded-l'}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth - lineWidth * (0.01 * r.progress),
|
||||
background: '#E2E4F6',
|
||||
}}
|
||||
className={'rounded-r'}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className={'min-w-8 ml-auto'}>{r.value}</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</ExCard>
|
||||
);
|
||||
}
|
||||
|
||||
export default ByUrl;
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
import ExCard from '../ExCard'
|
||||
import React from 'react'
|
||||
|
||||
function ByComponent({ title, rows, lineWidth, onCard, type }: {
|
||||
title: string
|
||||
rows: {
|
||||
label: string
|
||||
progress: number
|
||||
value: string
|
||||
icon: React.ReactNode
|
||||
}[]
|
||||
onCard: (card: string) => void
|
||||
type: string
|
||||
lineWidth: number
|
||||
}) {
|
||||
return (
|
||||
<ExCard
|
||||
title={title}
|
||||
onCard={onCard}
|
||||
type={type}
|
||||
>
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
{rows.map((r) => (
|
||||
<div
|
||||
className={
|
||||
'flex items-center gap-2 border-b border-dotted py-2 last:border-0 first:pt-0 last:pb-0'
|
||||
}
|
||||
>
|
||||
<div>{r.icon}</div>
|
||||
<div>{r.label}</div>
|
||||
<div
|
||||
style={{ marginLeft: 'auto', marginRight: 20, display: 'flex' }}
|
||||
>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth * (0.01 * r.progress),
|
||||
background: '#394EFF',
|
||||
}}
|
||||
className={'rounded-l'}
|
||||
/>
|
||||
<div
|
||||
style={{
|
||||
height: 2,
|
||||
width: lineWidth - lineWidth * (0.01 * r.progress),
|
||||
background: '#E2E4F6',
|
||||
}}
|
||||
className={'rounded-r'}
|
||||
/>
|
||||
</div>
|
||||
<div className={'min-w-8'}>{r.value}</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</ExCard>
|
||||
)
|
||||
}
|
||||
|
||||
export default ByComponent
|
||||
|
|
@ -2,9 +2,11 @@ import React from 'react'
|
|||
import ExCard from "./ExCard";
|
||||
import { Errors } from "./Count";
|
||||
|
||||
function SessionsByErrors() {
|
||||
function SessionsByErrors({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<ExCard
|
||||
onCard={onCard}
|
||||
type={'sessions-by-errors'}
|
||||
title={'Sessions by Errors'}
|
||||
>
|
||||
<Errors />
|
||||
|
|
|
|||
|
|
@ -2,9 +2,11 @@ import React from 'react'
|
|||
import ExCard from "./ExCard";
|
||||
import { Frustrations } from "./Count";
|
||||
|
||||
function SessionsByIssues() {
|
||||
function SessionsByIssues({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<ExCard
|
||||
onCard={onCard}
|
||||
type={'sessions-by-issues'}
|
||||
title={'Sessions by Issues'}
|
||||
>
|
||||
<Frustrations />
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import React from 'react';
|
|||
import { Circle } from './Count';
|
||||
import ExCard from './ExCard';
|
||||
|
||||
function SlowestDomain() {
|
||||
function SlowestDomain({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [
|
||||
{
|
||||
label: 'kroger.com',
|
||||
|
|
@ -41,7 +41,11 @@ function SlowestDomain() {
|
|||
const lineWidth = 240;
|
||||
|
||||
return (
|
||||
<ExCard title={'Slowest Domain'}>
|
||||
<ExCard
|
||||
type={'slowest'}
|
||||
onCard={onCard}
|
||||
title={'Slowest Domain'}
|
||||
>
|
||||
<div className={'flex gap-1 flex-col'}>
|
||||
{rows.map((r) => (
|
||||
<div
|
||||
|
|
|
|||
|
|
@ -3,13 +3,15 @@ import React from 'react';
|
|||
|
||||
import ExCard from './ExCard';
|
||||
|
||||
function ExampleTrend() {
|
||||
function ExampleTrend({ onCard }: { onCard: (card: string) => void }) {
|
||||
const rows = [50, 40, 30, 20, 10];
|
||||
const months = ['Jan', 'Feb', 'Mar', 'Apr', 'May'];
|
||||
|
||||
const [isMulti, setIsMulti] = React.useState(false);
|
||||
return (
|
||||
<ExCard
|
||||
onCard={onCard}
|
||||
type={'trend' + (isMulti ? '-multi' : '-single')}
|
||||
title={
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<div>Trend</div>
|
||||
|
|
|
|||
|
|
@ -3,116 +3,172 @@ import { Activity, BarChart, TableCellsMerge, TrendingUp } from 'lucide-react';
|
|||
import React from 'react';
|
||||
|
||||
import { Modal } from 'UI';
|
||||
import ExampleCount from "./Examples/Count";
|
||||
|
||||
import ExampleCount from './Examples/Count';
|
||||
import ExampleFunnel from './Examples/Funnel';
|
||||
import ExamplePath from './Examples/Path';
|
||||
import PerfBreakdown from "./Examples/PerfBreakdown";
|
||||
import SessionsByErrors from "./Examples/SessionsByErrors";
|
||||
import SessionsByIssues from "./Examples/SessionsByIssues";
|
||||
import SlowestDomain from "./Examples/SlowestDomain";
|
||||
import PerfBreakdown from './Examples/PerfBreakdown';
|
||||
import ByBrowser from './Examples/SessionsBy/ByBrowser';
|
||||
import ByCountry from './Examples/SessionsBy/ByCountry';
|
||||
import BySystem from './Examples/SessionsBy/BySystem';
|
||||
import ByUrl from './Examples/SessionsBy/ByUrl';
|
||||
import SessionsByErrors from './Examples/SessionsByErrors';
|
||||
import SessionsByIssues from './Examples/SessionsByIssues';
|
||||
import SlowestDomain from './Examples/SlowestDomain';
|
||||
import ExampleTrend from './Examples/Trend';
|
||||
|
||||
function NewDashboardModal(props: { onClose: () => void; open: boolean }) {
|
||||
const initial = 'performance-monitoring' //'product-analytics';
|
||||
const [selected, setSelected] = React.useState(initial);
|
||||
let item;
|
||||
switch (selected) {
|
||||
case 'product-analytics':
|
||||
item = <ProductAnalytics />
|
||||
break;
|
||||
case 'performance-monitoring':
|
||||
item = <PerformanceMonitoring />
|
||||
break;
|
||||
default:
|
||||
item = <div>under construction</div>
|
||||
break;
|
||||
}
|
||||
const [step, setStep] = React.useState(0);
|
||||
|
||||
const onCard = (card: string) => {
|
||||
console.log(card);
|
||||
};
|
||||
return (
|
||||
<Modal onClose={props.onClose} open={props.open} size={'xlarge'}>
|
||||
<Modal.Content className={'bg-[#FAFAFA]'}>
|
||||
<div className={'flex flex-col gap-4'}>
|
||||
<div className={'flex items-center justify-between'}>
|
||||
<div className={'text-2xl leading-4 font-semibold'}>
|
||||
Select your first card type to add to the dashboard
|
||||
</div>
|
||||
<div className={'link'} onClick={props.onClose}>
|
||||
Close
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<Segmented
|
||||
options={[
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<TrendingUp size={16} strokeWidth={1} />
|
||||
<div>Product Analytics</div>
|
||||
</div>
|
||||
),
|
||||
value: 'product-analytics',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<Activity size={16} strokeWidth={1} />
|
||||
<div>Performance Monitoring</div>
|
||||
</div>
|
||||
),
|
||||
value: 'performance-monitoring',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<BarChart size={16} strokeWidth={1} />
|
||||
<div>Web Analytics</div>
|
||||
</div>
|
||||
),
|
||||
value: 'web-analytics',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<TableCellsMerge size={16} strokeWidth={1} />
|
||||
<div>Core Web Vitals</div>
|
||||
</div>
|
||||
),
|
||||
value: 'core-web-vitals',
|
||||
},
|
||||
]}
|
||||
onChange={(v) => setSelected(v)}
|
||||
/>
|
||||
|
||||
<div style={{ maxHeight: 'calc(100vh - 210px)'}} className={'mt-2 w-full flex flex-wrap gap-2 overflow-scroll'}>
|
||||
{item}
|
||||
</div>
|
||||
</div>
|
||||
{step === 0 ? (
|
||||
<SelectCard onClose={props.onClose} onCard={onCard} />
|
||||
) : null}
|
||||
</div>
|
||||
</Modal.Content>
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
|
||||
function ProductAnalytics() {
|
||||
function SelectCard({
|
||||
onClose,
|
||||
onCard,
|
||||
}: {
|
||||
onClose: () => void;
|
||||
onCard: (card: string) => void;
|
||||
}) {
|
||||
const initial = 'product-analytics';
|
||||
const [selected, setSelected] = React.useState(initial);
|
||||
let item;
|
||||
switch (selected) {
|
||||
case 'product-analytics':
|
||||
item = <ProductAnalytics onCard={onCard} />;
|
||||
break;
|
||||
case 'performance-monitoring':
|
||||
item = <PerformanceMonitoring onCard={onCard} />;
|
||||
break;
|
||||
case 'web-analytics':
|
||||
item = <WebAnalytics onCard={onCard} />;
|
||||
break;
|
||||
case 'core-web-vitals':
|
||||
item = <CoreWebVitals onCard={onCard} />;
|
||||
break;
|
||||
default:
|
||||
item = <div>under construction</div>;
|
||||
break;
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<ExampleFunnel />
|
||||
<ExamplePath />
|
||||
<ExampleTrend />
|
||||
<ExampleCount />
|
||||
<div className={'flex items-center justify-between'}>
|
||||
<div className={'text-2xl leading-4 font-semibold'}>
|
||||
Select your first card type to add to the dashboard
|
||||
</div>
|
||||
<div className={'link'} onClick={onClose}>
|
||||
Close
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<Segmented
|
||||
options={[
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<TrendingUp size={16} strokeWidth={1} />
|
||||
<div>Product Analytics</div>
|
||||
</div>
|
||||
),
|
||||
value: 'product-analytics',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<Activity size={16} strokeWidth={1} />
|
||||
<div>Performance Monitoring</div>
|
||||
</div>
|
||||
),
|
||||
value: 'performance-monitoring',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<BarChart size={16} strokeWidth={1} />
|
||||
<div>Web Analytics</div>
|
||||
</div>
|
||||
),
|
||||
value: 'web-analytics',
|
||||
},
|
||||
{
|
||||
label: (
|
||||
<div className={'flex items-center gap-2'}>
|
||||
<TableCellsMerge size={16} strokeWidth={1} />
|
||||
<div>Core Web Vitals</div>
|
||||
</div>
|
||||
),
|
||||
value: 'core-web-vitals',
|
||||
},
|
||||
]}
|
||||
onChange={(v) => setSelected(v)}
|
||||
/>
|
||||
|
||||
<div
|
||||
style={{ maxHeight: 'calc(100vh - 210px)' }}
|
||||
className={'mt-2 w-full flex flex-wrap gap-2 overflow-scroll'}
|
||||
>
|
||||
{item}
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
function PerformanceMonitoring() {
|
||||
function ProductAnalytics({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<>
|
||||
<PerfBreakdown />
|
||||
<SlowestDomain />
|
||||
<SessionsByErrors />
|
||||
<SessionsByIssues />
|
||||
<ExampleFunnel onCard={onCard} />
|
||||
<ExamplePath onCard={onCard} />
|
||||
<ExampleTrend onCard={onCard} />
|
||||
<ExampleCount onCard={onCard} />
|
||||
</>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
function PerformanceMonitoring({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<>
|
||||
<PerfBreakdown onCard={onCard} />
|
||||
<SlowestDomain onCard={onCard} />
|
||||
<SessionsByErrors onCard={onCard} />
|
||||
<SessionsByIssues onCard={onCard} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function WebAnalytics({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<>
|
||||
<ByBrowser onCard={onCard} />
|
||||
<BySystem onCard={onCard} />
|
||||
<ByCountry onCard={onCard} />
|
||||
<ByUrl onCard={onCard} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
function CoreWebVitals({ onCard }: { onCard: (card: string) => void }) {
|
||||
return (
|
||||
<>
|
||||
<PerfBreakdown onCard={onCard} />
|
||||
<SlowestDomain onCard={onCard} />
|
||||
<SessionsByIssues onCard={onCard} />
|
||||
<SessionsByErrors onCard={onCard} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default NewDashboardModal;
|
||||
|
|
|
|||
23
frontend/app/components/ui/Icons/color_apple.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_apple(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z" fill="#283544"/>
|
||||
<path d="M16.9216 9.34304C16.8643 9.37646 15.5003 10.0819 15.5003 11.6459C15.5646 13.4296 17.2216 14.0551 17.25 14.0551C17.2216 14.0885 16.9998 14.9072 16.343 15.7654C15.8217 16.5047 15.2432 17.25 14.3646 17.25C13.5289 17.25 13.2289 16.7573 12.2646 16.7573C11.229 16.7573 10.936 17.25 10.1431 17.25C9.26458 17.25 8.64315 16.4647 8.09345 15.7324C7.37932 14.7739 6.77233 13.2698 6.7509 11.8256C6.73646 11.0603 6.89392 10.308 7.29361 9.66904C7.85774 8.77699 8.86489 8.17143 9.96473 8.15146C10.8074 8.12498 11.5574 8.6906 12.0717 8.6906C12.5646 8.6906 13.486 8.15146 14.5286 8.15146C14.9786 8.1519 16.1786 8.27822 16.9216 9.34304ZM12.0005 7.99866C11.8505 7.29978 12.2646 6.60089 12.6503 6.15508C13.1432 5.61594 13.9216 5.25 14.5929 5.25C14.6357 5.94889 14.3641 6.63432 13.8787 7.13352C13.4432 7.67266 12.6932 8.07853 12.0005 7.99866Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_apple;
|
||||
35
frontend/app/components/ui/Icons/color_chrome.tsx
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_chrome(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.0005 1.5029C12.0005 1.5029 18.1896 1.22615 21.471 7.42495H11.4739C11.4739 7.42495 9.58722 7.36436 7.9756 9.64499C7.51265 10.6022 7.01502 11.5883 7.57345 13.5316C6.769 12.1735 3.30261 6.15929 3.30261 6.15929C3.30261 6.15929 5.74761 1.74796 12.0004 1.5029H12.0005Z" fill="#EF3F36"/>
|
||||
<path d="M21.1497 17.2392C21.1497 17.2392 18.2938 22.7201 11.2684 22.4491C12.1365 20.9527 16.2683 13.8227 16.2683 13.8227C16.2683 13.8227 17.2666 12.2254 16.089 9.69398C15.4899 8.81461 14.8794 7.89488 12.9119 7.40468C14.4947 7.39036 21.4535 7.40468 21.4535 7.40468C21.4535 7.40468 24.0605 11.7209 21.1497 17.2392Z" fill="#FCD900"/>
|
||||
<path d="M2.89448 17.2825C2.89448 17.2825 -0.441744 12.0784 3.30821 6.15057C4.17339 7.64698 8.30528 14.7771 8.30528 14.7771C8.30528 14.7771 9.19651 16.4378 11.9829 16.6857C13.0449 16.6079 14.1502 16.5415 15.5623 15.0913C14.7838 16.4638 11.2913 22.4608 11.2913 22.4608C11.2913 22.4608 6.2335 22.553 2.8944 17.2825H2.89448Z" fill="#61BC5B"/>
|
||||
<path d="M11.2655 22.501L12.6717 16.654C12.6717 16.654 14.2169 16.5328 15.5132 15.1172C14.7088 16.5272 11.2655 22.501 11.2655 22.501Z" fill="#5AB055"/>
|
||||
<path d="M7.28979 12.0668C7.28979 9.48931 9.38762 7.39899 11.9744 7.39899C14.5611 7.39899 16.6589 9.48931 16.6589 12.0668C16.6589 14.6444 14.5611 16.7346 11.9744 16.7346C9.38762 16.7317 7.28979 14.6444 7.28979 12.0668Z" fill="white"/>
|
||||
<path d="M8.07397 12.0668C8.07397 9.9218 9.81881 8.18033 11.9745 8.18033C14.1272 8.18033 15.8749 9.91893 15.8749 12.0668C15.8749 14.212 14.1302 15.9534 11.9745 15.9534C9.82168 15.9534 8.07397 14.212 8.07397 12.0668Z" fill="url(#paint0_linear_716_8431)"/>
|
||||
<path d="M21.4506 7.40764L15.6607 9.10007C15.6607 9.10007 14.7869 7.82276 12.9091 7.40764C14.5381 7.39896 21.4506 7.40764 21.4506 7.40764Z" fill="#EACA05"/>
|
||||
<path d="M7.46063 13.3183C6.64747 11.9141 3.30261 6.15927 3.30261 6.15927L7.59079 10.386C7.59079 10.386 7.15093 11.2885 7.31593 12.5801L7.46055 13.3183H7.46063Z" fill="#DF3A32"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8431" x1="11.9743" y1="8.23521" x2="11.9743" y2="15.7195" gradientUnits="userSpaceOnUse">
|
||||
<stop stopColor="#86BBE5"/>
|
||||
<stop offset="1" stopColor="#1072BA"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_chrome;
|
||||
32
frontend/app/components/ui/Icons/color_de.tsx
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_de(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clipPath="url(#clip0_475_20186)">
|
||||
<rect width="24" height="24" rx="12" fill="#F6F8D5"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 16H28V24H-4V16Z" fill="#FFD018"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 8H28V16H-4V8Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0H28V8H-4V0Z" fill="#272727"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20186">
|
||||
<rect width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_de;
|
||||
48
frontend/app/components/ui/Icons/color_edge.tsx
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_edge(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.6938 11.9045C14.6938 9.9 12.6106 6.43977 7.91733 6.43977C3.22406 6.43977 1.5 10.3534 1.5 12.0239C1.5 6.05795 6.36089 1.5 12.1317 1.5C17.9025 1.5 22.5 5.81932 22.5 10.2102C22.5 14.1239 19.5547 15.4841 17.1602 15.4841C15.5798 15.4841 13.7839 14.9591 13.7839 14.1239C13.7839 13.4795 14.6938 13.4795 14.6938 11.9045Z" fill="url(#paint0_linear_716_8450)"/>
|
||||
<path d="M7.91733 6.43976C12.6106 6.43976 14.6938 9.89999 14.6938 11.9045C14.6938 11.9201 14.6938 11.9355 14.6936 11.9508C14.6699 10.6159 13.7686 9.35112 11.988 9.35112C9.73717 9.35112 6.69613 12.4057 7.10319 16.2C7.42904 19.2372 10.0006 23.3113 15.5798 21.8795C15.5798 21.8795 14.5262 22.5 11.581 22.5C6.36089 22.5 1.5 17.7273 1.5 12.2625C1.5 12.1177 1.50221 11.9757 1.50666 11.8365C1.62701 10.0787 3.39177 6.43976 7.91733 6.43976Z" fill="url(#paint1_linear_716_8450)"/>
|
||||
<path d="M7.91733 6.43976C12.6106 6.43976 14.6938 9.89999 14.6938 11.9045C14.6938 11.9201 14.6938 11.9355 14.6936 11.9508C14.6699 10.6159 13.7686 9.35112 11.988 9.35112C9.73717 9.35112 6.69613 12.4057 7.10319 16.2C7.42904 19.2372 10.0006 23.3113 15.5798 21.8795C15.5798 21.8795 14.5262 22.5 11.581 22.5C6.36089 22.5 1.5 17.7273 1.5 12.2625C1.5 12.1177 1.50221 11.9757 1.50666 11.8365C1.62701 10.0787 3.39177 6.43976 7.91733 6.43976Z" fill="url(#paint2_radial_716_8450)"/>
|
||||
<path d="M14.9299 22.1247C17.9191 21.3093 20.0546 18.7654 20.4408 18.2522C20.8718 17.6795 20.9915 17.3216 20.8718 17.2022C20.7521 17.0829 20.5844 17.1068 20.1534 17.3216C19.7224 17.5363 17.1842 18.5863 14.2868 17.7034C11.3895 16.8204 9.402 14.5295 9.402 12C9.402 10.0432 11.0782 9.35111 11.9881 9.3511C9.73723 9.3511 6.69618 12.4057 7.10325 16.2C7.42909 19.2372 10.0006 23.3113 15.5799 21.8795C15.5799 21.8795 15.3854 21.9941 14.9299 22.1247Z" fill="#0E458A"/>
|
||||
<path d="M14.9299 22.1247C17.9191 21.3093 20.0546 18.7654 20.4408 18.2522C20.8718 17.6795 20.9915 17.3216 20.8718 17.2022C20.7521 17.0829 20.5844 17.1068 20.1534 17.3216C19.7224 17.5363 17.1842 18.5863 14.2868 17.7034C11.3895 16.8204 9.402 14.5295 9.402 12C9.402 10.0432 11.0782 9.35111 11.9881 9.3511C9.73723 9.3511 6.69618 12.4057 7.10325 16.2C7.42909 19.2372 10.0006 23.3113 15.5799 21.8795C15.5799 21.8795 15.3854 21.9941 14.9299 22.1247Z" fill="url(#paint3_radial_716_8450)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8450" x1="21.2788" y1="13.9091" x2="0.741144" y2="9.05735" gradientUnits="userSpaceOnUse">
|
||||
<stop stopColor="#3BCC50"/>
|
||||
<stop offset="0.489583" stopColor="#2ABAD6"/>
|
||||
<stop offset="1" stopColor="#7DCFE7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_716_8450" x1="8.53991" y1="6.43976" x2="8.53991" y2="22.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stopColor="#035989"/>
|
||||
<stop offset="0.265625" stopColor="#1175B6"/>
|
||||
<stop offset="1" stopColor="#0470CF"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint2_radial_716_8450" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(8.20467 14.2432) rotate(59.2143) scale(7.11114 7.12274)">
|
||||
<stop stopColor="#1284D8"/>
|
||||
<stop offset="0.813899" stopColor="#1170B2" stop-opacity="0.767762"/>
|
||||
<stop offset="1" stopColor="#0E649B" stop-opacity="0.65"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_716_8450" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.9995 16.2) rotate(77.9982) scale(5.75767 6.21618)">
|
||||
<stop stopColor="#104890"/>
|
||||
<stop offset="0.69943" stopColor="#12529E" stop-opacity="0.70624"/>
|
||||
<stop offset="1" stopColor="#0E4584" stop-opacity="0.58"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_edge;
|
||||
24
frontend/app/components/ui/Icons/color_fedora.tsx
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_fedora(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12.0003C22.5 6.20121 17.7989 1.5 11.9998 1.5C6.20334 1.5 1.5041 6.19727 1.5 11.9929V20.1185C1.50312 21.4344 2.57043 22.4998 3.88719 22.4998H12.0041C17.8013 22.4975 22.5 17.7979 22.5 12.0003Z" fill="#294172"/>
|
||||
<path d="M15.0827 3.98611C12.3667 3.98611 10.1571 6.19563 10.1571 8.91168V11.526H7.55362C4.83765 11.526 2.62805 13.7357 2.62805 16.4517C2.62805 19.1676 4.83765 21.3772 7.55362 21.3772C10.2696 21.3772 12.4792 19.1676 12.4792 16.4517V13.8372H15.0827C17.7987 13.8372 20.0083 11.6277 20.0083 8.91168C20.0083 6.19563 17.7987 3.98611 15.0827 3.98611ZM10.1753 16.4517C10.1753 17.8972 8.99926 19.0733 7.55362 19.0733C6.10798 19.0733 4.9319 17.8972 4.9319 16.4517C4.9319 15.006 6.10798 13.8299 7.55362 13.8299H10.1571V13.8372H10.1753V16.4517ZM15.0827 11.5334H12.4792V11.526H12.4611V8.91168C12.4611 7.46604 13.6371 6.28996 15.0827 6.28996C16.5282 6.28996 17.7044 7.46604 17.7044 8.91168C17.7044 10.3573 16.5282 11.5334 15.0827 11.5334Z" fill="#3C6EB4"/>
|
||||
<path d="M16.1714 4.13546C15.7892 4.03555 15.4956 3.98895 15.0828 3.98895C12.3612 3.98895 10.1548 6.19551 10.1548 8.9169V11.5289H8.09085C7.44731 11.5289 6.92723 12.0347 6.92764 12.677C6.92764 13.3154 7.44198 13.8233 8.07871 13.8233L9.7875 13.8236C9.99036 13.8236 10.1549 13.9877 10.1549 14.1902V16.4504C10.1524 17.8852 8.98852 19.0474 7.55371 19.0474C7.06767 19.0474 6.94733 18.9838 6.61552 18.9838C5.9185 18.9838 5.45215 19.451 5.45215 20.0935C5.45231 20.625 5.90775 21.0819 6.46507 21.2277C6.84734 21.3277 7.14084 21.3743 7.55371 21.3743C10.2753 21.3743 12.4817 19.1678 12.4817 16.4463V13.8343H14.5456C15.1892 13.8343 15.7093 13.3286 15.7088 12.6862C15.7088 12.0478 15.1945 11.54 14.5578 11.54L12.849 11.5397C12.7516 11.5398 12.6583 11.5012 12.5894 11.4324C12.5204 11.3637 12.4817 11.2703 12.4816 11.173V8.9128C12.4841 7.47799 13.648 6.31577 15.0828 6.31577C15.5688 6.31577 15.6892 6.37951 16.021 6.37951C16.718 6.37951 17.1843 5.91218 17.1843 5.26979C17.1842 4.73823 16.7287 4.28131 16.1714 4.13546Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_fedora;
|
||||
125
frontend/app/components/ui/Icons/color_firefox.tsx
Normal file
|
|
@ -0,0 +1,125 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_firefox(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.7429 8.04486C21.2862 6.94305 20.3605 5.75354 19.6338 5.37779C20.2253 6.54011 20.5674 7.70594 20.6982 8.57582C20.6982 8.57582 20.6982 8.58196 20.7004 8.59336C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328L15.2773 0.752629C12.6362 2.30297 11.7402 5.17085 11.658 6.60588C10.6026 6.67821 9.59346 7.06769 8.76227 7.72348C8.67539 7.64986 8.58455 7.58106 8.49015 7.51741C8.25061 6.67703 8.24049 5.78762 8.46084 4.94198C7.38069 5.43523 6.54071 6.21347 5.92998 6.90227H5.92517C5.50825 6.37307 5.53756 4.62761 5.56118 4.26327C5.55637 4.24047 5.25057 4.42242 5.21119 4.45004C4.8433 4.71307 4.4994 5.00828 4.18354 5.3322C3.8241 5.69741 3.49572 6.09207 3.20182 6.51205C2.52564 7.47242 2.0461 8.55759 1.79093 9.70482C1.78612 9.72762 1.78174 9.75129 1.77693 9.77453C1.75724 9.86704 1.68593 10.3314 1.67324 10.4322V10.4554C1.58028 10.9352 1.52238 11.4211 1.5 11.9093V11.9633C1.5 17.7823 6.20735 22.5 12.0137 22.5C17.2141 22.5 21.5316 18.7162 22.3773 13.746C22.3948 13.6114 22.4092 13.4755 22.4249 13.3395C22.6341 11.5323 22.4018 9.63291 21.7429 8.04486ZM9.62455 16.2929C9.67355 16.3161 9.71992 16.342 9.77023 16.3648L9.77723 16.3692C9.72692 16.3446 9.67574 16.3192 9.62499 16.2929H9.62455ZM20.7013 8.59818V8.5881V8.5995V8.59818Z" fill="url(#paint0_linear_716_8611)"/>
|
||||
<path d="M21.7428 8.04487C21.2861 6.94306 20.3604 5.75356 19.6337 5.37781C20.2252 6.54013 20.5673 7.70596 20.6981 8.57583V8.59732C21.6903 11.2929 21.1496 14.034 20.3709 15.7089C19.166 18.3001 16.2493 20.9562 11.6833 20.8269C6.75411 20.6866 2.40857 17.0164 1.59703 12.2132C1.44916 11.4551 1.59703 11.0706 1.6714 10.4554C1.58084 10.9294 1.54628 11.0666 1.50122 11.9093V11.9633C1.50122 17.7823 6.20857 22.5 12.0149 22.5C17.2153 22.5 21.5328 18.7162 22.3785 13.746C22.396 13.6114 22.4104 13.4755 22.4262 13.3395C22.634 11.5323 22.4017 9.63292 21.7428 8.04487Z" fill="url(#paint1_radial_716_8611)"/>
|
||||
<path d="M21.7428 8.04487C21.2861 6.94306 20.3604 5.75356 19.6337 5.37781C20.2252 6.54013 20.5673 7.70596 20.6981 8.57583V8.59732C21.6903 11.2929 21.1496 14.034 20.3709 15.7089C19.166 18.3001 16.2493 20.9562 11.6833 20.8269C6.75411 20.6866 2.40857 17.0164 1.59703 12.2132C1.44916 11.4551 1.59703 11.0706 1.6714 10.4554C1.58084 10.9294 1.54628 11.0666 1.50122 11.9093V11.9633C1.50122 17.7823 6.20857 22.5 12.0149 22.5C17.2153 22.5 21.5328 18.7162 22.3785 13.746C22.396 13.6114 22.4104 13.4755 22.4262 13.3395C22.634 11.5323 22.4017 9.63292 21.7428 8.04487Z" fill="url(#paint2_radial_716_8611)"/>
|
||||
<path d="M16.6336 9.28306C16.6567 9.29928 16.6773 9.3155 16.6992 9.33173C16.4353 8.86218 16.1066 8.43234 15.7227 8.05497C12.4547 4.77978 14.8661 0.953025 15.2725 0.758355L15.2769 0.752655C12.6358 2.303 11.7398 5.17087 11.6576 6.60591C11.7801 6.59758 11.9021 6.58706 12.0268 6.58706C13.9977 6.58706 15.7144 7.67352 16.6336 9.28306Z" fill="url(#paint3_radial_716_8611)"/>
|
||||
<path d="M12.0334 9.93723C12.0163 10.2003 11.0923 11.1035 10.769 11.1035C7.77924 11.1035 7.29407 12.916 7.29407 12.916C7.42531 14.4427 8.48665 15.6997 9.77068 16.3649C9.8293 16.3951 9.88836 16.4223 9.94567 16.4495C10.0485 16.4933 10.1517 16.5372 10.2545 16.5762C10.6949 16.7318 11.156 16.8205 11.6226 16.8392C16.8628 17.0857 17.8786 10.5598 14.0965 8.66486C15.0647 8.49606 16.07 8.88672 16.6313 9.28176C15.7126 7.67222 13.9955 6.58575 12.0246 6.58575C11.8999 6.58575 11.7779 6.59628 11.6554 6.60461C10.6007 6.67784 9.59258 7.06775 8.76227 7.72352C8.92283 7.85988 9.10395 8.04139 9.485 8.41758C10.1998 9.12436 12.0294 9.85174 12.0334 9.93723Z" fill="url(#paint4_radial_716_8611)"/>
|
||||
<path d="M12.0334 9.93723C12.0163 10.2003 11.0923 11.1035 10.769 11.1035C7.77924 11.1035 7.29407 12.916 7.29407 12.916C7.42531 14.4427 8.48665 15.6997 9.77068 16.3649C9.8293 16.3951 9.88836 16.4223 9.94567 16.4495C10.0485 16.4933 10.1517 16.5372 10.2545 16.5762C10.6949 16.7318 11.156 16.8205 11.6226 16.8392C16.8628 17.0857 17.8786 10.5598 14.0965 8.66486C15.0647 8.49606 16.07 8.88672 16.6313 9.28176C15.7126 7.67222 13.9955 6.58575 12.0246 6.58575C11.8999 6.58575 11.7779 6.59628 11.6554 6.60461C10.6007 6.67784 9.59258 7.06775 8.76227 7.72352C8.92283 7.85988 9.10395 8.04139 9.485 8.41758C10.1998 9.12436 12.0294 9.85174 12.0334 9.93723Z" fill="url(#paint5_radial_716_8611)"/>
|
||||
<path d="M8.27355 7.3732C8.35886 7.42844 8.42886 7.47492 8.4923 7.51745C8.25276 6.67706 8.24264 5.78766 8.46298 4.94202C7.38283 5.43527 6.54286 6.21351 5.93213 6.90231C5.98156 6.90099 7.50664 6.87337 8.27355 7.3732Z" fill="url(#paint6_radial_716_8611)"/>
|
||||
<path d="M1.5974 12.2132C2.40893 17.0163 6.75448 20.6866 11.6871 20.8269C16.2532 20.9562 19.1681 18.3001 20.3747 15.7089C21.1535 14.0336 21.6942 11.2929 20.702 8.59729V8.57713C20.702 8.57976 20.702 8.58326 20.7042 8.59466C21.0769 11.0355 19.8384 13.4 17.9021 14.999C17.9001 15.0035 17.8982 15.0081 17.8964 15.0126C14.1231 18.0918 10.5125 16.8703 9.78145 16.3718C9.7307 16.3473 9.67951 16.3218 9.62876 16.2955C7.42865 15.2433 6.51999 13.233 6.71467 11.5103C4.85754 11.5103 4.22406 9.93982 4.22406 9.93982C4.22406 9.93982 5.89176 8.74812 8.08969 9.78461C10.1253 10.7448 12.0371 9.94025 12.0371 9.93982C12.0332 9.85432 10.2036 9.12474 9.49008 8.42016C9.10903 8.04398 8.92791 7.86246 8.76735 7.7261C8.68048 7.65248 8.58964 7.58368 8.49524 7.52003C8.43268 7.47619 8.36399 7.43234 8.27649 7.37578C7.50958 6.87595 5.98451 6.90358 5.9342 6.90489H5.92938C5.51246 6.37569 5.54177 4.63024 5.56539 4.26589C5.56058 4.24309 5.25478 4.42504 5.21541 4.45266C4.84751 4.7157 4.50361 5.0109 4.18775 5.33482C3.82832 5.70003 3.49994 6.09469 3.20603 6.51468C2.52986 7.47505 2.05032 8.56021 1.79514 9.70744C1.78683 9.72761 1.41278 11.3643 1.5974 12.2132Z" fill="url(#paint7_radial_716_8611)"/>
|
||||
<path d="M15.7227 8.05495C16.1065 8.43232 16.4353 8.86215 16.6991 9.3317C16.7538 9.37286 16.8064 9.41676 16.8566 9.46323C19.24 11.6625 17.9932 14.7759 17.8983 14.9995C19.8346 13.4005 21.0731 11.0359 20.7004 8.59511C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328C14.8661 0.952999 12.4546 4.77976 15.7227 8.05495Z" fill="url(#paint8_radial_716_8611)"/>
|
||||
<path d="M16.8557 9.46108C16.8055 9.4146 16.7529 9.3707 16.6982 9.32955C16.6768 9.31332 16.6545 9.2971 16.6326 9.28088C16.0713 8.88628 15.066 8.49518 14.0978 8.66398C17.8794 10.5589 16.864 17.0848 11.6238 16.8384C11.1573 16.8196 10.6962 16.731 10.2558 16.5753C10.153 16.5367 10.0498 16.4942 9.94697 16.4486C9.88747 16.4214 9.82841 16.3942 9.77197 16.364L9.77897 16.3684C10.51 16.8682 14.1206 18.0897 17.8939 15.0092C17.8939 15.0092 17.8961 15.0035 17.8996 14.9956C17.9932 14.7759 19.24 11.6625 16.8557 9.46108Z" fill="url(#paint9_radial_716_8611)"/>
|
||||
<path d="M7.29399 12.916C7.29399 12.916 7.77916 11.1035 10.7689 11.1035C11.0922 11.1035 12.0162 10.1994 12.0333 9.93724C12.0503 9.67505 10.1215 10.7422 8.08584 9.78203C5.88791 8.74554 4.22021 9.93724 4.22021 9.93724C4.22021 9.93724 4.85369 11.5078 6.71082 11.5078C6.51614 13.2304 7.4248 15.2389 9.62492 16.2929C9.67391 16.3162 9.72029 16.3421 9.7706 16.3649C8.48658 15.701 7.42655 14.4427 7.29399 12.916Z" fill="url(#paint10_radial_716_8611)"/>
|
||||
<path d="M21.7429 8.04486C21.2862 6.94305 20.3605 5.75354 19.6338 5.37779C20.2253 6.54011 20.5674 7.70594 20.6982 8.57582C20.6982 8.57582 20.6982 8.58196 20.7004 8.59336C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328L15.2773 0.752629C12.6362 2.30297 11.7402 5.17085 11.658 6.60588C11.7805 6.59755 11.9025 6.58703 12.0272 6.58703C13.9981 6.58703 15.7148 7.6735 16.6339 9.28303C16.0727 8.88843 15.0673 8.49734 14.0992 8.66614C17.8808 10.5611 16.8654 17.0869 11.6252 16.8405C11.1586 16.8218 10.6975 16.7331 10.2572 16.5775C10.1543 16.5389 10.0511 16.4963 9.94829 16.4507C9.88879 16.4236 9.82973 16.3964 9.7733 16.3661L9.7803 16.3705C9.72955 16.346 9.67836 16.3205 9.62761 16.2942C9.67661 16.3175 9.72298 16.3433 9.7733 16.3661C8.48665 15.701 7.42662 14.4427 7.29406 12.916C7.29406 12.916 7.77923 11.1035 10.769 11.1035C11.0923 11.1035 12.0163 10.1994 12.0333 9.93719C12.0294 9.8517 10.1998 9.12212 9.4863 8.41754C9.10525 8.04135 8.92414 7.85984 8.76358 7.72348C8.6767 7.64986 8.58586 7.58106 8.49146 7.51741C8.25193 6.67703 8.2418 5.78762 8.46215 4.94198C7.382 5.43523 6.54202 6.21347 5.93129 6.90227H5.92648C5.50956 6.37307 5.53887 4.62761 5.56249 4.26327C5.55768 4.24047 5.25188 4.42242 5.21251 4.45004C4.84461 4.71307 4.50071 5.00828 4.18485 5.3322C3.82541 5.69741 3.49703 6.09207 3.20313 6.51205C2.52695 7.47242 2.04742 8.55759 1.79224 9.70482C1.78743 9.72762 1.78305 9.75129 1.77824 9.77453C1.75855 9.86704 1.66931 10.3379 1.65706 10.4388C1.65706 10.4313 1.65706 10.4467 1.65706 10.4388C1.57514 10.9253 1.52269 11.4164 1.5 11.9093V11.9633C1.5 17.7823 6.20735 22.5 12.0137 22.5C17.2141 22.5 21.5316 18.7162 22.3773 13.746C22.3948 13.6114 22.4092 13.4755 22.4249 13.3395C22.6341 11.5323 22.4018 9.63291 21.7429 8.04486ZM20.6999 8.5859V8.5973V8.5859Z" fill="url(#paint11_linear_716_8611)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8611" x1="20.3513" y1="4.11945" x2="2.86044" y2="20.9578" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.05" stopColor="#FFF44F"/>
|
||||
<stop offset="0.11" stopColor="#FFE847"/>
|
||||
<stop offset="0.22" stopColor="#FFC830"/>
|
||||
<stop offset="0.37" stopColor="#FF980E"/>
|
||||
<stop offset="0.4" stopColor="#FF8B16"/>
|
||||
<stop offset="0.46" stopColor="#FF672A"/>
|
||||
<stop offset="0.53" stopColor="#FF3647"/>
|
||||
<stop offset="0.7" stopColor="#E31587"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint1_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.5445 3.16409) scale(21.9185 21.9666)">
|
||||
<stop offset="0.13" stopColor="#FFBD4F"/>
|
||||
<stop offset="0.19" stopColor="#FFAC31"/>
|
||||
<stop offset="0.25" stopColor="#FF9D17"/>
|
||||
<stop offset="0.28" stopColor="#FF980E"/>
|
||||
<stop offset="0.4" stopColor="#FF563B"/>
|
||||
<stop offset="0.47" stopColor="#FF3750"/>
|
||||
<stop offset="0.71" stopColor="#F5156C"/>
|
||||
<stop offset="0.78" stopColor="#EB0878"/>
|
||||
<stop offset="0.86" stopColor="#E50080"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.5354 12.1443) scale(21.9185 21.9666)">
|
||||
<stop offset="0.3" stopColor="#960E18"/>
|
||||
<stop offset="0.35" stopColor="#B11927" stop-opacity="0.74"/>
|
||||
<stop offset="0.43" stopColor="#DB293D" stop-opacity="0.34"/>
|
||||
<stop offset="0.5" stopColor="#F5334B" stop-opacity="0.09"/>
|
||||
<stop offset="0.53" stopColor="#FF3750" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.1784 -1.82102) scale(15.879 15.9138)">
|
||||
<stop offset="0.13" stopColor="#FFF44F"/>
|
||||
<stop offset="0.25" stopColor="#FFDC3E"/>
|
||||
<stop offset="0.51" stopColor="#FF9D12"/>
|
||||
<stop offset="0.53" stopColor="#FF980E"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint4_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.11138 17.8823) scale(10.4362 10.4591)">
|
||||
<stop offset="0.35" stopColor="#3A8EE6"/>
|
||||
<stop offset="0.47" stopColor="#5C79F0"/>
|
||||
<stop offset="0.67" stopColor="#9059FF"/>
|
||||
<stop offset="1" stopColor="#C139E6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint5_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.8503 9.53372) rotate(-13.9265) scale(5.52987 6.50889)">
|
||||
<stop offset="0.21" stopColor="#9059FF" stop-opacity="0"/>
|
||||
<stop offset="0.28" stopColor="#8C4FF3" stop-opacity="0.06"/>
|
||||
<stop offset="0.75" stopColor="#7716A8" stop-opacity="0.45"/>
|
||||
<stop offset="0.97" stopColor="#6E008B" stop-opacity="0.6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint6_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.2585 2.2653) scale(7.50813 7.52461)">
|
||||
<stop stopColor="#FFE226"/>
|
||||
<stop offset="0.12" stopColor="#FFDB27"/>
|
||||
<stop offset="0.3" stopColor="#FFC82A"/>
|
||||
<stop offset="0.5" stopColor="#FFA930"/>
|
||||
<stop offset="0.73" stopColor="#FF7E37"/>
|
||||
<stop offset="0.79" stopColor="#FF7139"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint7_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.1605 -2.50722) scale(32.0332 32.1034)">
|
||||
<stop offset="0.11" stopColor="#FFF44F"/>
|
||||
<stop offset="0.46" stopColor="#FF980E"/>
|
||||
<stop offset="0.62" stopColor="#FF5634"/>
|
||||
<stop offset="0.72" stopColor="#FF3647"/>
|
||||
<stop offset="0.9" stopColor="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint8_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.0639 1.00031) rotate(84.2447) scale(23.3997 15.3407)">
|
||||
<stop stopColor="#FFF44F"/>
|
||||
<stop offset="0.06" stopColor="#FFE847"/>
|
||||
<stop offset="0.17" stopColor="#FFC830"/>
|
||||
<stop offset="0.3" stopColor="#FF980E"/>
|
||||
<stop offset="0.36" stopColor="#FF8B16"/>
|
||||
<stop offset="0.45" stopColor="#FF672A"/>
|
||||
<stop offset="0.57" stopColor="#FF3647"/>
|
||||
<stop offset="0.74" stopColor="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint9_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.0818 5.05207) scale(19.9983 20.0422)">
|
||||
<stop offset="0.14" stopColor="#FFF44F"/>
|
||||
<stop offset="0.48" stopColor="#FF980E"/>
|
||||
<stop offset="0.59" stopColor="#FF5634"/>
|
||||
<stop offset="0.66" stopColor="#FF3647"/>
|
||||
<stop offset="0.9" stopColor="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint10_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.3609 6.22535) scale(21.8883 21.9363)">
|
||||
<stop offset="0.09" stopColor="#FFF44F"/>
|
||||
<stop offset="0.23" stopColor="#FFE141"/>
|
||||
<stop offset="0.51" stopColor="#FFAF1E"/>
|
||||
<stop offset="0.63" stopColor="#FF980E"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint11_linear_716_8611" x1="20.1413" y1="4.02914" x2="5.25782" y2="18.8804" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.17" stopColor="#FFF44F" stop-opacity="0.8"/>
|
||||
<stop offset="0.27" stopColor="#FFF44F" stop-opacity="0.63"/>
|
||||
<stop offset="0.49" stopColor="#FFF44F" stop-opacity="0.22"/>
|
||||
<stop offset="0.6" stopColor="#FFF44F" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_firefox;
|
||||
32
frontend/app/components/ui/Icons/color_fr.tsx
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_fr(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clipPath="url(#clip0_475_20176)">
|
||||
<rect y="0.600098" width="24" height="24" rx="12" fill="#FFF8D5"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M18 0.600098H28V24.6001H18V0.600098Z" fill="#F50100"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.600098H8V24.6001H-4V0.600098Z" fill="#2E42A5"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M6 0.600098H18V24.6001H6V0.600098Z" fill="#F7FCFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20176">
|
||||
<rect y="0.600098" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_fr;
|
||||
44
frontend/app/components/ui/Icons/color_gb.tsx
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_gb(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clipPath="url(#clip0_475_20166)">
|
||||
<rect y="0.199951" width="24" height="24" rx="12" fill="#FFF2E8"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="#2E42A5"/>
|
||||
<mask id="mask0_475_20166" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_475_20166)">
|
||||
<path d="M-7.56323 22.4853L-0.521543 25.4634L28.1597 3.43776L31.874 -0.987722L24.344 -1.98308L12.6456 7.50839L3.22956 13.9034L-7.56323 22.4853Z" fill="white"/>
|
||||
<path d="M-6.59924 24.5718L-3.01183 26.3L30.5402 -1.39889H25.5031L-6.59924 24.5718Z" fill="#F50100"/>
|
||||
<path d="M31.5631 22.4853L24.5214 25.4634L-4.15982 3.43776L-7.87415 -0.987722L-0.344074 -1.98308L11.3543 7.50839L20.7703 13.9034L31.5631 22.4853Z" fill="white"/>
|
||||
<path d="M31.3229 23.9827L27.7355 25.7109L13.4487 13.8516L9.21293 12.5266L-8.23151 -0.972633H-3.19436L14.2403 12.2062L18.8713 13.795L31.3229 23.9827Z" fill="#F50100"/>
|
||||
<mask id="path-8-inside-1_475_20166" fill="white">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z"/>
|
||||
</mask>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z" fill="#F50100"/>
|
||||
<path d="M8.22215 -1.80005V-3.80005H6.22215V-1.80005H8.22215ZM15.7777 -1.80005H17.7777V-3.80005H15.7777V-1.80005ZM8.22215 8.19995V10.2H10.2222V8.19995H8.22215ZM-5.97253 8.19995V6.19995H-7.97253V8.19995H-5.97253ZM-5.97253 16.2H-7.97253V18.2H-5.97253V16.2ZM8.22215 16.2H10.2222V14.2H8.22215V16.2ZM8.22215 26.2H6.22215V28.2H8.22215V26.2ZM15.7777 26.2V28.2H17.7777V26.2H15.7777ZM15.7777 16.2V14.2H13.7777V16.2H15.7777ZM30.0275 16.2V18.2H32.0275V16.2H30.0275ZM30.0275 8.19995H32.0275V6.19995H30.0275V8.19995ZM15.7777 8.19995H13.7777V10.2H15.7777V8.19995ZM8.22215 0.199951H15.7777V-3.80005H8.22215V0.199951ZM10.2222 8.19995V-1.80005H6.22215V8.19995H10.2222ZM-5.97253 10.2H8.22215V6.19995H-5.97253V10.2ZM-3.97253 16.2V8.19995H-7.97253V16.2H-3.97253ZM8.22215 14.2H-5.97253V18.2H8.22215V14.2ZM10.2222 26.2V16.2H6.22215V26.2H10.2222ZM15.7777 24.2H8.22215V28.2H15.7777V24.2ZM13.7777 16.2V26.2H17.7777V16.2H13.7777ZM30.0275 14.2H15.7777V18.2H30.0275V14.2ZM28.0275 8.19995V16.2H32.0275V8.19995H28.0275ZM15.7777 10.2H30.0275V6.19995H15.7777V10.2ZM13.7777 -1.80005V8.19995H17.7777V-1.80005H13.7777Z" fill="white" mask="url(#path-8-inside-1_475_20166)"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20166">
|
||||
<rect y="0.199951" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_gb;
|
||||
39
frontend/app/components/ui/Icons/color_in.tsx
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_in(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clipPath="url(#clip0_475_20156)">
|
||||
<rect y="0.800049" width="24" height="24" rx="12" fill="#FFF7E6"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="#F7FCFF"/>
|
||||
<mask id="mask0_475_20156" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_475_20156)">
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.800049V8.80005H28V0.800049H-4Z" fill="#FF8C1A"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 16.8V24.8H28V16.8H-4Z" fill="#5EAA22"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M8 12.8C8 15.0092 9.79086 16.8 12 16.8C14.2091 16.8 16 15.0092 16 12.8C16 10.5909 14.2091 8.80005 12 8.80005C9.79086 8.80005 8 10.5909 8 12.8ZM15 12.8C15 14.4569 13.6569 15.8 12 15.8C10.3431 15.8 9 14.4569 9 12.8C9 11.1432 10.3431 9.80005 12 9.80005C13.6569 9.80005 15 11.1432 15 12.8Z" fill="#3D58DB"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M11.9944 13.6608L11.4236 16.7813L11.7551 13.6263L10.3282 16.4597L11.5351 13.5259L9.36777 15.8424L11.3523 13.3675L8.62014 14.9796L11.2216 13.1641L8.14587 13.9411L11.1534 12.932L7.9834 12.8111L11.1534 12.6902L8.14587 11.6811L11.2216 12.4581L8.62014 10.6426L11.3523 12.2547L9.36777 9.77975L11.5351 12.0963L10.3282 9.16252L11.7551 11.9959L11.4236 8.84088L11.9944 11.9614L12.5653 8.84088L12.2338 11.9959L13.6607 9.16252L12.4538 12.0963L14.6211 9.77975L12.6366 12.2547L15.3688 10.6426L12.7673 12.4581L15.843 11.6811L12.8355 12.6902L16.0055 12.8111L12.8355 12.932L15.843 13.9411L12.7673 13.1641L15.3688 14.9796L12.6366 13.3675L14.6211 15.8424L12.4538 13.5259L13.6607 16.4597L12.2338 13.6263L12.5653 16.7813L11.9944 13.6608Z" fill="#3D58DB"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20156">
|
||||
<rect y="0.800049" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_in;
|
||||
25
frontend/app/components/ui/Icons/color_microsoft.tsx
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_microsoft(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="12.75" y="12.75" width="7.5" height="7.5" fill="#FEBA08"/>
|
||||
<rect x="3.75" y="12.75" width="7.5" height="7.5" fill="#05A6F0"/>
|
||||
<rect x="12.75" y="3.75" width="7.5" height="7.5" fill="#80BC06"/>
|
||||
<rect x="3.75" y="3.75" width="7.5" height="7.5" fill="#F25325"/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_microsoft;
|
||||
37
frontend/app/components/ui/Icons/color_opera.tsx
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_opera(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.54648 17.9145C7.38164 16.5445 6.63516 14.5184 6.58594 12.2461V11.7539C6.63516 9.48164 7.38984 7.45547 8.54648 6.08555C10.0559 4.1332 12.2707 3.25547 14.7727 3.25547C16.3148 3.25547 17.7668 3.36211 18.9973 4.18242C17.1516 2.51719 14.7152 1.5082 12.041 1.5H12C6.20039 1.5 1.5 6.20039 1.5 12C1.5 17.6273 5.92969 22.2293 11.4996 22.4918C11.6637 22.5 11.8359 22.5 12 22.5C14.6906 22.5 17.1434 21.491 18.9973 19.8258C17.7668 20.6461 16.3969 20.6789 14.8547 20.6789C12.3609 20.6871 10.0477 19.875 8.54648 17.9145Z" fill="url(#paint0_linear_716_8633)"/>
|
||||
<path d="M8.54651 6.08554C9.50627 4.94531 10.7531 4.26445 12.1149 4.26445C15.1746 4.26445 17.652 7.72617 17.652 12.0082C17.652 16.2902 15.1746 19.7519 12.1149 19.7519C10.7531 19.7519 9.51448 19.0629 8.54651 17.9309C10.0559 19.8832 12.2953 21.1301 14.7891 21.1301C16.3231 21.1301 17.7668 20.6625 18.9973 19.8422C21.1465 17.9062 22.5 15.109 22.5 12C22.5 8.89101 21.1465 6.09374 18.9973 4.17421C17.7668 3.3539 16.3313 2.88632 14.7891 2.88632C12.2871 2.88632 10.0477 4.12499 8.54651 6.08554Z" fill="url(#paint1_linear_716_8633)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8633" x1="10.2492" y1="1.8423" x2="10.2492" y2="22.1945" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.3" stopColor="#FF1B2D"/>
|
||||
<stop offset="0.4381" stopColor="#FA1A2C"/>
|
||||
<stop offset="0.5939" stopColor="#ED1528"/>
|
||||
<stop offset="0.7581" stopColor="#D60E21"/>
|
||||
<stop offset="0.9272" stopColor="#B70519"/>
|
||||
<stop offset="1" stopColor="#A70014"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_716_8633" x1="15.5219" y1="3.04194" x2="15.5219" y2="21.0423" gradientUnits="userSpaceOnUse">
|
||||
<stop stopColor="#9C0000"/>
|
||||
<stop offset="0.7" stopColor="#FF4B4B"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_opera;
|
||||
172
frontend/app/components/ui/Icons/color_safari.tsx
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_safari(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5Z" fill="url(#paint0_linear_716_8465)"/>
|
||||
<path d="M12.0001 21.7125C17.3642 21.7125 21.7126 17.364 21.7126 12C21.7126 6.63591 17.3642 2.28748 12.0001 2.28748C6.63603 2.28748 2.2876 6.63591 2.2876 12C2.2876 17.364 6.63603 21.7125 12.0001 21.7125Z" fill="url(#paint1_radial_716_8465)"/>
|
||||
<path d="M12.0165 4.65002C11.9508 4.65002 11.8934 4.60082 11.8934 4.5352V2.82073C11.8934 2.7551 11.9508 2.7059 12.0165 2.7059C12.0821 2.7059 12.1395 2.7551 12.1395 2.82073V4.5352C12.1313 4.60082 12.0821 4.65002 12.0165 4.65002Z" fill="#F3F3F3"/>
|
||||
<path d="M12.0165 4.65822C11.9427 4.65822 11.8853 4.60081 11.8853 4.53518V2.82073C11.8853 2.7551 11.9427 2.69769 12.0165 2.69769C12.0903 2.69769 12.1477 2.7551 12.1477 2.82073V4.53518C12.1477 4.60081 12.0821 4.65822 12.0165 4.65822ZM12.0165 2.71404C11.9591 2.71404 11.9017 2.76332 11.9017 2.82073V4.53518C11.9017 4.59259 11.9509 4.64187 12.0165 4.64187C12.0739 4.64187 12.1313 4.59259 12.1313 4.53518V2.82073C12.1232 2.76332 12.0739 2.71404 12.0165 2.71404Z" fill="white"/>
|
||||
<path d="M12.8367 3.73126C12.7711 3.72305 12.7219 3.67385 12.7219 3.60823L12.7793 2.84527C12.7875 2.77973 12.845 2.73044 12.9106 2.73866C12.9762 2.74687 13.0254 2.79616 13.0254 2.86178L12.968 3.62465C12.9598 3.69028 12.9024 3.73948 12.8367 3.73135V3.73126Z" fill="#F3F3F3"/>
|
||||
<path d="M12.8368 3.73947C12.7629 3.73125 12.7137 3.67384 12.7137 3.60822L12.7712 2.84527C12.7794 2.77973 12.8368 2.72232 12.9106 2.73045C12.9844 2.73866 13.0337 2.79616 13.0337 2.8617L12.9762 3.62464C12.968 3.69848 12.9106 3.74768 12.8368 3.73947ZM12.9106 2.74687C12.8532 2.74687 12.7957 2.78794 12.7957 2.84535L12.7383 3.6083C12.7383 3.66563 12.7794 3.71491 12.845 3.72304C12.9024 3.72304 12.9598 3.68206 12.9598 3.62464L13.0172 2.8617C13.0172 2.80428 12.968 2.75509 12.9105 2.74687H12.9106Z" fill="white"/>
|
||||
<path d="M13.4519 4.79769C13.3862 4.78127 13.3452 4.72385 13.3535 4.65823L13.6898 2.97653C13.7062 2.91099 13.7636 2.86992 13.8292 2.88634C13.8949 2.90277 13.9358 2.96018 13.9276 3.02581L13.5913 4.70751C13.5831 4.76484 13.5175 4.80591 13.4518 4.79769H13.4519Z" fill="#F3F3F3"/>
|
||||
<path d="M13.4521 4.80588C13.3782 4.78945 13.3372 4.72383 13.3454 4.6582L13.6817 2.97652C13.6981 2.91098 13.7638 2.8617 13.8375 2.87812C13.9113 2.89455 13.9524 2.96018 13.9442 3.0258L13.6079 4.70748C13.5915 4.77302 13.5258 4.81409 13.4521 4.80588ZM13.8375 2.89455C13.7801 2.88634 13.7227 2.91911 13.7063 2.9766L13.37 4.65829C13.3618 4.71561 13.3946 4.77302 13.4602 4.78954C13.5176 4.79766 13.575 4.76481 13.5915 4.7074L13.9278 3.0258C13.936 2.96018 13.895 2.91098 13.8375 2.89455Z" fill="white"/>
|
||||
<path d="M14.4363 4.05941C14.4207 4.05565 14.4059 4.04884 14.3929 4.03938C14.3799 4.02992 14.3689 4.01799 14.3606 4.00427C14.3522 3.99055 14.3466 3.97532 14.3441 3.95944C14.3416 3.94357 14.3423 3.92736 14.3461 3.91174L14.5512 3.17352C14.5675 3.10789 14.6332 3.07504 14.6988 3.09147C14.7644 3.10789 14.8055 3.17352 14.7891 3.23914L14.584 3.97745C14.5675 4.04299 14.5019 4.07584 14.4363 4.05941Z" fill="#F3F3F3"/>
|
||||
<path d="M14.4364 4.06761C14.3707 4.05118 14.3215 3.97734 14.3462 3.9118L14.5512 3.17342C14.5676 3.10788 14.6414 3.06682 14.707 3.08324C14.7727 3.09967 14.8218 3.17351 14.7973 3.23905L14.5922 3.97743C14.5758 4.04297 14.5102 4.08403 14.4364 4.06761H14.4364ZM14.707 3.10788C14.6496 3.09146 14.584 3.12431 14.5676 3.18172L14.3626 3.91993C14.3462 3.97734 14.379 4.03484 14.4446 4.05118C14.502 4.06761 14.5676 4.03484 14.584 3.97743L14.7891 3.23905C14.7973 3.18172 14.7645 3.12431 14.707 3.1078V3.10788Z" fill="white"/>
|
||||
<path d="M14.8384 5.21602C14.7728 5.19138 14.7482 5.11754 14.7728 5.06013L15.429 3.47693C15.4535 3.41952 15.5275 3.38666 15.5848 3.41952C15.6505 3.44407 15.6751 3.518 15.6505 3.57532L14.9943 5.15853C14.9697 5.21602 14.8958 5.24879 14.8385 5.21602H14.8384Z" fill="#F3F3F3"/>
|
||||
<path d="M14.8383 5.22434C14.8068 5.21232 14.7813 5.18831 14.7674 5.15754C14.7536 5.12678 14.7525 5.09179 14.7644 5.06023L15.4207 3.47701C15.4453 3.41138 15.5192 3.38674 15.593 3.41138C15.6245 3.4234 15.65 3.44741 15.6639 3.47818C15.6777 3.50894 15.6788 3.54393 15.6669 3.57549L15.0106 5.15871C14.9777 5.22434 14.9039 5.25711 14.8383 5.22434ZM15.5848 3.42781C15.5274 3.40325 15.4618 3.42781 15.4371 3.48522L14.7809 5.06845C14.7563 5.12586 14.7891 5.18327 14.8465 5.20791C14.9039 5.23247 14.9695 5.20791 14.9942 5.1505L15.6504 3.56727C15.6669 3.51799 15.6422 3.45237 15.5848 3.42781Z" fill="white"/>
|
||||
<path d="M15.9458 4.69108C15.8883 4.65823 15.8637 4.59261 15.8883 4.5352L16.2328 3.8544C16.2656 3.79691 16.3312 3.77227 16.3969 3.80512C16.4543 3.83797 16.4788 3.9036 16.4543 3.96092L16.1097 4.6418C16.0769 4.69921 16.0113 4.72394 15.9457 4.69108H15.9458Z" fill="#F3F3F3"/>
|
||||
<path d="M15.9459 4.6993C15.8801 4.66644 15.8556 4.59261 15.8884 4.52698L16.2329 3.84618C16.2657 3.78047 16.3396 3.75591 16.4052 3.78868C16.4708 3.82154 16.4954 3.89538 16.4626 3.961L16.1181 4.6418C16.0852 4.70743 16.0114 4.73207 15.9458 4.69921L15.9459 4.6993ZM16.397 3.80511C16.3395 3.78055 16.2739 3.7969 16.2493 3.85431L15.9048 4.53519C15.8802 4.58439 15.9048 4.65002 15.954 4.68287C16.0114 4.70743 16.077 4.69108 16.1017 4.63367L16.4462 3.95279C16.4708 3.90359 16.4462 3.83796 16.397 3.80511Z" fill="white"/>
|
||||
<path d="M16.1098 5.90511C16.0524 5.86413 16.036 5.79029 16.077 5.74109L17.0286 4.32189C17.0613 4.26448 17.1353 4.25626 17.1926 4.28912C17.2501 4.3301 17.2664 4.40394 17.2254 4.45314L16.2738 5.87234C16.2411 5.92976 16.1672 5.94618 16.1098 5.90511Z" fill="#F3F3F3"/>
|
||||
<path d="M16.1099 5.91331C16.0524 5.87233 16.036 5.79028 16.0689 5.73287L17.0204 4.3137C17.0614 4.25629 17.1352 4.23987 17.2009 4.28093C17.2583 4.32192 17.2747 4.40397 17.2419 4.46138L16.2903 5.88054C16.2493 5.93795 16.1673 5.9543 16.1099 5.91331ZM17.1926 4.29736C17.1435 4.26451 17.0696 4.27272 17.0368 4.32192L16.0852 5.74108C16.0524 5.79019 16.0688 5.8559 16.1181 5.88867C16.1673 5.92153 16.2411 5.91331 16.2739 5.86412L17.2255 4.45317C17.2583 4.40397 17.2419 4.33013 17.1926 4.29736Z" fill="white"/>
|
||||
<path d="M17.3074 5.60161C17.2583 5.56054 17.2419 5.48671 17.2829 5.43751L17.7586 4.83867C17.7996 4.78956 17.8734 4.78126 17.9226 4.82233C17.9719 4.86331 17.9883 4.93715 17.9472 4.98635L17.4715 5.58519C17.4305 5.63438 17.3567 5.6426 17.3075 5.60161H17.3074Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2993 5.6098C17.2418 5.56873 17.2336 5.48668 17.2747 5.42927L17.7504 4.8305C17.7914 4.773 17.8734 4.76478 17.9308 4.81407C17.9882 4.85505 17.9965 4.93711 17.9554 4.99452L17.4797 5.59338C17.4387 5.65079 17.3567 5.659 17.2993 5.6098ZM17.9144 4.83041C17.8653 4.78943 17.7996 4.79764 17.7586 4.84684L17.2828 5.44569C17.2501 5.49489 17.2583 5.56052 17.3074 5.60151C17.3567 5.64257 17.4223 5.63436 17.4633 5.58516L17.939 4.98631C17.9719 4.93711 17.9636 4.86327 17.9145 4.8305L17.9144 4.83041Z" fill="white"/>
|
||||
<path d="M17.2254 6.83206C17.1762 6.78286 17.1762 6.70903 17.2254 6.66796L18.4393 5.46217C18.4886 5.41297 18.5624 5.4211 18.6034 5.46217C18.6444 5.50315 18.6526 5.58521 18.6034 5.62619L17.3977 6.83206C17.3484 6.88126 17.2746 6.88126 17.2254 6.83206Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2172 6.84025C17.1936 6.81618 17.1803 6.78378 17.1803 6.75003C17.1803 6.71627 17.1936 6.68387 17.2172 6.6598L18.4313 5.45392C18.4553 5.43024 18.4878 5.41696 18.5215 5.41696C18.5553 5.41696 18.5877 5.43024 18.6118 5.45392C18.6355 5.47799 18.6487 5.51039 18.6487 5.54414C18.6487 5.57789 18.6355 5.6103 18.6118 5.63437L17.3977 6.84016C17.3736 6.86382 17.3412 6.87708 17.3074 6.87708C17.2737 6.87708 17.2413 6.86382 17.2172 6.84016V6.84025ZM18.6036 5.46213C18.5626 5.42107 18.4888 5.42107 18.4478 5.46213L17.2336 6.66793C17.1926 6.709 17.1926 6.78284 17.2336 6.82382C17.2746 6.86489 17.3485 6.86489 17.3895 6.82382L18.6036 5.61802C18.6446 5.57696 18.6446 5.51133 18.6036 5.46213Z" fill="white"/>
|
||||
<path d="M18.4558 6.76641C18.4148 6.71722 18.4148 6.64338 18.464 6.60231L19.0464 6.11018C19.0956 6.0692 19.1694 6.07733 19.2105 6.12661C19.2515 6.17581 19.2515 6.24964 19.2023 6.29062L18.6199 6.78284C18.5706 6.82382 18.4968 6.81561 18.4558 6.76641Z" fill="#F3F3F3"/>
|
||||
<path d="M18.4476 6.77464C18.3984 6.71723 18.4066 6.63518 18.4558 6.59419L19.0382 6.10197C19.0874 6.05277 19.1694 6.06098 19.2186 6.1184C19.2679 6.17581 19.2597 6.25786 19.2105 6.29884L18.628 6.79107C18.5789 6.84018 18.4968 6.83205 18.4477 6.77464H18.4476ZM19.2023 6.12661C19.1612 6.07741 19.0956 6.07741 19.0465 6.11018L18.464 6.60241C18.423 6.64339 18.4148 6.70902 18.4558 6.75821C18.4968 6.80741 18.5625 6.80741 18.6116 6.77464L19.1941 6.28241C19.2433 6.24143 19.2433 6.17581 19.2023 6.12661Z" fill="white"/>
|
||||
<path d="M18.1277 7.9477C18.0868 7.89029 18.1032 7.81645 18.1606 7.7836L19.5878 6.83207C19.6452 6.79921 19.7191 6.81564 19.7519 6.86492C19.7929 6.92233 19.7765 6.99617 19.7191 7.02894L18.2918 7.98047C18.2426 8.01333 18.1687 7.9969 18.1277 7.9477Z" fill="#F3F3F3"/>
|
||||
<path d="M18.1196 7.94768C18.0786 7.89027 18.095 7.80821 18.1524 7.76723L19.5797 6.81564C19.6371 6.77465 19.7192 6.79108 19.7602 6.8567C19.8012 6.91411 19.7847 6.99617 19.7274 7.03706L18.3001 7.98875C18.2426 8.02981 18.1606 8.01339 18.1196 7.94776V7.94768ZM19.7438 6.87313C19.711 6.82385 19.6454 6.80742 19.5962 6.84028L18.1688 7.79179C18.1196 7.82464 18.1031 7.89027 18.1442 7.94768C18.177 7.99687 18.2426 8.0133 18.2919 7.98053L19.7192 7.02894C19.7684 6.98795 19.7766 6.92224 19.7438 6.87313Z" fill="white"/>
|
||||
<path d="M19.3501 8.11997C19.3173 8.06248 19.3337 7.98873 19.3911 7.95587L20.0556 7.57856C20.113 7.54571 20.1868 7.57035 20.2196 7.62767C20.2525 7.68517 20.236 7.75892 20.1786 7.79177L19.5141 8.16917C19.4567 8.20194 19.3829 8.17738 19.35 8.11989L19.3501 8.11997Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3419 8.12814C19.3091 8.06251 19.3255 7.98867 19.3829 7.9559L20.0474 7.57856C20.1048 7.54571 20.1869 7.57035 20.2196 7.62768C20.2525 7.69339 20.2361 7.76723 20.1787 7.8L19.5142 8.17743C19.4568 8.2102 19.3747 8.18555 19.3419 8.12814ZM20.2114 7.63598C20.1787 7.57856 20.113 7.56214 20.0638 7.59491L19.3994 7.97233C19.3502 8.0051 19.3337 8.07073 19.3583 8.11993C19.3911 8.17734 19.4568 8.19377 19.506 8.161L20.1704 7.78358C20.2196 7.75902 20.2361 7.69339 20.2114 7.63598Z" fill="white"/>
|
||||
<path d="M18.8005 9.21099C18.7759 9.14536 18.8005 9.07974 18.8661 9.05518L20.4493 8.39895C20.5067 8.3743 20.5805 8.40707 20.6051 8.46448C20.6297 8.53011 20.6051 8.59573 20.5395 8.62029L18.9564 9.27652C18.8989 9.30117 18.8251 9.27652 18.8005 9.21099Z" fill="#F3F3F3"/>
|
||||
<path d="M18.7922 9.21908C18.7676 9.15354 18.7922 9.07971 18.8578 9.04686L20.441 8.39064C20.4725 8.37875 20.5075 8.37984 20.5383 8.39368C20.569 8.40752 20.593 8.43297 20.605 8.46447C20.6297 8.53009 20.605 8.60393 20.5394 8.6367L18.9563 9.29292C18.9247 9.30484 18.8897 9.30377 18.859 9.28995C18.8282 9.27612 18.8042 9.25067 18.7922 9.21917V9.21908ZM20.5887 8.47268C20.564 8.41528 20.4984 8.39064 20.4492 8.40706L18.866 9.06328C18.8086 9.08784 18.784 9.15354 18.8086 9.21095C18.8332 9.26836 18.8988 9.293 18.9481 9.27658L20.5312 8.62035C20.5887 8.5958 20.6133 8.53009 20.5887 8.47268Z" fill="white"/>
|
||||
<path d="M19.9571 9.62116C19.9326 9.55545 19.9653 9.48991 20.031 9.46527L20.7528 9.22733C20.8102 9.20277 20.884 9.24375 20.9004 9.30116C20.925 9.36679 20.8922 9.43241 20.8266 9.45705L20.1048 9.695C20.0474 9.71955 19.9818 9.68678 19.9571 9.62107V9.62116Z" fill="#F3F3F3"/>
|
||||
<path d="M19.9489 9.62929C19.9243 9.56367 19.9571 9.48983 20.031 9.46527L20.7527 9.22732C20.8183 9.20276 20.8921 9.24375 20.9168 9.30946C20.9413 9.375 20.9086 9.44884 20.8347 9.47348L20.1129 9.71143C20.0473 9.72778 19.9735 9.69492 19.9489 9.62929ZM20.9004 9.31767C20.8839 9.26017 20.8183 9.22732 20.7609 9.24375L20.0391 9.4817C19.9817 9.49804 19.9571 9.56367 19.9735 9.62117C19.9899 9.67858 20.0555 9.71135 20.1129 9.69492L20.8347 9.45706C20.8921 9.4325 20.9168 9.375 20.9004 9.31759V9.31767Z" fill="white"/>
|
||||
<path d="M19.219 10.5973C19.2025 10.5317 19.2435 10.4661 19.3091 10.4578L20.9907 10.1297C21.0562 10.1133 21.1137 10.1625 21.1301 10.2281C21.1465 10.2937 21.1055 10.3594 21.0399 10.3676L19.3583 10.6957C19.2927 10.7039 19.2271 10.6629 19.2189 10.5973H19.219Z" fill="#F3F3F3"/>
|
||||
<path d="M19.2023 10.5974C19.1859 10.5235 19.2351 10.4579 19.3007 10.4415L20.9824 10.1133C21.048 10.0969 21.1136 10.1462 21.13 10.22C21.1464 10.2938 21.0972 10.3594 21.0316 10.3758L19.3499 10.704C19.2843 10.7204 19.2186 10.6712 19.2023 10.5973V10.5974ZM21.1136 10.2281C21.1054 10.1707 21.048 10.1297 20.9906 10.1379L19.3089 10.4661C19.2515 10.4743 19.2105 10.5399 19.2268 10.5974C19.2351 10.6548 19.2925 10.6958 19.35 10.6875L21.0316 10.3594C21.089 10.343 21.13 10.2856 21.1136 10.2281Z" fill="white"/>
|
||||
<path d="M20.2689 11.2289C20.2607 11.1633 20.3016 11.1059 20.3673 11.0977L21.1219 11.0074C21.1875 10.9992 21.245 11.0485 21.2531 11.1141C21.2614 11.1797 21.2204 11.2371 21.1548 11.2454L20.4 11.3356C20.3426 11.3438 20.277 11.2946 20.2688 11.2289H20.2689Z" fill="#F3F3F3"/>
|
||||
<path d="M20.2607 11.2289C20.2524 11.1551 20.3016 11.0895 20.3673 11.0812L21.1219 10.9911C21.1875 10.9829 21.2531 11.032 21.2613 11.1059C21.2695 11.1797 21.2203 11.2453 21.1547 11.2536L20.4 11.3437C20.3345 11.3519 20.2688 11.3027 20.2607 11.2289ZM21.2531 11.1141C21.245 11.0567 21.1876 11.0074 21.1301 11.0156L20.3755 11.1059C20.3181 11.1141 20.277 11.1715 20.2852 11.2289C20.2934 11.2863 20.3508 11.3356 20.4082 11.3274L21.1629 11.2371C21.2203 11.2289 21.2613 11.1715 21.2532 11.1141H21.2531Z" fill="white"/>
|
||||
<path d="M19.3502 12.0246C19.3502 11.959 19.3993 11.9016 19.465 11.9016H21.1795C21.2451 11.9016 21.2943 11.959 21.2943 12.0246C21.2943 12.0903 21.2451 12.1477 21.1795 12.1477H19.465C19.3994 12.1477 19.3502 12.0903 19.3502 12.0246Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3419 12.0246C19.3419 11.9508 19.3993 11.8934 19.465 11.8934H21.1794C21.245 11.8934 21.3025 11.9508 21.3025 12.0246C21.3025 12.0985 21.245 12.1559 21.1794 12.1559H19.465C19.3993 12.1559 19.3419 12.0985 19.3419 12.0246ZM21.286 12.0329C21.286 11.9755 21.2368 11.918 21.1793 11.918H19.465C19.4076 11.918 19.3583 11.9672 19.3583 12.0329C19.3583 12.0903 19.4076 12.1477 19.465 12.1477H21.1795C21.2369 12.1395 21.2861 12.0903 21.2861 12.0329H21.286Z" fill="white"/>
|
||||
<path d="M20.2606 12.8531C20.2687 12.7875 20.318 12.7383 20.3836 12.7383L21.1465 12.7957C21.2121 12.8039 21.2612 12.8613 21.253 12.927C21.2449 12.9926 21.1956 13.0418 21.13 13.0418L20.3672 12.9844C20.3098 12.9762 20.2605 12.9188 20.2605 12.8531H20.2606Z" fill="#F3F3F3"/>
|
||||
<path d="M20.2524 12.8531C20.2607 12.7793 20.3181 12.7301 20.3837 12.7301L21.1467 12.7875C21.2123 12.7957 21.2697 12.8531 21.2615 12.927C21.2533 13.0008 21.1958 13.05 21.1302 13.05L20.3673 12.9926C20.3016 12.9844 20.2524 12.9188 20.2524 12.8531ZM21.2533 12.927C21.2615 12.8696 21.2123 12.8122 21.1548 12.8122L20.3918 12.7547C20.3345 12.7547 20.2852 12.7957 20.277 12.8614C20.2689 12.9188 20.3181 12.9762 20.3755 12.9762L21.1385 13.0336C21.1958 13.0336 21.2451 12.9845 21.2533 12.927Z" fill="white"/>
|
||||
<path d="M19.2025 13.452C19.2189 13.3863 19.2763 13.3453 19.3419 13.3536L21.0236 13.6899C21.0892 13.7063 21.1303 13.7637 21.1138 13.8293C21.0974 13.8949 21.04 13.936 20.9744 13.9278L19.2926 13.5914C19.2352 13.5832 19.1943 13.5176 19.2025 13.452Z" fill="#F3F3F3"/>
|
||||
<path d="M19.194 13.452C19.2105 13.3781 19.2761 13.3372 19.3417 13.3453L21.0235 13.6817C21.0891 13.698 21.1383 13.7636 21.1219 13.8375C21.1055 13.9113 21.0399 13.9524 20.9743 13.9442L19.2924 13.6078C19.2268 13.5914 19.1858 13.5258 19.194 13.4521V13.452ZM21.1055 13.8375C21.1137 13.7801 21.081 13.7227 21.0235 13.7062L19.3416 13.3699C19.2843 13.3618 19.2268 13.3946 19.2104 13.4602C19.2023 13.5176 19.235 13.575 19.2925 13.5914L20.9743 13.9277C21.0399 13.9359 21.0891 13.8949 21.1055 13.8375Z" fill="white"/>
|
||||
<path d="M19.9406 14.4364C19.9444 14.4207 19.9512 14.406 19.9607 14.393C19.9701 14.38 19.982 14.3691 19.9958 14.3607C20.0095 14.3523 20.0247 14.3467 20.0406 14.3442C20.0564 14.3417 20.0726 14.3424 20.0882 14.3462L20.8265 14.5512C20.8921 14.5676 20.9249 14.6333 20.9086 14.6989C20.9048 14.7145 20.898 14.7292 20.8886 14.7422C20.8791 14.7552 20.8672 14.7663 20.8535 14.7746C20.8397 14.783 20.8245 14.7886 20.8086 14.7911C20.7927 14.7936 20.7765 14.7929 20.7609 14.7892L20.0226 14.584C19.957 14.5676 19.9242 14.502 19.9406 14.4364H19.9406Z" fill="#F3F3F3"/>
|
||||
<path d="M19.9325 14.4364C19.949 14.3707 20.0228 14.3215 20.0884 14.3462L20.8267 14.5512C20.8923 14.5676 20.9334 14.6414 20.917 14.707C20.9005 14.7726 20.8267 14.8218 20.7611 14.7973L20.0228 14.5922C19.9572 14.5758 19.9161 14.5102 19.9326 14.4364L19.9325 14.4364ZM20.8923 14.707C20.9088 14.6496 20.8759 14.584 20.8185 14.5676L20.0802 14.3625C20.0228 14.3461 19.9654 14.3789 19.949 14.4446C19.9326 14.502 19.9654 14.5676 20.0228 14.584L20.7611 14.7891C20.8185 14.7973 20.8759 14.7645 20.8923 14.707Z" fill="white"/>
|
||||
<path d="M18.784 14.8301C18.8086 14.7645 18.8825 14.7398 18.9398 14.7645L20.5231 15.4207C20.5805 15.4453 20.6133 15.5192 20.5887 15.5765C20.5641 15.6422 20.4902 15.6668 20.4328 15.6422L18.8497 14.986C18.784 14.9614 18.7594 14.8875 18.784 14.8302V14.8301Z" fill="#F3F3F3"/>
|
||||
<path d="M18.7758 14.8219C18.7878 14.7904 18.8118 14.7649 18.8426 14.7511C18.8734 14.7372 18.9084 14.7361 18.9399 14.7481L20.5231 15.4043C20.5887 15.429 20.6133 15.5028 20.5887 15.5767C20.5767 15.6082 20.5527 15.6337 20.5219 15.6475C20.4912 15.6613 20.4562 15.6624 20.4246 15.6505L18.8414 14.9942C18.7758 14.9614 18.7513 14.8875 18.7758 14.8219ZM20.5723 15.5684C20.5968 15.511 20.5723 15.4454 20.5149 15.4208L18.9317 14.7645C18.8743 14.7399 18.8169 14.7727 18.7922 14.8301C18.7677 14.8875 18.7922 14.9532 18.8497 14.9778L20.4328 15.6341C20.4902 15.6505 20.5558 15.6259 20.5723 15.5684Z" fill="white"/>
|
||||
<path d="M19.3172 15.9375C19.3501 15.8801 19.4156 15.8554 19.473 15.8801L20.1538 16.2247C20.2112 16.2492 20.2358 16.3231 20.2031 16.3887C20.1702 16.4461 20.1046 16.4708 20.0472 16.4461L19.3665 16.1016C19.309 16.0688 19.2844 15.9949 19.3172 15.9375Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3089 15.9293C19.3417 15.8637 19.4156 15.8391 19.4812 15.8719L20.162 16.2165C20.2277 16.2493 20.2523 16.3232 20.2194 16.3887C20.1867 16.4543 20.1127 16.479 20.0472 16.4461L19.3664 16.1016C19.3007 16.0771 19.2761 15.9949 19.3089 15.9293ZM20.1949 16.3805C20.2194 16.3231 20.203 16.2575 20.1456 16.2329L19.4648 15.8883C19.4155 15.8638 19.35 15.8883 19.3171 15.9375C19.2925 15.9949 19.3089 16.0606 19.3663 16.0852L20.0471 16.4298C20.1046 16.4543 20.1702 16.438 20.1949 16.3805Z" fill="white"/>
|
||||
<path d="M18.1113 16.0934C18.1523 16.036 18.218 16.0196 18.2754 16.0605L19.7027 17.0121C19.7601 17.0449 19.7683 17.1188 19.7356 17.1762C19.6945 17.2337 19.6289 17.25 19.5715 17.209L18.1441 16.2574C18.0867 16.2164 18.0703 16.1426 18.1113 16.0934Z" fill="#F3F3F3"/>
|
||||
<path d="M18.103 16.0852C18.1441 16.0278 18.2262 16.0113 18.2836 16.0442L19.711 16.9957C19.7684 17.0367 19.7848 17.1105 19.7437 17.1761C19.7028 17.2336 19.6207 17.25 19.5634 17.2172L18.1359 16.2656C18.0703 16.2246 18.0621 16.1426 18.103 16.0852ZM19.7192 17.1679C19.752 17.1188 19.7437 17.0449 19.6946 17.0121L18.2672 16.0605C18.218 16.0278 18.1523 16.0442 18.1195 16.0934C18.0867 16.1426 18.0949 16.2164 18.144 16.2492L19.5715 17.2008C19.6207 17.2336 19.6863 17.2172 19.7192 17.168V17.1679Z" fill="white"/>
|
||||
<path d="M18.4148 17.2828C18.4558 17.2336 18.5297 17.2172 18.5788 17.2583L19.1777 17.7258C19.2269 17.7668 19.2351 17.8406 19.1941 17.8899C19.1531 17.939 19.0793 17.9555 19.03 17.9145L18.4312 17.4469C18.3821 17.4059 18.3738 17.332 18.4148 17.2828Z" fill="#F3F3F3"/>
|
||||
<path d="M18.4067 17.2747C18.4477 17.2172 18.5298 17.209 18.5872 17.2501L19.186 17.7176C19.2434 17.7586 19.2516 17.8407 19.2106 17.8981C19.1696 17.9556 19.0875 17.9637 19.0302 17.9227L18.4313 17.4551C18.3739 17.4141 18.3658 17.3321 18.4067 17.2747ZM19.1942 17.8899C19.2352 17.8407 19.227 17.775 19.1778 17.734L18.579 17.2664C18.5298 17.2337 18.4641 17.2419 18.4232 17.291C18.3821 17.3403 18.3903 17.4059 18.4395 17.4469L19.0383 17.9145C19.0875 17.9474 19.1531 17.9391 19.1941 17.8899H19.1942Z" fill="white"/>
|
||||
<path d="M17.1926 17.2008C17.2419 17.1516 17.3157 17.1516 17.3567 17.2008L18.5708 18.4066C18.62 18.4559 18.6118 18.5297 18.5708 18.5707C18.5216 18.6199 18.4477 18.6199 18.4067 18.5707L17.1926 17.3649C17.1516 17.3238 17.1516 17.2418 17.1926 17.2008Z" fill="#F3F3F3"/>
|
||||
<path d="M17.1925 17.1926C17.2165 17.1689 17.249 17.1556 17.2827 17.1556C17.3165 17.1556 17.3489 17.1689 17.373 17.1926L18.5871 18.3984C18.6108 18.4224 18.624 18.4549 18.624 18.4886C18.624 18.5224 18.6108 18.5548 18.5871 18.5789C18.563 18.6026 18.5306 18.6158 18.4969 18.6158C18.4631 18.6158 18.4307 18.6026 18.4066 18.5789L17.1925 17.3731C17.1351 17.3238 17.1351 17.2419 17.1925 17.1926ZM18.5707 18.5625C18.6117 18.5215 18.6117 18.4477 18.5707 18.4067L17.3566 17.2008C17.3156 17.1598 17.2418 17.1598 17.2008 17.2008C17.1597 17.2418 17.1597 17.3156 17.2008 17.3566L18.4148 18.5625C18.4558 18.6118 18.5215 18.6118 18.5707 18.5625Z" fill="white"/>
|
||||
<path d="M17.2664 18.423C17.3157 18.382 17.3895 18.382 17.4305 18.4312L17.931 19.0055C17.9719 19.0547 17.9638 19.1286 17.9145 19.1696C17.8654 19.2105 17.7914 19.2105 17.7504 19.1614L17.25 18.5871C17.209 18.5462 17.2172 18.4723 17.2664 18.423Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2583 18.4231C17.3158 18.3739 17.3896 18.3821 17.4387 18.4313L17.9392 19.0055C17.9883 19.0547 17.9801 19.1367 17.9227 19.186C17.8653 19.2352 17.7915 19.227 17.7423 19.1778L17.2418 18.6036C17.2008 18.5462 17.2008 18.4641 17.2583 18.4231H17.2583ZM17.9146 19.1696C17.9637 19.1286 17.9637 19.0629 17.9309 19.0138L17.4305 18.4395C17.3895 18.3985 17.3239 18.3903 17.2747 18.4313C17.2255 18.4723 17.2255 18.538 17.2583 18.5871L17.7587 19.1614C17.7997 19.2106 17.8654 19.2106 17.9145 19.1696H17.9146Z" fill="white"/>
|
||||
<path d="M16.0852 18.1113C16.1426 18.0704 16.2165 18.0868 16.2494 18.1442L17.2009 19.5633C17.2337 19.6207 17.2173 19.6945 17.1681 19.7274C17.1107 19.7684 17.0368 19.7519 17.004 19.6945L16.0524 18.2754C16.0195 18.218 16.0359 18.1441 16.0851 18.1113H16.0852Z" fill="#F3F3F3"/>
|
||||
<path d="M16.0852 18.1031C16.1426 18.0622 16.2246 18.0786 16.2656 18.136L17.2171 19.5551C17.2581 19.6124 17.2417 19.6945 17.1761 19.7354C17.1187 19.7765 17.0367 19.7601 16.9956 19.7027L16.0442 18.2836C16.0032 18.218 16.0196 18.1442 16.0852 18.1032V18.1031ZM17.1679 19.7191C17.2171 19.6862 17.2336 19.6206 17.2007 19.5714L16.2493 18.1523C16.2164 18.1032 16.1508 18.0949 16.0935 18.1278C16.0442 18.1605 16.0278 18.2262 16.0606 18.2754L17.0121 19.6945C17.0449 19.7354 17.1187 19.7519 17.1679 19.719L17.1679 19.7191Z" fill="white"/>
|
||||
<path d="M15.9129 19.3253C15.9704 19.2926 16.0442 19.309 16.077 19.3664L16.4544 20.0309C16.4871 20.0883 16.4625 20.1621 16.4051 20.1949C16.3477 20.2278 16.2738 20.2113 16.2411 20.1539L15.8638 19.4894C15.8391 19.432 15.8555 19.3582 15.9129 19.3254L15.9129 19.3253Z" fill="#F3F3F3"/>
|
||||
<path d="M15.9129 19.3173C15.9785 19.2844 16.0524 19.3008 16.0852 19.3582L16.4625 20.0228C16.4953 20.0802 16.4789 20.1623 16.4134 20.195C16.3477 20.2279 16.2738 20.2115 16.241 20.154L15.8637 19.4895C15.8309 19.4321 15.8473 19.3582 15.9128 19.3173H15.9129ZM16.4051 20.1869C16.4543 20.154 16.4789 20.0884 16.4461 20.0392L16.0688 19.3747C16.036 19.3255 15.9703 19.309 15.9211 19.3336C15.8719 19.3665 15.8473 19.4321 15.8801 19.4813L16.2575 20.1458C16.282 20.195 16.3559 20.2197 16.4051 20.1868V20.1869Z" fill="white"/>
|
||||
<path d="M14.822 18.784C14.8876 18.7595 14.9533 18.784 14.9779 18.8415L15.6424 20.4246C15.6669 20.4821 15.6342 20.5559 15.5767 20.5804C15.5193 20.6051 15.4455 20.5804 15.4209 20.523L14.7565 18.9399C14.7318 18.8824 14.7646 18.8087 14.822 18.784Z" fill="#F3F3F3"/>
|
||||
<path d="M14.8218 18.7758C14.8874 18.7512 14.9613 18.7758 14.9941 18.8414L15.6585 20.4246C15.6704 20.4562 15.6693 20.4911 15.6555 20.5219C15.6417 20.5526 15.6162 20.5766 15.5847 20.5886C15.5191 20.6133 15.4453 20.5886 15.4125 20.523L14.7481 18.9399C14.7234 18.8824 14.7563 18.8086 14.8218 18.7758ZM15.5683 20.5723C15.6257 20.5477 15.6503 20.482 15.6257 20.4328L14.9613 18.8496C14.9367 18.7922 14.8711 18.7676 14.8137 18.7922C14.7563 18.8168 14.7315 18.8824 14.7563 18.9317L15.4206 20.5149C15.4535 20.5723 15.5109 20.5969 15.5683 20.5723Z" fill="white"/>
|
||||
<path d="M14.4199 19.9489C14.4856 19.9243 14.5512 19.9571 14.5758 20.0227L14.8137 20.7446C14.8383 20.802 14.7973 20.8758 14.7399 20.8923C14.6743 20.9168 14.6087 20.884 14.5841 20.8184L14.3462 20.0965C14.3216 20.0391 14.3544 19.9735 14.42 19.9489H14.4199Z" fill="#F3F3F3"/>
|
||||
<path d="M14.4119 19.9407C14.4435 19.9288 14.4785 19.9299 14.5092 19.9438C14.54 19.9576 14.564 19.9831 14.576 20.0145L14.814 20.7364C14.8385 20.802 14.7975 20.8758 14.7318 20.9005C14.7003 20.9124 14.6653 20.9113 14.6345 20.8974C14.6038 20.8836 14.5798 20.8582 14.5678 20.8267L14.3299 20.1048C14.3134 20.0392 14.3463 19.9654 14.4119 19.9407ZM14.7319 20.884C14.7893 20.8676 14.8221 20.802 14.8057 20.7446L14.5678 20.0228C14.5514 19.9654 14.4858 19.9407 14.4284 19.9571C14.3709 19.9736 14.3381 20.0392 14.3545 20.0966L14.5924 20.8184C14.5966 20.8324 14.6037 20.8453 14.6131 20.8563C14.6226 20.8673 14.6343 20.8762 14.6475 20.8824C14.6607 20.8885 14.675 20.8919 14.6895 20.8922C14.7041 20.8925 14.7185 20.8897 14.7319 20.8841V20.884Z" fill="white"/>
|
||||
<path d="M13.452 19.2024C13.5176 19.186 13.5833 19.227 13.5914 19.2926L13.936 20.9744C13.9524 21.0399 13.9032 21.0974 13.8375 21.1137C13.772 21.1302 13.7063 21.0892 13.6981 21.0235L13.3534 19.3418C13.3453 19.2844 13.3863 19.2188 13.4519 19.2023L13.452 19.2024Z" fill="#F3F3F3"/>
|
||||
<path d="M13.4521 19.194C13.5258 19.1777 13.5914 19.2269 13.6079 19.2925L13.9524 20.9743C13.9688 21.0399 13.9195 21.1137 13.8539 21.1219C13.7801 21.1384 13.7145 21.0892 13.6981 21.0235L13.3535 19.3417C13.3372 19.2761 13.3783 19.2104 13.452 19.1941L13.4521 19.194ZM13.8375 21.1055C13.895 21.0974 13.936 21.0399 13.9277 20.9743L13.5832 19.2925C13.5751 19.2351 13.5095 19.1941 13.452 19.2104C13.3946 19.2187 13.3536 19.2761 13.3618 19.3417L13.7063 21.0235C13.7227 21.081 13.7801 21.1137 13.8376 21.1056L13.8375 21.1055Z" fill="white"/>
|
||||
<path d="M12.8286 20.2687C12.8942 20.2605 12.9516 20.3016 12.968 20.3672L13.0664 21.1218C13.0746 21.1875 13.0254 21.2449 12.9597 21.2531C12.8942 21.2613 12.8368 21.2203 12.8204 21.1547L12.722 20.4C12.7138 20.3344 12.7629 20.277 12.8286 20.2687Z" fill="#F3F3F3"/>
|
||||
<path d="M12.8284 20.2606C12.9023 20.2524 12.9679 20.3016 12.9762 20.3673L13.0746 21.1219C13.0828 21.1876 13.0336 21.2532 12.9597 21.2614C12.8859 21.2696 12.8202 21.2204 12.812 21.1547L12.7135 20.4C12.7053 20.3344 12.7545 20.2688 12.8284 20.2606ZM12.9515 21.245C13.0089 21.2368 13.0583 21.1793 13.05 21.1219L12.9515 20.3673C12.9433 20.3098 12.8859 20.2688 12.8284 20.277C12.771 20.2852 12.7217 20.3426 12.7299 20.4L12.8284 21.1548C12.8366 21.2122 12.8941 21.2532 12.9515 21.245Z" fill="white"/>
|
||||
<path d="M11.9836 19.3499C12.0492 19.3499 12.1067 19.3992 12.1067 19.4648V21.1792C12.1067 21.2449 12.0492 21.2942 11.9836 21.2942C11.918 21.2942 11.8606 21.2449 11.8606 21.1792V19.4648C11.8688 19.3992 11.918 19.3499 11.9836 19.3499Z" fill="#F3F3F3"/>
|
||||
<path d="M11.9837 19.3417C12.0575 19.3417 12.1149 19.3991 12.1149 19.4647V21.1792C12.1149 21.2448 12.0575 21.3022 11.9837 21.3022C11.9098 21.3022 11.8524 21.2448 11.8524 21.1792V19.4648C11.8524 19.3992 11.918 19.3417 11.9837 19.3417ZM11.9837 21.2859C12.0411 21.2859 12.0985 21.2367 12.0985 21.1792V19.4648C12.0985 19.4073 12.0493 19.3581 11.9837 19.3581C11.9263 19.3581 11.8688 19.4073 11.8688 19.4648V21.1792C11.877 21.2367 11.9263 21.2859 11.9837 21.2859Z" fill="white"/>
|
||||
<path d="M11.1633 20.2687C11.2289 20.277 11.2781 20.3262 11.2781 20.3918L11.2207 21.1547C11.2126 21.2203 11.1551 21.2695 11.0894 21.2614C11.0238 21.2531 10.9746 21.2039 10.9746 21.1383L11.032 20.3754C11.0402 20.3098 11.0976 20.2605 11.1633 20.2687Z" fill="#F3F3F3"/>
|
||||
<path d="M11.1633 20.2606C11.2371 20.2688 11.2863 20.3262 11.2863 20.3918L11.2289 21.1548C11.2207 21.2204 11.1633 21.2778 11.0895 21.2696C11.0157 21.2614 10.9664 21.204 10.9664 21.1384L11.0238 20.3754C11.0321 20.3016 11.0895 20.2524 11.1633 20.2606ZM11.0895 21.2532C11.1469 21.2532 11.2044 21.2122 11.2044 21.1548L11.2618 20.3918C11.2618 20.3344 11.2207 20.2852 11.1551 20.277C11.0977 20.277 11.0403 20.318 11.0403 20.3755L10.9829 21.1384C10.9829 21.1958 11.0321 21.2451 11.0896 21.2532H11.0895Z" fill="white"/>
|
||||
<path d="M10.548 19.2023C10.6136 19.2187 10.6546 19.2761 10.6464 19.3417L10.3101 21.0235C10.2936 21.0892 10.2362 21.1302 10.1706 21.1137C10.105 21.0974 10.064 21.04 10.0722 20.9743L10.4085 19.2925C10.4167 19.2351 10.4824 19.1941 10.548 19.2023Z" fill="#F3F3F3"/>
|
||||
<path d="M10.5482 19.194C10.622 19.2105 10.663 19.2762 10.6548 19.3417L10.3185 21.0235C10.302 21.0891 10.2364 21.1383 10.1627 21.1219C10.0888 21.1054 10.0478 21.0398 10.056 20.9742L10.3923 19.2925C10.4087 19.2269 10.4744 19.1858 10.5481 19.1941L10.5482 19.194ZM10.1627 21.1054C10.2201 21.1137 10.2775 21.0809 10.2939 21.0235L10.6302 19.3417C10.6384 19.2843 10.6056 19.2269 10.54 19.2105C10.4826 19.2023 10.4252 19.2351 10.4087 19.2926L10.0724 20.9742C10.0642 21.0398 10.1052 21.0891 10.1627 21.1054Z" fill="white"/>
|
||||
<path d="M9.56376 19.9407C9.62948 19.9572 9.67046 20.0228 9.65403 20.0884L9.44894 20.8266C9.4326 20.8922 9.36697 20.925 9.30135 20.9087C9.28571 20.9049 9.27098 20.8981 9.25798 20.8887C9.24498 20.8792 9.23397 20.8673 9.22559 20.8536C9.2172 20.8398 9.21161 20.8246 9.20912 20.8087C9.20663 20.7928 9.20729 20.7766 9.21108 20.761L9.41617 20.0228C9.4326 19.9572 9.49822 19.9244 9.56385 19.9407H9.56376Z" fill="#F3F3F3"/>
|
||||
<path d="M9.56372 19.9326C9.62943 19.9489 9.67863 20.0228 9.65398 20.0884L9.4489 20.8267C9.43256 20.8923 9.35872 20.9334 9.2931 20.9169C9.22748 20.9005 9.17828 20.8267 9.20284 20.7611L9.40792 20.0228C9.42435 19.9572 9.48997 19.9161 9.56372 19.9325V19.9326ZM9.2931 20.8923C9.35051 20.9087 9.41613 20.8759 9.43256 20.8185L9.63756 20.0802C9.65398 20.0228 9.62122 19.9654 9.55559 19.9489C9.49818 19.9325 9.43256 19.9654 9.41613 20.0228L9.21105 20.7611C9.20284 20.8185 9.23561 20.8759 9.2931 20.8923Z" fill="white"/>
|
||||
<path d="M9.16171 18.784C9.22733 18.8086 9.25188 18.8824 9.22733 18.9398L8.5711 20.523C8.54654 20.5805 8.47262 20.6133 8.41529 20.5805C8.3578 20.5477 8.32495 20.4821 8.34959 20.4247L9.00582 18.8414C9.03037 18.784 9.1043 18.7512 9.16162 18.784H9.16171Z" fill="#F3F3F3"/>
|
||||
<path d="M9.16172 18.7758C9.19325 18.7878 9.21872 18.8118 9.23256 18.8426C9.2464 18.8733 9.24748 18.9083 9.23556 18.9399L8.5793 20.523C8.55466 20.5886 8.48082 20.6133 8.40698 20.5886C8.37548 20.5766 8.35002 20.5526 8.33618 20.5219C8.32234 20.4911 8.32125 20.4562 8.33314 20.4246L8.9894 18.8414C9.02226 18.7758 9.0961 18.743 9.16172 18.7758ZM8.41519 20.5723C8.47261 20.5968 8.53823 20.5723 8.56287 20.5149L9.21914 18.9317C9.24369 18.8743 9.21092 18.8168 9.15351 18.7922C9.0961 18.7677 9.03047 18.7922 9.00583 18.8496L8.34957 20.4328C8.33314 20.482 8.35778 20.5476 8.41519 20.5723Z" fill="white"/>
|
||||
<path d="M8.05438 19.3091C8.11179 19.3419 8.13635 19.4075 8.11179 19.4649L7.76725 20.1457C7.73439 20.2031 7.66877 20.2277 7.60314 20.1949C7.54573 20.1621 7.52118 20.0965 7.54573 20.0391L7.89036 19.3584C7.92313 19.3009 7.98876 19.2763 8.05438 19.3091Z" fill="#F3F3F3"/>
|
||||
<path d="M8.05447 19.3008C8.12009 19.3336 8.14465 19.4075 8.11188 19.473L7.76733 20.1539C7.73447 20.2195 7.66064 20.2441 7.5951 20.2113C7.52947 20.1785 7.50483 20.1046 7.53768 20.0391L7.88215 19.3583C7.915 19.2926 7.98884 19.2681 8.05447 19.3008ZM7.60331 20.195C7.66072 20.2195 7.72634 20.2031 7.7509 20.1457L8.09545 19.4649C8.12001 19.4156 8.09545 19.35 8.04625 19.3173C7.98884 19.2927 7.92322 19.309 7.89858 19.3664L7.55403 20.0472C7.52947 20.0965 7.55403 20.1621 7.60331 20.1949V20.195Z" fill="white"/>
|
||||
<path d="M7.8902 18.095C7.94761 18.136 7.96404 18.2099 7.92305 18.2591L6.97146 19.6784C6.93869 19.7357 6.86476 19.7439 6.80744 19.7111C6.75003 19.6701 6.7336 19.5963 6.77458 19.547L7.72618 18.1277C7.75895 18.0704 7.83279 18.0539 7.8902 18.0949V18.095Z" fill="#F3F3F3"/>
|
||||
<path d="M7.89023 18.0867C7.94764 18.1278 7.96407 18.2098 7.93121 18.2673L6.97967 19.6865C6.93868 19.7438 6.86484 19.7602 6.79921 19.7192C6.7418 19.6782 6.72537 19.5962 6.75814 19.5387L7.70978 18.1196C7.75076 18.0622 7.83282 18.0457 7.89023 18.0867ZM6.80743 19.7028C6.85654 19.7356 6.93047 19.7274 6.96324 19.6783L7.91487 18.259C7.94764 18.2098 7.9313 18.1442 7.88202 18.1114C7.83282 18.0786 7.75898 18.0868 7.7262 18.1359L6.77457 19.5469C6.7418 19.5962 6.75814 19.67 6.80743 19.7027V19.7028Z" fill="white"/>
|
||||
<path d="M6.69255 18.3985C6.74183 18.4395 6.75817 18.5133 6.71719 18.5625L6.2414 19.1613C6.20041 19.2105 6.12658 19.2187 6.07738 19.1777C6.02818 19.1368 6.01175 19.0629 6.05282 19.0137L6.52853 18.4148C6.56952 18.3657 6.64335 18.3574 6.69255 18.3985Z" fill="#F3F3F3"/>
|
||||
<path d="M6.70077 18.3903C6.75818 18.4313 6.7664 18.5133 6.72533 18.5707L6.2496 19.1696C6.20862 19.227 6.12656 19.2352 6.06915 19.186C6.01174 19.1449 6.00353 19.063 6.0446 19.0055L6.52032 18.4067C6.5613 18.3492 6.64336 18.3411 6.70077 18.3903ZM6.08558 19.1696C6.13469 19.2106 6.2004 19.2024 6.24139 19.1532L6.7172 18.5543C6.75005 18.5052 6.74176 18.4395 6.69264 18.3985C6.64336 18.3574 6.57773 18.3656 6.53675 18.4149L6.06094 19.0137C6.02817 19.063 6.03638 19.1367 6.0855 19.1696H6.08558Z" fill="white"/>
|
||||
<path d="M6.77452 17.168C6.82371 17.2171 6.82371 17.2911 6.77452 17.3321L5.56054 18.5379C5.51125 18.5871 5.4375 18.5789 5.39644 18.5379C5.35545 18.4969 5.34724 18.4148 5.39644 18.3738L6.6022 17.168C6.65148 17.1188 6.72532 17.1188 6.77452 17.168Z" fill="#F3F3F3"/>
|
||||
<path d="M6.78282 17.1598C6.80645 17.1839 6.8197 17.2163 6.8197 17.25C6.8197 17.2838 6.80645 17.3161 6.78282 17.3402L5.56876 18.5462C5.54469 18.5698 5.51231 18.5831 5.47858 18.5831C5.44485 18.5831 5.41246 18.5698 5.3884 18.5462C5.36471 18.5221 5.35144 18.4897 5.35144 18.4559C5.35144 18.4222 5.36471 18.3898 5.3884 18.3657L6.60238 17.1598C6.62645 17.1362 6.65885 17.1229 6.6926 17.1229C6.72635 17.1229 6.75875 17.1362 6.78282 17.1598ZM5.39653 18.5379C5.43751 18.5789 5.51135 18.5789 5.55233 18.5379L6.76639 17.332C6.80746 17.291 6.80746 17.2172 6.76639 17.1762C6.72541 17.1351 6.65158 17.1351 6.61059 17.1762L5.39653 18.382C5.35554 18.423 5.35554 18.4887 5.39653 18.5378V18.5379Z" fill="white"/>
|
||||
<path d="M5.54415 17.2337C5.58514 17.2828 5.58514 17.3567 5.53594 17.3977L4.95353 17.89C4.90433 17.931 4.83049 17.9228 4.78942 17.8736C4.74844 17.8243 4.74844 17.7505 4.79764 17.7094L5.38005 17.2172C5.42933 17.1762 5.50309 17.1844 5.54415 17.2337Z" fill="#F3F3F3"/>
|
||||
<path d="M5.55224 17.2254C5.60144 17.2829 5.59323 17.3648 5.54403 17.4059L4.96161 17.898C4.91242 17.9473 4.83036 17.9391 4.78117 17.8817C4.73188 17.8242 4.7401 17.7422 4.78929 17.7011L5.37179 17.209C5.42091 17.1598 5.50305 17.168 5.55216 17.2254L5.55224 17.2254ZM4.79751 17.8734C4.83858 17.9226 4.9042 17.9226 4.95332 17.8899L5.53582 17.3977C5.5768 17.3567 5.58501 17.291 5.54403 17.2419C5.50296 17.1926 5.43734 17.1926 5.38822 17.2254L4.80572 17.7176C4.75652 17.7585 4.75652 17.8242 4.79751 17.8734V17.8734Z" fill="white"/>
|
||||
<path d="M5.87235 16.0523C5.91333 16.1098 5.8969 16.1836 5.83949 16.2164L4.41218 17.168C4.35477 17.2008 4.28093 17.1843 4.24816 17.1351C4.20709 17.0777 4.22352 17.0039 4.28093 16.971L5.70833 16.0196C5.75761 15.9868 5.83136 16.0031 5.87243 16.0523H5.87235Z" fill="#F3F3F3"/>
|
||||
<path d="M5.88043 16.0523C5.92141 16.1098 5.90498 16.1918 5.84757 16.2329L4.42028 17.1844C4.36287 17.2254 4.28082 17.2089 4.23984 17.1434C4.19877 17.086 4.21528 17.0039 4.27261 16.9629L5.69998 16.0113C5.75739 15.9704 5.83936 15.9868 5.88034 16.0523H5.88043ZM4.25626 17.127C4.28903 17.1761 4.35466 17.1926 4.40385 17.1598L5.83115 16.2082C5.88043 16.1754 5.89677 16.1098 5.85579 16.0524C5.82302 16.0031 5.75739 15.9868 5.70811 16.0196L4.28082 16.9711C4.23162 17.0121 4.22341 17.0778 4.25626 17.127Z" fill="white"/>
|
||||
<path d="M4.65002 15.8801C4.68288 15.9375 4.66645 16.0113 4.60904 16.0442L3.94456 16.4215C3.88715 16.4542 3.81331 16.4297 3.78054 16.3723C3.74769 16.3149 3.76412 16.241 3.82153 16.2082L4.486 15.8309C4.54341 15.7981 4.61725 15.8227 4.65011 15.8801H4.65002Z" fill="#F3F3F3"/>
|
||||
<path d="M4.6583 15.8719C4.69107 15.9375 4.67464 16.0113 4.61723 16.0442L3.95277 16.4215C3.89536 16.4542 3.81331 16.4297 3.78054 16.3723C3.74769 16.3067 3.76412 16.2328 3.82153 16.2L4.48598 15.8227C4.54339 15.7898 4.62544 15.8145 4.65821 15.8719H4.6583ZM3.78867 16.3641C3.82153 16.4215 3.88715 16.4379 3.93635 16.4051L4.6008 16.0278C4.65 15.9949 4.66643 15.9293 4.64187 15.8801C4.60902 15.8227 4.54339 15.8063 4.49419 15.8391L3.82974 16.2164C3.78054 16.241 3.76411 16.3067 3.78876 16.3641H3.78867Z" fill="white"/>
|
||||
<path d="M5.19952 14.7891C5.22407 14.8547 5.19952 14.9204 5.13389 14.9449L3.55068 15.6012C3.49327 15.6258 3.41943 15.593 3.39487 15.5355C3.37023 15.4699 3.39487 15.4043 3.4605 15.3797L5.04371 14.7235C5.10112 14.6989 5.17496 14.7235 5.19952 14.7891Z" fill="#F3F3F3"/>
|
||||
<path d="M5.20773 14.7809C5.23229 14.8465 5.20773 14.9204 5.14211 14.9531L3.55889 15.6094C3.52735 15.6213 3.49237 15.6202 3.46163 15.6063C3.43089 15.5925 3.40689 15.5671 3.39487 15.5356C3.37023 15.4699 3.39487 15.3961 3.4605 15.3633L5.04371 14.7071C5.07526 14.6952 5.11023 14.6963 5.14097 14.7101C5.17171 14.724 5.19572 14.7494 5.20773 14.7809ZM3.41122 15.5273C3.43586 15.5848 3.50148 15.6095 3.55068 15.593L5.13389 14.9367C5.1913 14.9122 5.21594 14.8465 5.1913 14.7891C5.16675 14.7317 5.10112 14.7071 5.05184 14.7235L3.46863 15.3797C3.41122 15.4043 3.38666 15.4699 3.41122 15.5274V15.5273Z" fill="white"/>
|
||||
<path d="M4.04298 14.3789C4.06753 14.4445 4.03476 14.5102 3.96914 14.5347L3.24726 14.7727C3.18985 14.7972 3.11601 14.7562 3.09958 14.6988C3.07502 14.6332 3.10779 14.5676 3.17342 14.543L3.8953 14.3051C3.95271 14.2805 4.01833 14.3133 4.04298 14.3789Z" fill="#F3F3F3"/>
|
||||
<path d="M4.05106 14.3707C4.07571 14.4364 4.04294 14.5102 3.9691 14.5349L3.24723 14.7727C3.18161 14.7973 3.10777 14.7563 3.08313 14.6907C3.05857 14.625 3.09134 14.5512 3.16527 14.5266L3.88705 14.2887C3.95267 14.2723 4.02651 14.3051 4.05115 14.3708L4.05106 14.3707ZM3.09964 14.6826C3.11607 14.74 3.18169 14.7728 3.2391 14.7564L3.96097 14.5184C4.01838 14.5021 4.04302 14.4365 4.02659 14.379C4.01017 14.3216 3.94454 14.2888 3.88713 14.3052L3.16527 14.5432C3.10785 14.5677 3.08321 14.6251 3.09964 14.6826Z" fill="white"/>
|
||||
<path d="M4.78141 13.4028C4.79775 13.4684 4.75677 13.534 4.69114 13.5422L3.00946 13.8703C2.94384 13.8868 2.88643 13.8375 2.87008 13.7719C2.85366 13.7062 2.89464 13.6406 2.96026 13.6324L4.64195 13.3043C4.70757 13.2961 4.7732 13.3371 4.78132 13.4028H4.78141Z" fill="#F3F3F3"/>
|
||||
<path d="M4.79769 13.4028C4.81412 13.4766 4.76492 13.5422 4.6993 13.5586L3.0176 13.8867C2.95198 13.9031 2.88635 13.8539 2.87001 13.7801C2.85358 13.7063 2.90278 13.6406 2.9684 13.6243L4.6501 13.2962C4.71564 13.2797 4.78135 13.3289 4.79769 13.4028ZM2.88635 13.772C2.89457 13.8293 2.95198 13.8704 3.00939 13.8621L4.69108 13.534C4.74849 13.5258 4.78948 13.4602 4.77313 13.4028C4.76492 13.3454 4.70751 13.3043 4.65001 13.3125L2.9684 13.6406C2.91099 13.6571 2.87001 13.7145 2.88635 13.7719V13.772Z" fill="white"/>
|
||||
<path d="M3.73139 12.7712C3.73952 12.8367 3.69854 12.8943 3.63291 12.9025L2.87826 12.9927C2.81256 13.0009 2.75514 12.9517 2.74701 12.8859C2.7388 12.8204 2.77979 12.763 2.84541 12.7547L3.60014 12.6645C3.65755 12.6563 3.72318 12.7055 3.73139 12.7712Z" fill="#F3F3F3"/>
|
||||
<path d="M3.73961 12.7712C3.74774 12.8449 3.69855 12.9105 3.63292 12.9187L2.87828 13.009C2.81257 13.0172 2.74703 12.968 2.73881 12.8942C2.7306 12.8203 2.7798 12.7547 2.84542 12.7465L3.60015 12.6563C3.66569 12.648 3.7314 12.6973 3.73953 12.7711L3.73961 12.7712ZM2.74694 12.886C2.75515 12.9434 2.81265 12.9926 2.87006 12.9843L3.62471 12.8942C3.68212 12.886 3.72319 12.8286 3.71497 12.7712C3.70676 12.7137 3.64935 12.6645 3.59194 12.6727L2.83721 12.7629C2.7798 12.7712 2.73881 12.8286 2.74694 12.886Z" fill="white"/>
|
||||
<path d="M4.64994 11.9754C4.64994 12.0411 4.60083 12.0985 4.53512 12.0985H2.82075C2.75513 12.0985 2.70593 12.0411 2.70593 11.9754C2.70593 11.9098 2.75513 11.8523 2.82075 11.8523H4.53521C4.60083 11.8523 4.65011 11.9098 4.65011 11.9754L4.64994 11.9754Z" fill="#F3F3F3"/>
|
||||
<path d="M4.65829 11.9754C4.65829 12.0493 4.60079 12.1066 4.53517 12.1066H2.82079C2.75517 12.1066 2.69775 12.0492 2.69775 11.9754C2.69775 11.9016 2.75517 11.8441 2.82079 11.8441H4.53525C4.60088 11.8441 4.65829 11.9016 4.65829 11.9754ZM2.7141 11.9672C2.7141 12.0246 2.76329 12.082 2.82079 12.082H4.53517C4.59258 12.082 4.64186 12.0329 4.64186 11.9672C4.64186 11.9098 4.59258 11.8523 4.53517 11.8523H2.82079C2.76338 11.8605 2.71418 11.9098 2.71418 11.9672H2.7141Z" fill="white"/>
|
||||
<path d="M3.73966 11.1469C3.73136 11.2125 3.68216 11.2617 3.61654 11.2617L2.85358 11.2043C2.78804 11.1961 2.73884 11.1387 2.74697 11.073C2.75519 11.0074 2.80447 10.9582 2.8701 10.9582L3.63296 11.0156C3.69038 11.0238 3.73966 11.0813 3.73966 11.1469Z" fill="#E2E2E2"/>
|
||||
<path d="M3.74763 11.1469C3.73941 11.2207 3.682 11.2699 3.61638 11.2699L2.85344 11.2125C2.7879 11.2043 2.73049 11.1469 2.7387 11.073C2.74683 10.9993 2.80433 10.95 2.86995 10.95L3.6328 11.0074C3.69843 11.0156 3.74763 11.0813 3.74763 11.1469ZM2.74683 11.073C2.7387 11.1305 2.7879 11.188 2.84531 11.188L3.60825 11.2454C3.66557 11.2454 3.71486 11.2043 3.72307 11.1387C3.73128 11.0813 3.682 11.0239 3.62459 11.0239L2.86165 10.9664C2.80433 10.9664 2.75504 11.0156 2.74683 11.0731V11.073Z" fill="white"/>
|
||||
<path d="M4.79753 10.548C4.7811 10.6136 4.72369 10.6547 4.65807 10.6465L2.97646 10.302C2.91083 10.2855 2.86976 10.2281 2.88619 10.1625C2.90262 10.0969 2.96003 10.0558 3.02565 10.0641L4.70735 10.4004C4.76476 10.4168 4.80574 10.4824 4.79753 10.548Z" fill="#F3F3F3"/>
|
||||
<path d="M4.80586 10.548C4.78943 10.6219 4.72381 10.6629 4.65818 10.6547L2.97658 10.3184C2.91096 10.3019 2.86176 10.2363 2.87819 10.1626C2.89453 10.0886 2.96016 10.0477 3.02578 10.0559L4.70746 10.3922C4.77309 10.4086 4.81407 10.4743 4.80586 10.548ZM2.89453 10.1625C2.88632 10.2199 2.91909 10.2773 2.97658 10.2937L4.65827 10.6301C4.71568 10.6383 4.77309 10.6055 4.78952 10.5398C4.79764 10.4824 4.76487 10.425 4.70738 10.4086L3.02586 10.0723C2.96024 10.0641 2.91104 10.1051 2.89462 10.1625H2.89453Z" fill="white"/>
|
||||
<path d="M4.0596 9.56377C4.05584 9.57939 4.04903 9.59412 4.03957 9.60711C4.0301 9.6201 4.01817 9.63109 4.00446 9.63947C3.99074 9.64784 3.97551 9.65343 3.95963 9.65592C3.94375 9.6584 3.92754 9.65773 3.91192 9.65394L3.17361 9.44887C3.10799 9.43244 3.07522 9.36682 3.09156 9.3012C3.09532 9.28558 3.10213 9.27085 3.1116 9.25786C3.12106 9.24487 3.13299 9.23387 3.1467 9.2255C3.16042 9.21712 3.17565 9.21153 3.19153 9.20905C3.20741 9.20657 3.22362 9.20724 3.23924 9.21102L3.97755 9.4161C4.04318 9.43244 4.07595 9.49806 4.0596 9.56368V9.56377Z" fill="#F3F3F3"/>
|
||||
<path d="M4.06748 9.56374C4.05114 9.62928 3.9773 9.67855 3.91167 9.65391L3.17336 9.44884C3.10773 9.43241 3.06666 9.35858 3.08309 9.29304C3.09952 9.22734 3.17336 9.17814 3.23898 9.20278L3.9773 9.40786C4.04293 9.42428 4.084 9.48991 4.06748 9.56365V9.56374ZM3.10773 9.29287C3.0913 9.35037 3.12416 9.41599 3.18157 9.43233L3.91989 9.6374C3.9773 9.65383 4.03471 9.62098 4.05114 9.55536C4.06748 9.49795 4.03471 9.43233 3.9773 9.41599L3.23898 9.21091C3.18157 9.2027 3.12416 9.23547 3.10773 9.29296V9.29287Z" fill="white"/>
|
||||
<path d="M5.21605 9.16998C5.19149 9.23552 5.11757 9.26016 5.06024 9.23552L3.47695 8.57928C3.41953 8.55473 3.38676 8.48089 3.41132 8.42348C3.43596 8.35785 3.5098 8.33321 3.56721 8.35785L5.15042 9.01409C5.21605 9.03865 5.24069 9.11248 5.21605 9.16989V9.16998Z" fill="#F3F3F3"/>
|
||||
<path d="M5.22415 9.17812C5.21214 9.20964 5.18812 9.23511 5.15736 9.24895C5.12659 9.26279 5.0916 9.26387 5.06004 9.25195L3.47682 8.59572C3.41119 8.57116 3.38664 8.49732 3.41119 8.42349C3.42321 8.39197 3.44723 8.36649 3.47799 8.35265C3.50875 8.33881 3.54374 8.33773 3.5753 8.34965L5.15852 9.00589C5.22415 9.03866 5.24871 9.11258 5.22415 9.17812ZM3.42762 8.4317C3.40306 8.48911 3.42762 8.55473 3.48503 8.57929L5.06826 9.23553C5.12567 9.26017 5.18308 9.22731 5.20772 9.1699C5.23228 9.11249 5.20772 9.04687 5.15031 9.02231L3.56709 8.36607C3.50967 8.34965 3.44405 8.37429 3.42762 8.4317Z" fill="white"/>
|
||||
<path d="M4.68284 8.06252C4.65007 8.11994 4.58444 8.14458 4.52703 8.11994L3.84614 7.77545C3.78873 7.75081 3.76409 7.67696 3.79694 7.61133C3.82971 7.55392 3.89534 7.52928 3.95275 7.55392L4.63356 7.89849C4.69105 7.93126 4.71569 8.00519 4.68284 8.06252Z" fill="#F3F3F3"/>
|
||||
<path d="M4.69114 8.07075C4.65828 8.13637 4.58444 8.16102 4.51882 8.12816L3.83802 7.7836C3.77239 7.75083 3.74775 7.67699 3.7806 7.61136C3.81337 7.54574 3.8873 7.5211 3.95284 7.55395L4.63364 7.89851C4.69935 7.92307 4.72391 8.00521 4.69114 8.07075ZM3.80516 7.61958C3.7806 7.67699 3.79703 7.74262 3.85444 7.76726L4.53525 8.11182C4.58453 8.13637 4.65015 8.11182 4.68292 8.06253C4.70748 8.00512 4.69114 7.93949 4.63372 7.91485L3.94454 7.57046C3.89534 7.54591 3.82972 7.56225 3.80508 7.61966L3.80516 7.61958Z" fill="white"/>
|
||||
<path d="M5.8886 7.90662C5.84761 7.96412 5.78199 7.98055 5.72457 7.93948L4.30535 6.99617C4.24802 6.96332 4.23981 6.88948 4.27258 6.83207C4.30544 6.77466 4.37928 6.75823 4.43669 6.79921L5.86404 7.75082C5.91324 7.78367 5.92967 7.85751 5.8886 7.90662Z" fill="#F3F3F3"/>
|
||||
<path d="M5.89685 7.91483C5.85587 7.97232 5.77382 7.98867 5.71649 7.95589L4.29731 7.00429C4.2399 6.96331 4.22347 6.88947 4.26445 6.82393C4.30552 6.76643 4.38757 6.75 4.44498 6.78286L5.86408 7.73438C5.92971 7.77545 5.93792 7.85742 5.89685 7.91483ZM4.28088 6.83206C4.24811 6.88125 4.25632 6.95509 4.30544 6.98786L5.73283 7.93955C5.78203 7.97241 5.84766 7.95598 5.88051 7.90678C5.91328 7.8575 5.90507 7.78366 5.85595 7.75089L4.42847 6.79929C4.37927 6.76643 4.31365 6.78286 4.2808 6.83206H4.28088Z" fill="white"/>
|
||||
<path d="M5.58519 6.71719C5.54421 6.76639 5.47037 6.78281 5.42117 6.74175L4.82232 6.27425C4.77313 6.23319 4.76491 6.15935 4.8059 6.11015C4.84688 6.06096 4.92072 6.04453 4.97 6.0856L5.56877 6.55309C5.61805 6.59416 5.62626 6.66791 5.58519 6.71719Z" fill="#F3F3F3"/>
|
||||
<path d="M5.59342 6.72534C5.55243 6.78284 5.47038 6.79105 5.41297 6.74998L4.81415 6.28249C4.75674 6.2415 4.74852 6.15945 4.78959 6.10213C4.83057 6.04463 4.91262 6.03642 4.96995 6.07749L5.56877 6.54498C5.62627 6.58605 5.63448 6.66802 5.59342 6.72551V6.72534ZM4.80593 6.11017C4.76495 6.15937 4.77316 6.22499 4.82236 6.26598L5.42119 6.73364C5.47038 6.76641 5.53601 6.7582 5.57699 6.709C5.61806 6.6598 5.60984 6.59418 5.56065 6.5532L4.96182 6.08553C4.91262 6.05276 4.84691 6.06097 4.80602 6.11017H4.80593Z" fill="white"/>
|
||||
<path d="M6.80733 6.79924C6.75822 6.84853 6.68429 6.84853 6.64331 6.79924L5.42113 5.59343C5.37193 5.54423 5.38006 5.47039 5.42113 5.42932C5.47032 5.38021 5.54417 5.38021 5.58515 5.42932L6.79928 6.63522C6.84848 6.67621 6.84848 6.75826 6.8075 6.79933L6.80733 6.79924Z" fill="#F3F3F3"/>
|
||||
<path d="M6.80748 6.80748C6.78341 6.83111 6.75103 6.84435 6.7173 6.84435C6.68356 6.84435 6.65118 6.83111 6.62711 6.80748L5.41294 5.60151C5.38925 5.57744 5.37598 5.54502 5.37598 5.51125C5.37598 5.47747 5.38925 5.44505 5.41294 5.42098C5.43701 5.39732 5.46941 5.38406 5.50316 5.38406C5.53691 5.38406 5.56931 5.39732 5.59338 5.42098L6.80748 6.62686C6.86489 6.67606 6.86489 6.75811 6.80748 6.80731V6.80748ZM5.42953 5.43741C5.38846 5.47848 5.38846 5.55231 5.42953 5.59321L6.64354 6.79909C6.68461 6.84016 6.75836 6.84016 6.79935 6.79909C6.84042 6.75811 6.84042 6.68427 6.79935 6.64329L5.58534 5.42928C5.54435 5.3883 5.47864 5.3883 5.42953 5.43749V5.43741Z" fill="white"/>
|
||||
<path d="M6.73357 5.57698C6.68438 5.61804 6.61054 5.61804 6.56947 5.56876L6.06904 4.99456C6.02814 4.94537 6.03627 4.87153 6.08555 4.83054C6.13466 4.78948 6.20858 4.78948 6.24957 4.83867L6.75 5.41296C6.79098 5.45394 6.78277 5.52778 6.73357 5.57698Z" fill="#F3F3F3"/>
|
||||
<path d="M6.74175 5.57698C6.68434 5.62618 6.6105 5.61805 6.56122 5.56877L6.06086 4.99457C6.01166 4.94537 6.01988 4.86331 6.07729 4.81412C6.1347 4.76483 6.20854 4.77305 6.25774 4.82233L6.75818 5.39645C6.79916 5.45394 6.79916 5.536 6.74175 5.57698ZM6.0855 4.83054C6.03622 4.87153 6.03622 4.93715 6.06908 4.98635L6.56952 5.56055C6.6105 5.60162 6.67613 5.60984 6.72532 5.56877C6.77452 5.52778 6.77452 5.46207 6.74175 5.41296L6.24131 4.83867C6.20033 4.78956 6.13462 4.78956 6.0855 4.83054Z" fill="white"/>
|
||||
<path d="M7.91485 5.88875C7.85744 5.92973 7.7836 5.91331 7.75075 5.85589L6.79102 4.43671C6.75817 4.3793 6.77459 4.30546 6.82379 4.27269C6.8812 4.23171 6.95504 4.24814 6.9879 4.30555L7.93941 5.72465C7.98047 5.78206 7.96405 5.85589 7.91485 5.88866V5.88875Z" fill="#F3F3F3"/>
|
||||
<path d="M7.91495 5.89692C7.85754 5.93798 7.7755 5.92147 7.73443 5.86415L6.78295 4.44494C6.74197 4.38753 6.7584 4.30556 6.82394 4.26458C6.88134 4.22351 6.96339 4.23994 7.00446 4.29735L7.95593 5.71647C7.99692 5.78209 7.98049 5.85593 7.91495 5.89692ZM6.83206 4.28092C6.78287 4.31369 6.76644 4.37932 6.7993 4.4286L7.75077 5.84772C7.78362 5.89692 7.84925 5.90513 7.90657 5.87227C7.95585 5.8395 7.97228 5.77388 7.93942 5.72468L6.98803 4.31369C6.95518 4.26458 6.88135 4.24807 6.83223 4.28092H6.83206Z" fill="white"/>
|
||||
<path d="M8.08708 4.67468C8.02967 4.70745 7.95584 4.69111 7.92307 4.6337L7.54568 3.96923C7.51291 3.91182 7.53747 3.83798 7.59496 3.80513C7.65237 3.77236 7.7262 3.7887 7.75897 3.8462L8.13627 4.51058C8.16091 4.56799 8.14449 4.64183 8.08716 4.67468H8.08708Z" fill="#F3F3F3"/>
|
||||
<path d="M8.087 4.6829C8.02138 4.71567 7.94754 4.69933 7.91477 4.64183L7.53737 3.97745C7.5046 3.91995 7.52102 3.83798 7.58665 3.80513C7.65227 3.77236 7.72611 3.7887 7.75888 3.8462L8.1362 4.51058C8.16905 4.56799 8.15263 4.64183 8.08709 4.6829H8.087ZM7.59486 3.81334C7.54558 3.84611 7.52102 3.91174 7.55379 3.96102L7.9312 4.62549C7.96397 4.6746 8.02959 4.69111 8.07879 4.66647C8.12807 4.6337 8.15263 4.56799 8.11986 4.51879L7.74245 3.85433C7.7179 3.80521 7.64406 3.78049 7.59486 3.81334Z" fill="white"/>
|
||||
<path d="M9.17796 5.21602C9.11243 5.24058 9.04672 5.21602 9.02216 5.15861L8.35773 3.57531C8.33318 3.5179 8.36594 3.44406 8.42335 3.41942C8.48897 3.39487 8.5546 3.41942 8.57915 3.47683L9.24359 5.06005C9.26823 5.11746 9.23546 5.1913 9.17796 5.21585V5.21602Z" fill="#F3F3F3"/>
|
||||
<path d="M9.17818 5.22431C9.11264 5.24887 9.0388 5.22431 9.00594 5.1586L8.34147 3.57548C8.32955 3.54392 8.33063 3.50893 8.34447 3.47817C8.35832 3.44741 8.38379 3.42339 8.41531 3.41138C8.48093 3.38682 8.55477 3.41138 8.58763 3.477L9.25202 5.06021C9.27666 5.11762 9.24389 5.19145 9.17826 5.22431H9.17818ZM8.43174 3.4278C8.37432 3.45236 8.34968 3.51807 8.37432 3.56727L9.03871 5.15039C9.06327 5.2078 9.12889 5.23235 9.18631 5.2078C9.24372 5.18324 9.26844 5.11753 9.24372 5.06833L8.57933 3.48513C8.54648 3.42772 8.48906 3.40308 8.43165 3.42772L8.43174 3.4278Z" fill="white"/>
|
||||
<path d="M9.57993 4.05127C9.51431 4.07583 9.44869 4.04298 9.42414 3.97744L9.18622 3.25549C9.16166 3.19808 9.20264 3.12424 9.26005 3.1079C9.31745 3.09147 9.39129 3.11611 9.41584 3.18173L9.65376 3.9036C9.67831 3.96101 9.64555 4.02663 9.57993 4.05119V4.05127Z" fill="#F3F3F3"/>
|
||||
<path d="M9.58826 4.05941C9.55671 4.0713 9.52173 4.07021 9.49099 4.05637C9.46025 4.04253 9.43624 4.01708 9.42423 3.98558L9.18627 3.2637C9.16172 3.19808 9.2027 3.12432 9.26841 3.09968C9.29996 3.08779 9.33494 3.08889 9.36568 3.10272C9.39642 3.11656 9.42043 3.14202 9.43244 3.17352L9.67031 3.89539C9.68674 3.96102 9.65388 4.03486 9.58826 4.05941ZM9.26833 3.11611C9.21092 3.13245 9.17806 3.19808 9.19449 3.25549L9.43244 3.97745C9.44878 4.03486 9.51441 4.05941 9.57191 4.04299C9.62933 4.02664 9.6621 3.96102 9.64567 3.90361L9.4078 3.18165C9.40362 3.16772 9.39655 3.15483 9.38706 3.14382C9.37757 3.13281 9.36586 3.12392 9.3527 3.11773C9.33955 3.11154 9.32524 3.10818 9.3107 3.10789C9.29616 3.1076 9.28172 3.11037 9.26833 3.11602V3.11611Z" fill="white"/>
|
||||
<path d="M10.548 4.79768C10.4823 4.8141 10.4167 4.77312 10.4085 4.70741L10.064 3.02581C10.0475 2.96019 10.0968 2.90278 10.1624 2.88635C10.2281 2.86992 10.2936 2.9109 10.3018 2.97661L10.6464 4.6583C10.6546 4.71562 10.6136 4.78125 10.548 4.79768Z" fill="#F3F3F3"/>
|
||||
<path d="M10.5481 4.80589C10.4742 4.82232 10.4086 4.77303 10.3922 4.70741L10.0476 3.0258C10.0312 2.96018 10.0805 2.88634 10.1461 2.87812C10.2199 2.8617 10.2856 2.91098 10.3019 2.9766L10.6465 4.6583C10.6629 4.72384 10.6219 4.78955 10.5481 4.80589ZM10.1625 2.89455C10.105 2.90276 10.064 2.96018 10.0723 3.0258L10.4168 4.70749C10.425 4.76482 10.4906 4.80589 10.5481 4.78946C10.6055 4.78125 10.6465 4.72384 10.6382 4.65821L10.2937 2.97652C10.2773 2.91919 10.2199 2.88634 10.1624 2.89455H10.1625Z" fill="white"/>
|
||||
<path d="M11.1715 3.73128C11.1059 3.73949 11.0485 3.69851 11.032 3.63288L10.9336 2.87814C10.9254 2.81252 10.9746 2.7551 11.0403 2.74689C11.1059 2.73868 11.1633 2.77975 11.1797 2.84537L11.2781 3.60003C11.2863 3.66565 11.2371 3.72306 11.1715 3.73128Z" fill="#F3F3F3"/>
|
||||
<path d="M11.1715 3.73948C11.0977 3.74769 11.0321 3.6985 11.0238 3.63279L10.9255 2.87814C10.9172 2.81251 10.9664 2.74689 11.0403 2.73867C11.1141 2.73054 11.1797 2.77974 11.1879 2.84537L11.2863 3.60002C11.2945 3.66564 11.2453 3.73127 11.1715 3.73948ZM11.0485 2.7551C10.9911 2.76331 10.9418 2.82073 10.95 2.87814L11.0485 3.63287C11.0567 3.69028 11.1141 3.73127 11.1715 3.72305C11.2289 3.71492 11.2782 3.65743 11.27 3.60002L11.1715 2.84537C11.1633 2.78796 11.1059 2.74689 11.0485 2.7551Z" fill="white"/>
|
||||
<path d="M12.0575 21.7043C17.4215 21.7043 21.77 17.3559 21.77 11.9918C21.77 6.62773 17.4215 2.2793 12.0575 2.2793C6.6934 2.2793 2.34497 6.62773 2.34497 11.9918C2.34497 17.3559 6.6934 21.7043 12.0575 21.7043Z" fill="url(#paint2_linear_716_8465)" fillOpacity="0.2"/>
|
||||
<path d="M18.7841 5.83127L10.95 10.8516H10.9418V10.8598L10.9336 10.868L6.04468 18.9317L13.2306 13.1485L13.2388 13.1404V13.1322L18.7841 5.83135L18.7841 5.83127Z" fill="black" fillOpacity="0.05"/>
|
||||
<path d="M18.6363 5.36365L10.8926 10.8679L13.1895 13.1484L18.6363 5.36365Z" fill="#CD151E"/>
|
||||
<path d="M10.9009 10.8516L12.0576 11.9917L18.6364 5.36365L10.9009 10.8516Z" fill="#FA5153"/>
|
||||
<path d="M10.9009 10.8516L13.1977 13.1319L5.45398 18.6363L10.9009 10.8515V10.8516Z" fill="#ACACAC"/>
|
||||
<path d="M5.45398 18.6363L12.0575 11.9918L10.9008 10.8515L5.45398 18.6363Z" fill="#EEEEEE"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8465" x1="12" y1="22.5" x2="12" y2="1.5" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.25" stopColor="#DBDBDA"/>
|
||||
<stop offset="1" stopColor="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint1_radial_716_8465" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.3647 9.86653) scale(11.8555)">
|
||||
<stop stopColor="#2ABCE1"/>
|
||||
<stop offset="0.11363" stopColor="#2ABBE1"/>
|
||||
<stop offset="1" stopColor="#3375F8"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint2_linear_716_8465" x1="11.8729" y1="9.2146" x2="7.33972" y2="17.3477" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity="0"/>
|
||||
<stop offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_safari;
|
||||
23
frontend/app/components/ui/Icons/color_ubuntu.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_ubuntu(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z" fill="#E95420"/>
|
||||
<path d="M5.11616 10.6172C4.35889 10.6172 3.75 11.2398 3.75 12.0026C3.75 12.7653 4.364 13.388 5.11616 13.388C5.86831 13.388 6.48232 12.7653 6.48232 12.0026C6.48232 11.2347 5.86831 10.6172 5.11616 10.6172ZM14.8737 16.9112C14.2188 17.2951 13.9987 18.1409 14.3723 18.8051C14.7509 19.4692 15.5849 19.6975 16.2399 19.3136C16.8948 18.9296 17.1148 18.0838 16.7413 17.4197C16.3575 16.7607 15.5235 16.5324 14.8737 16.9112ZM8.08384 12.0026C8.08384 10.6328 8.75413 9.42378 9.78259 8.69216L8.78483 6.99544C7.58752 7.80489 6.70233 9.045 6.32882 10.4927C6.75862 10.8507 7.03492 11.3955 7.03492 12.0026C7.03492 12.6097 6.75862 13.1545 6.32882 13.5125C6.69722 14.9602 7.58752 16.2003 8.78483 17.0098L9.78259 15.313C8.75413 14.5814 8.08384 13.3724 8.08384 12.0026ZM12.0749 7.95536C14.1625 7.95536 15.8715 9.57425 16.0505 11.6446L18 11.6134C17.9028 10.0879 17.2478 8.71811 16.2347 7.71149C15.7128 7.90866 15.1142 7.87753 14.5974 7.57658C14.0755 7.27044 13.7531 6.76195 13.661 6.20156C13.1545 6.06146 12.6224 5.98363 12.0749 5.98363C11.1283 5.98363 10.238 6.20675 9.44488 6.60628L10.3966 8.32895C10.9031 8.09027 11.4762 7.95536 12.0749 7.95536ZM12.0749 16.0498C11.4762 16.0498 10.9031 15.9149 10.3915 15.6762L9.43977 17.3989C10.2329 17.7984 11.1283 18.0216 12.0697 18.0216C12.6172 18.0216 13.1494 17.9437 13.6559 17.8036C13.7429 17.2484 14.0704 16.7347 14.5923 16.4286C15.1091 16.1225 15.7128 16.0965 16.2296 16.2937C17.2376 15.2871 17.8977 13.9172 17.9949 12.3918L16.0454 12.3606C15.8715 14.4257 14.1625 16.0498 12.0749 16.0498ZM14.8686 7.08884C15.5235 7.47281 16.3575 7.2445 16.7362 6.58034C17.1148 5.91618 16.8897 5.07041 16.2347 4.68644C15.5798 4.30247 14.7458 4.53078 14.3671 5.19494C13.9936 5.8591 14.2188 6.70487 14.8686 7.08884Z" fill="white"/>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_ubuntu;
|
||||
39
frontend/app/components/ui/Icons/color_us.tsx
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Color_us(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clipPath="url(#clip0_475_20146)">
|
||||
<rect y="0.399902" width="24" height="24" rx="12" fill="#FFFBE6"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.399902H28V24.3999H-4V0.399902Z" fill="#F7FCFF"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 15.0667V17.0667H28V15.0667H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 18.7332V20.7332H28V18.7332H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 7.73315V9.73315H28V7.73315H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 22.3999V24.3999H28V22.3999H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 11.3999V13.3999H28V11.3999H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 0.399902V2.3999H28V0.399902H-4Z" fill="#E31D1C"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-4 4.06665V6.06665H28V4.06665H-4Z" fill="#E31D1C"/>
|
||||
<rect x="-4" y="0.399902" width="20" height="13" fill="#2E42A5"/>
|
||||
<path fillRule="evenodd" clipRule="evenodd" d="M-2.27791 3.33861L-3.00379 3.8475L-2.75873 2.94189L-3.40344 2.36797H-2.56136L-2.27893 1.62891L-1.94775 2.36797H-1.2299L-1.79393 2.94189L-1.57557 3.8475L-2.27791 3.33861ZM1.72209 3.33861L0.996209 3.8475L1.24127 2.94189L0.596558 2.36797H1.43864L1.72107 1.62891L2.05225 2.36797H2.7701L2.20607 2.94189L2.42443 3.8475L1.72209 3.33861ZM4.99621 3.8475L5.72209 3.33861L6.42443 3.8475L6.20607 2.94189L6.7701 2.36797H6.05225L5.72107 1.62891L5.43864 2.36797H4.59656L5.24127 2.94189L4.99621 3.8475ZM9.72209 3.33861L8.99621 3.8475L9.24127 2.94189L8.59656 2.36797H9.43864L9.72107 1.62891L10.0522 2.36797H10.7701L10.2061 2.94189L10.4244 3.8475L9.72209 3.33861ZM-3.00379 7.8475L-2.27791 7.33861L-1.57557 7.8475L-1.79393 6.94189L-1.2299 6.36797H-1.94775L-2.27893 5.62891L-2.56136 6.36797H-3.40344L-2.75873 6.94189L-3.00379 7.8475ZM1.72209 7.33861L0.996209 7.8475L1.24127 6.94189L0.596558 6.36797H1.43864L1.72107 5.62891L2.05225 6.36797H2.7701L2.20607 6.94189L2.42443 7.8475L1.72209 7.33861ZM4.99621 7.8475L5.72209 7.33861L6.42443 7.8475L6.20607 6.94189L6.7701 6.36797H6.05225L5.72107 5.62891L5.43864 6.36797H4.59656L5.24127 6.94189L4.99621 7.8475ZM9.72209 7.33861L8.99621 7.8475L9.24127 6.94189L8.59656 6.36797H9.43864L9.72107 5.62891L10.0522 6.36797H10.7701L10.2061 6.94189L10.4244 7.8475L9.72209 7.33861ZM-3.00379 11.8475L-2.27791 11.3386L-1.57557 11.8475L-1.79393 10.9419L-1.2299 10.368H-1.94775L-2.27893 9.62891L-2.56136 10.368H-3.40344L-2.75873 10.9419L-3.00379 11.8475ZM1.72209 11.3386L0.996209 11.8475L1.24127 10.9419L0.596558 10.368H1.43864L1.72107 9.62891L2.05225 10.368H2.7701L2.20607 10.9419L2.42443 11.8475L1.72209 11.3386ZM4.99621 11.8475L5.72209 11.3386L6.42443 11.8475L6.20607 10.9419L6.7701 10.368H6.05225L5.72107 9.62891L5.43864 10.368H4.59656L5.24127 10.9419L4.99621 11.8475ZM9.72209 11.3386L8.99621 11.8475L9.24127 10.9419L8.59656 10.368H9.43864L9.72107 9.62891L10.0522 10.368H10.7701L10.2061 10.9419L10.4244 11.8475L9.72209 11.3386ZM12.9962 3.8475L13.7221 3.33861L14.4244 3.8475L14.2061 2.94189L14.7701 2.36797H14.0522L13.7211 1.62891L13.4386 2.36797H12.5966L13.2413 2.94189L12.9962 3.8475ZM13.7221 7.33861L12.9962 7.8475L13.2413 6.94189L12.5966 6.36797H13.4386L13.7211 5.62891L14.0522 6.36797H14.7701L14.2061 6.94189L14.4244 7.8475L13.7221 7.33861ZM12.9962 11.8475L13.7221 11.3386L14.4244 11.8475L14.2061 10.9419L14.7701 10.368H14.0522L13.7211 9.62891L13.4386 10.368H12.5966L13.2413 10.9419L12.9962 11.8475ZM-0.277911 5.33861L-1.00379 5.8475L-0.758726 4.94189L-1.40344 4.36797H-0.561355L-0.278926 3.62891L0.0522454 4.36797H0.770102L0.206065 4.94189L0.424427 5.8475L-0.277911 5.33861ZM2.99621 5.8475L3.72209 5.33861L4.42443 5.8475L4.20607 4.94189L4.7701 4.36797H4.05225L3.72107 3.62891L3.43864 4.36797H2.59656L3.24127 4.94189L2.99621 5.8475ZM7.72209 5.33861L6.99621 5.8475L7.24127 4.94189L6.59656 4.36797H7.43864L7.72107 3.62891L8.05225 4.36797H8.7701L8.20607 4.94189L8.42443 5.8475L7.72209 5.33861ZM-1.00379 9.8475L-0.277911 9.33861L0.424427 9.8475L0.206065 8.94189L0.770102 8.36797H0.0522454L-0.278926 7.62891L-0.561355 8.36797H-1.40344L-0.758726 8.94189L-1.00379 9.8475ZM3.72209 9.33861L2.99621 9.8475L3.24127 8.94189L2.59656 8.36797H3.43864L3.72107 7.62891L4.05225 8.36797H4.7701L4.20607 8.94189L4.42443 9.8475L3.72209 9.33861ZM6.99621 9.8475L7.72209 9.33861L8.42443 9.8475L8.20607 8.94189L8.7701 8.36797H8.05225L7.72107 7.62891L7.43864 8.36797H6.59656L7.24127 8.94189L6.99621 9.8475ZM11.7221 5.33861L10.9962 5.8475L11.2413 4.94189L10.5966 4.36797H11.4386L11.7211 3.62891L12.0522 4.36797H12.7701L12.2061 4.94189L12.4244 5.8475L11.7221 5.33861ZM10.9962 9.8475L11.7221 9.33861L12.4244 9.8475L12.2061 8.94189L12.7701 8.36797H12.0522L11.7211 7.62891L11.4386 8.36797H10.5966L11.2413 8.94189L10.9962 9.8475Z" fill="#F7FCFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20146">
|
||||
<rect y="0.399902" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
export default Color_us;
|
||||
|
|
@ -113,6 +113,20 @@ export { default as Cog } from './cog';
|
|||
export { default as Cogs } from './cogs';
|
||||
export { default as Collection_play } from './collection_play';
|
||||
export { default as Collection } from './collection';
|
||||
export { default as Color_apple } from './color_apple';
|
||||
export { default as Color_chrome } from './color_chrome';
|
||||
export { default as Color_de } from './color_de';
|
||||
export { default as Color_edge } from './color_edge';
|
||||
export { default as Color_fedora } from './color_fedora';
|
||||
export { default as Color_firefox } from './color_firefox';
|
||||
export { default as Color_fr } from './color_fr';
|
||||
export { default as Color_gb } from './color_gb';
|
||||
export { default as Color_in } from './color_in';
|
||||
export { default as Color_microsoft } from './color_microsoft';
|
||||
export { default as Color_opera } from './color_opera';
|
||||
export { default as Color_safari } from './color_safari';
|
||||
export { default as Color_ubuntu } from './color_ubuntu';
|
||||
export { default as Color_us } from './color_us';
|
||||
export { default as Columns_gap_filled } from './columns_gap_filled';
|
||||
export { default as Columns_gap } from './columns_gap';
|
||||
export { default as Console_error } from './console_error';
|
||||
|
|
|
|||
19
frontend/app/components/ui/Icons/integrations_apple.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_apple(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M22.5 12c0 5.796-4.699 10.5-10.5 10.5S1.5 17.796 1.5 12C1.5 6.199 6.199 1.5 12 1.5S22.5 6.199 22.5 12Z" fill="#283544"/><path d="M16.922 9.343c-.058.033-1.422.739-1.422 2.303.065 1.784 1.722 2.41 1.75 2.41-.028.033-.25.851-.907 1.71-.521.739-1.1 1.484-1.978 1.484-.836 0-1.136-.493-2.1-.493-1.036 0-1.329.493-2.122.493-.878 0-1.5-.785-2.05-1.518-.714-.958-1.32-2.462-1.342-3.906-.015-.766.143-1.518.543-2.157a3.267 3.267 0 0 1 2.67-1.518c.843-.026 1.593.54 2.108.54.493 0 1.414-.54 2.457-.54.45 0 1.65.127 2.393 1.192ZM12 7.999c-.15-.7.264-1.398.65-1.844.492-.54 1.27-.905 1.942-.905a2.501 2.501 0 0 1-.714 1.884c-.436.539-1.186.945-1.878.865Z" fill="#fff"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_apple;
|
||||
19
frontend/app/components/ui/Icons/integrations_chrome.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_chrome(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M12 1.503s6.19-.277 9.471 5.922h-9.997s-1.887-.06-3.498 2.22c-.463.957-.961 1.943-.403 3.887-.804-1.358-4.27-7.373-4.27-7.373S5.748 1.748 12 1.503Z" fill="#EF3F36"/><path d="M21.15 17.24s-2.856 5.48-9.882 5.21l5-8.627s.999-1.598-.179-4.129c-.6-.88-1.21-1.8-3.177-2.29 1.583-.014 8.541 0 8.541 0s2.608 4.317-.303 9.835Z" fill="#FCD900"/><path d="M2.894 17.282s-3.336-5.204.414-11.131c.865 1.496 4.997 8.626 4.997 8.626s.892 1.66 3.678 1.909c1.062-.078 2.167-.145 3.58-1.595-.78 1.373-4.272 7.37-4.272 7.37s-5.058.092-8.397-5.178Z" fill="#61BC5B"/><path d="m11.265 22.501 1.407-5.847s1.545-.121 2.841-1.537c-.804 1.41-4.248 7.384-4.248 7.384Z" fill="#5AB055"/><path d="M7.29 12.067c0-2.578 2.098-4.668 4.684-4.668 2.587 0 4.685 2.09 4.685 4.668 0 2.577-2.098 4.668-4.685 4.668-2.586-.003-4.684-2.09-4.684-4.668Z" fill="#fff"/><path d="M8.074 12.067a3.893 3.893 0 0 1 3.9-3.887c2.153 0 3.9 1.739 3.9 3.887a3.893 3.893 0 0 1-3.9 3.886 3.895 3.895 0 0 1-3.9-3.886Z" fill="url(#a)"/><path d="M21.45 7.408 15.66 9.1s-.873-1.277-2.75-1.692c1.628-.009 8.54 0 8.54 0Z" fill="#EACA05"/><path d="M7.46 13.318C6.648 11.914 3.304 6.16 3.304 6.16l4.288 4.227s-.44.903-.275 2.194l.145.738Z" fill="#DF3A32"/><defs><linearGradient id="a" x1="11.974" y1="8.235" x2="11.974" y2="15.72" gradientUnits="userSpaceOnUse"><stop stopColor="#86BBE5"/><stop offset="1" stopColor="#1072BA"/></linearGradient></defs></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_chrome;
|
||||
19
frontend/app/components/ui/Icons/integrations_edge.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_edge(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M14.694 11.905c0-2.005-2.083-5.465-6.777-5.465-4.693 0-6.417 3.913-6.417 5.584C1.5 6.058 6.36 1.5 12.132 1.5c5.77 0 10.368 4.32 10.368 8.71 0 3.914-2.945 5.274-5.34 5.274-1.58 0-3.376-.525-3.376-1.36 0-.645.91-.645.91-2.22Z" fill="url(#a)"/><path d="M7.917 6.44c4.694 0 6.777 3.46 6.777 5.465v.046c-.024-1.335-.925-2.6-2.706-2.6-2.25 0-5.292 3.055-4.885 6.849.326 3.037 2.898 7.111 8.477 5.68 0 0-1.054.62-3.999.62C6.361 22.5 1.5 17.727 1.5 12.262c0-.144.002-.286.007-.426.12-1.757 1.885-5.396 6.41-5.396Z" fill="url(#b)"/><path d="M7.917 6.44c4.694 0 6.777 3.46 6.777 5.465v.046c-.024-1.335-.925-2.6-2.706-2.6-2.25 0-5.292 3.055-4.885 6.849.326 3.037 2.898 7.111 8.477 5.68 0 0-1.054.62-3.999.62C6.361 22.5 1.5 17.727 1.5 12.262c0-.144.002-.286.007-.426.12-1.757 1.885-5.396 6.41-5.396Z" fill="url(#c)"/><path d="M14.93 22.125c2.99-.816 5.125-3.36 5.51-3.873.432-.572.551-.93.432-1.05-.12-.12-.288-.095-.719.12-.43.214-2.969 1.264-5.866.381C11.389 16.82 9.402 14.53 9.402 12c0-1.957 1.676-2.649 2.586-2.649-2.25 0-5.292 3.055-4.885 6.849.326 3.037 2.898 7.111 8.477 5.68 0 0-.195.114-.65.245Z" fill="#0E458A"/><path d="M14.93 22.125c2.99-.816 5.125-3.36 5.51-3.873.432-.572.551-.93.432-1.05-.12-.12-.288-.095-.719.12-.43.214-2.969 1.264-5.866.381C11.389 16.82 9.402 14.53 9.402 12c0-1.957 1.676-2.649 2.586-2.649-2.25 0-5.292 3.055-4.885 6.849.326 3.037 2.898 7.111 8.477 5.68 0 0-.195.114-.65.245Z" fill="url(#d)"/><defs><radialGradient id="c" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="rotate(59.214 -8.43 14.34) scale(7.11114 7.12274)"><stop stopColor="#1284D8"/><stop offset=".814" stopColor="#1170B2" stop-opacity=".768"/><stop offset="1" stopColor="#0E649B" stop-opacity=".65"/></radialGradient><radialGradient id="d" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.19726 5.63181 -6.0803 1.2926 14 16.2)"><stop stopColor="#104890"/><stop offset=".699" stopColor="#12529E" stop-opacity=".706"/><stop offset="1" stopColor="#0E4584" stop-opacity=".58"/></radialGradient><linearGradient id="a" x1="21.279" y1="13.909" x2=".741" y2="9.057" gradientUnits="userSpaceOnUse"><stop stopColor="#3BCC50"/><stop offset=".49" stopColor="#2ABAD6"/><stop offset="1" stopColor="#7DCFE7"/></linearGradient><linearGradient id="b" x1="8.54" y1="6.44" x2="8.54" y2="22.5" gradientUnits="userSpaceOnUse"><stop stopColor="#035989"/><stop offset=".266" stopColor="#1175B6"/><stop offset="1" stopColor="#0470CF"/></linearGradient></defs></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_edge;
|
||||
19
frontend/app/components/ui/Icons/integrations_fedora.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_fedora(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M22.5 12c0-5.799-4.701-10.5-10.5-10.5-5.797 0-10.496 4.697-10.5 10.493v8.126a2.387 2.387 0 0 0 2.387 2.38h8.117C17.801 22.498 22.5 17.799 22.5 12Z" fill="#294172"/><path d="M15.083 3.986a4.931 4.931 0 0 0-4.926 4.926v2.614H7.554a4.931 4.931 0 0 0-4.926 4.926 4.931 4.931 0 0 0 4.926 4.925 4.931 4.931 0 0 0 4.925-4.925v-2.615h2.604a4.931 4.931 0 0 0 4.925-4.925 4.931 4.931 0 0 0-4.925-4.926Zm-4.908 12.466a2.625 2.625 0 0 1-2.621 2.621 2.625 2.625 0 0 1-2.622-2.621 2.625 2.625 0 0 1 2.622-2.622h2.603v.007h.018v2.615Zm4.908-4.919h-2.604v-.007h-.018V8.912a2.625 2.625 0 0 1 2.622-2.622 2.625 2.625 0 0 1 2.621 2.622 2.625 2.625 0 0 1-2.621 2.621Z" fill="#3C6EB4"/><path d="M16.171 4.135a3.92 3.92 0 0 0-1.088-.146 4.928 4.928 0 0 0-4.928 4.928v2.612H8.09a1.15 1.15 0 0 0-1.163 1.148c0 .638.514 1.146 1.15 1.146h1.71c.202 0 .367.165.367.367v2.26a2.602 2.602 0 0 1-2.601 2.597c-.486 0-.607-.063-.938-.063-.697 0-1.164.467-1.164 1.11 0 .531.456.988 1.013 1.134.382.1.676.146 1.089.146a4.928 4.928 0 0 0 4.928-4.928v-2.612h2.064a1.15 1.15 0 0 0 1.163-1.148c0-.638-.514-1.146-1.151-1.146h-1.709a.367.367 0 0 1-.367-.367v-2.26a2.602 2.602 0 0 1 2.6-2.597c.487 0 .607.064.939.064.697 0 1.163-.468 1.163-1.11 0-.532-.455-.989-1.013-1.135Z" fill="#fff"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_fedora;
|
||||
19
frontend/app/components/ui/Icons/integrations_firefox.tsx
Normal file
19
frontend/app/components/ui/Icons/integrations_microsoft.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_microsoft(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path fill="#FEBA08" d="M12.75 12.75h7.5v7.5h-7.5z"/><path fill="#05A6F0" d="M3.75 12.75h7.5v7.5h-7.5z"/><path fill="#80BC06" d="M12.75 3.75h7.5v7.5h-7.5z"/><path fill="#F25325" d="M3.75 3.75h7.5v7.5h-7.5z"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_microsoft;
|
||||
19
frontend/app/components/ui/Icons/integrations_opera.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_opera(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M8.546 17.915c-1.164-1.37-1.91-3.397-1.96-5.669v-.492c.05-2.272.804-4.299 1.96-5.668 1.51-1.953 3.725-2.83 6.227-2.83 1.542 0 2.994.106 4.224.926A10.39 10.39 0 0 0 12.041 1.5H12C6.2 1.5 1.5 6.2 1.5 12c0 5.627 4.43 10.23 10 10.492.164.008.336.008.5.008 2.69 0 5.143-1.009 6.997-2.674-1.23.82-2.6.853-4.142.853-2.494.008-4.807-.804-6.309-2.764Z" fill="url(#a)"/><path d="M8.547 6.086c.96-1.14 2.206-1.822 3.568-1.822 3.06 0 5.537 3.462 5.537 7.744s-2.477 7.744-5.537 7.744c-1.362 0-2.6-.69-3.568-1.821 1.509 1.952 3.748 3.2 6.242 3.2a7.557 7.557 0 0 0 4.208-1.289A10.53 10.53 0 0 0 22.5 12c0-3.109-1.354-5.906-3.503-7.826a7.536 7.536 0 0 0-4.208-1.288c-2.502 0-4.741 1.239-6.242 3.2Z" fill="url(#b)"/><defs><linearGradient id="a" x1="10.249" y1="1.842" x2="10.249" y2="22.195" gradientUnits="userSpaceOnUse"><stop offset=".3" stopColor="#FF1B2D"/><stop offset=".438" stopColor="#FA1A2C"/><stop offset=".594" stopColor="#ED1528"/><stop offset=".758" stopColor="#D60E21"/><stop offset=".927" stopColor="#B70519"/><stop offset="1" stopColor="#A70014"/></linearGradient><linearGradient id="b" x1="15.522" y1="3.042" x2="15.522" y2="21.042" gradientUnits="userSpaceOnUse"><stop stopColor="#9C0000"/><stop offset=".7" stopColor="#FF4B4B"/></linearGradient></defs></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_opera;
|
||||
19
frontend/app/components/ui/Icons/integrations_safari.tsx
Normal file
19
frontend/app/components/ui/Icons/integrations_ubuntu.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
||||
interface Props {
|
||||
size?: number | string;
|
||||
width?: number | string;
|
||||
height?: number | string;
|
||||
fill?: string;
|
||||
}
|
||||
|
||||
function Integrations_ubuntu(props: Props) {
|
||||
const { size = 14, width = size, height = size, fill = '' } = props;
|
||||
return (
|
||||
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path d="M22.5 12c0 5.796-4.699 10.5-10.5 10.5S1.5 17.796 1.5 12C1.5 6.199 6.199 1.5 12 1.5S22.5 6.199 22.5 12Z" fill="#E95420"/><path d="M5.116 10.617c-.757 0-1.366.623-1.366 1.386 0 .762.614 1.385 1.366 1.385.752 0 1.366-.623 1.366-1.385 0-.768-.614-1.386-1.366-1.386Zm9.758 6.294a1.4 1.4 0 0 0-.502 1.894 1.355 1.355 0 0 0 1.868.509 1.4 1.4 0 0 0 .501-1.894 1.367 1.367 0 0 0-1.867-.509Zm-6.79-4.908c0-1.37.67-2.58 1.699-3.31l-.998-1.698a6.043 6.043 0 0 0-2.456 3.498c.43.358.706.902.706 1.51 0 .607-.276 1.152-.706 1.51a6.02 6.02 0 0 0 2.456 3.497l.998-1.697a4.05 4.05 0 0 1-1.7-3.31Zm3.99-4.048c2.088 0 3.797 1.62 3.976 3.69l1.95-.032a6.027 6.027 0 0 0-1.765-3.902 1.903 1.903 0 0 1-1.638-.134 1.944 1.944 0 0 1-.936-1.375 5.944 5.944 0 0 0-1.586-.218c-.947 0-1.837.223-2.63.622l.952 1.723a3.941 3.941 0 0 1 1.678-.374Zm0 8.095a3.981 3.981 0 0 1-1.682-.374L9.44 17.4c.793.4 1.688.623 2.63.623.547 0 1.08-.078 1.586-.218a1.94 1.94 0 0 1 .936-1.375 1.887 1.887 0 0 1 1.638-.135 6.052 6.052 0 0 0 1.765-3.902l-1.95-.031c-.174 2.065-1.883 3.689-3.97 3.689Zm2.795-8.961a1.355 1.355 0 0 0 1.867-.509 1.396 1.396 0 0 0-.501-1.894 1.355 1.355 0 0 0-1.868.509 1.405 1.405 0 0 0 .502 1.894Z" fill="#fff"/></svg>
|
||||
);
|
||||
}
|
||||
|
||||
export default Integrations_ubuntu;
|
||||
4
frontend/app/svg/icons/color/apple.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z" fill="#283544"/>
|
||||
<path d="M16.9216 9.34304C16.8643 9.37646 15.5003 10.0819 15.5003 11.6459C15.5646 13.4296 17.2216 14.0551 17.25 14.0551C17.2216 14.0885 16.9998 14.9072 16.343 15.7654C15.8217 16.5047 15.2432 17.25 14.3646 17.25C13.5289 17.25 13.2289 16.7573 12.2646 16.7573C11.229 16.7573 10.936 17.25 10.1431 17.25C9.26458 17.25 8.64315 16.4647 8.09345 15.7324C7.37932 14.7739 6.77233 13.2698 6.7509 11.8256C6.73646 11.0603 6.89392 10.308 7.29361 9.66904C7.85774 8.77699 8.86489 8.17143 9.96473 8.15146C10.8074 8.12498 11.5574 8.6906 12.0717 8.6906C12.5646 8.6906 13.486 8.15146 14.5286 8.15146C14.9786 8.1519 16.1786 8.27822 16.9216 9.34304ZM12.0005 7.99866C11.8505 7.29978 12.2646 6.60089 12.6503 6.15508C13.1432 5.61594 13.9216 5.25 14.5929 5.25C14.6357 5.94889 14.3641 6.63432 13.8787 7.13352C13.4432 7.67266 12.6932 8.07853 12.0005 7.99866Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
16
frontend/app/svg/icons/color/chrome.svg
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.0005 1.5029C12.0005 1.5029 18.1896 1.22615 21.471 7.42495H11.4739C11.4739 7.42495 9.58722 7.36436 7.9756 9.64499C7.51265 10.6022 7.01502 11.5883 7.57345 13.5316C6.769 12.1735 3.30261 6.15929 3.30261 6.15929C3.30261 6.15929 5.74761 1.74796 12.0004 1.5029H12.0005Z" fill="#EF3F36"/>
|
||||
<path d="M21.1497 17.2392C21.1497 17.2392 18.2938 22.7201 11.2684 22.4491C12.1365 20.9527 16.2683 13.8227 16.2683 13.8227C16.2683 13.8227 17.2666 12.2254 16.089 9.69398C15.4899 8.81461 14.8794 7.89488 12.9119 7.40468C14.4947 7.39036 21.4535 7.40468 21.4535 7.40468C21.4535 7.40468 24.0605 11.7209 21.1497 17.2392Z" fill="#FCD900"/>
|
||||
<path d="M2.89448 17.2825C2.89448 17.2825 -0.441744 12.0784 3.30821 6.15057C4.17339 7.64698 8.30528 14.7771 8.30528 14.7771C8.30528 14.7771 9.19651 16.4378 11.9829 16.6857C13.0449 16.6079 14.1502 16.5415 15.5623 15.0913C14.7838 16.4638 11.2913 22.4608 11.2913 22.4608C11.2913 22.4608 6.2335 22.553 2.8944 17.2825H2.89448Z" fill="#61BC5B"/>
|
||||
<path d="M11.2655 22.501L12.6717 16.654C12.6717 16.654 14.2169 16.5328 15.5132 15.1172C14.7088 16.5272 11.2655 22.501 11.2655 22.501Z" fill="#5AB055"/>
|
||||
<path d="M7.28979 12.0668C7.28979 9.48931 9.38762 7.39899 11.9744 7.39899C14.5611 7.39899 16.6589 9.48931 16.6589 12.0668C16.6589 14.6444 14.5611 16.7346 11.9744 16.7346C9.38762 16.7317 7.28979 14.6444 7.28979 12.0668Z" fill="white"/>
|
||||
<path d="M8.07397 12.0668C8.07397 9.9218 9.81881 8.18033 11.9745 8.18033C14.1272 8.18033 15.8749 9.91893 15.8749 12.0668C15.8749 14.212 14.1302 15.9534 11.9745 15.9534C9.82168 15.9534 8.07397 14.212 8.07397 12.0668Z" fill="url(#paint0_linear_716_8431)"/>
|
||||
<path d="M21.4506 7.40764L15.6607 9.10007C15.6607 9.10007 14.7869 7.82276 12.9091 7.40764C14.5381 7.39896 21.4506 7.40764 21.4506 7.40764Z" fill="#EACA05"/>
|
||||
<path d="M7.46063 13.3183C6.64747 11.9141 3.30261 6.15927 3.30261 6.15927L7.59079 10.386C7.59079 10.386 7.15093 11.2885 7.31593 12.5801L7.46055 13.3183H7.46063Z" fill="#DF3A32"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8431" x1="11.9743" y1="8.23521" x2="11.9743" y2="15.7195" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#86BBE5"/>
|
||||
<stop offset="1" stop-color="#1072BA"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
13
frontend/app/svg/icons/color/de.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_475_20186)">
|
||||
<rect width="24" height="24" rx="12" fill="#F6F8D5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 16H28V24H-4V16Z" fill="#FFD018"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 8H28V16H-4V8Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0H28V8H-4V0Z" fill="#272727"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20186">
|
||||
<rect width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 544 B |
29
frontend/app/svg/icons/color/edge.svg
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.6938 11.9045C14.6938 9.9 12.6106 6.43977 7.91733 6.43977C3.22406 6.43977 1.5 10.3534 1.5 12.0239C1.5 6.05795 6.36089 1.5 12.1317 1.5C17.9025 1.5 22.5 5.81932 22.5 10.2102C22.5 14.1239 19.5547 15.4841 17.1602 15.4841C15.5798 15.4841 13.7839 14.9591 13.7839 14.1239C13.7839 13.4795 14.6938 13.4795 14.6938 11.9045Z" fill="url(#paint0_linear_716_8450)"/>
|
||||
<path d="M7.91733 6.43976C12.6106 6.43976 14.6938 9.89999 14.6938 11.9045C14.6938 11.9201 14.6938 11.9355 14.6936 11.9508C14.6699 10.6159 13.7686 9.35112 11.988 9.35112C9.73717 9.35112 6.69613 12.4057 7.10319 16.2C7.42904 19.2372 10.0006 23.3113 15.5798 21.8795C15.5798 21.8795 14.5262 22.5 11.581 22.5C6.36089 22.5 1.5 17.7273 1.5 12.2625C1.5 12.1177 1.50221 11.9757 1.50666 11.8365C1.62701 10.0787 3.39177 6.43976 7.91733 6.43976Z" fill="url(#paint1_linear_716_8450)"/>
|
||||
<path d="M7.91733 6.43976C12.6106 6.43976 14.6938 9.89999 14.6938 11.9045C14.6938 11.9201 14.6938 11.9355 14.6936 11.9508C14.6699 10.6159 13.7686 9.35112 11.988 9.35112C9.73717 9.35112 6.69613 12.4057 7.10319 16.2C7.42904 19.2372 10.0006 23.3113 15.5798 21.8795C15.5798 21.8795 14.5262 22.5 11.581 22.5C6.36089 22.5 1.5 17.7273 1.5 12.2625C1.5 12.1177 1.50221 11.9757 1.50666 11.8365C1.62701 10.0787 3.39177 6.43976 7.91733 6.43976Z" fill="url(#paint2_radial_716_8450)"/>
|
||||
<path d="M14.9299 22.1247C17.9191 21.3093 20.0546 18.7654 20.4408 18.2522C20.8718 17.6795 20.9915 17.3216 20.8718 17.2022C20.7521 17.0829 20.5844 17.1068 20.1534 17.3216C19.7224 17.5363 17.1842 18.5863 14.2868 17.7034C11.3895 16.8204 9.402 14.5295 9.402 12C9.402 10.0432 11.0782 9.35111 11.9881 9.3511C9.73723 9.3511 6.69618 12.4057 7.10325 16.2C7.42909 19.2372 10.0006 23.3113 15.5799 21.8795C15.5799 21.8795 15.3854 21.9941 14.9299 22.1247Z" fill="#0E458A"/>
|
||||
<path d="M14.9299 22.1247C17.9191 21.3093 20.0546 18.7654 20.4408 18.2522C20.8718 17.6795 20.9915 17.3216 20.8718 17.2022C20.7521 17.0829 20.5844 17.1068 20.1534 17.3216C19.7224 17.5363 17.1842 18.5863 14.2868 17.7034C11.3895 16.8204 9.402 14.5295 9.402 12C9.402 10.0432 11.0782 9.35111 11.9881 9.3511C9.73723 9.3511 6.69618 12.4057 7.10325 16.2C7.42909 19.2372 10.0006 23.3113 15.5799 21.8795C15.5799 21.8795 15.3854 21.9941 14.9299 22.1247Z" fill="url(#paint3_radial_716_8450)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8450" x1="21.2788" y1="13.9091" x2="0.741144" y2="9.05735" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3BCC50"/>
|
||||
<stop offset="0.489583" stop-color="#2ABAD6"/>
|
||||
<stop offset="1" stop-color="#7DCFE7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_716_8450" x1="8.53991" y1="6.43976" x2="8.53991" y2="22.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#035989"/>
|
||||
<stop offset="0.265625" stop-color="#1175B6"/>
|
||||
<stop offset="1" stop-color="#0470CF"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint2_radial_716_8450" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(8.20467 14.2432) rotate(59.2143) scale(7.11114 7.12274)">
|
||||
<stop stop-color="#1284D8"/>
|
||||
<stop offset="0.813899" stop-color="#1170B2" stop-opacity="0.767762"/>
|
||||
<stop offset="1" stop-color="#0E649B" stop-opacity="0.65"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_716_8450" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.9995 16.2) rotate(77.9982) scale(5.75767 6.21618)">
|
||||
<stop stop-color="#104890"/>
|
||||
<stop offset="0.69943" stop-color="#12529E" stop-opacity="0.70624"/>
|
||||
<stop offset="1" stop-color="#0E4584" stop-opacity="0.58"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
5
frontend/app/svg/icons/color/fedora.svg
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12.0003C22.5 6.20121 17.7989 1.5 11.9998 1.5C6.20334 1.5 1.5041 6.19727 1.5 11.9929V20.1185C1.50312 21.4344 2.57043 22.4998 3.88719 22.4998H12.0041C17.8013 22.4975 22.5 17.7979 22.5 12.0003Z" fill="#294172"/>
|
||||
<path d="M15.0827 3.98611C12.3667 3.98611 10.1571 6.19563 10.1571 8.91168V11.526H7.55362C4.83765 11.526 2.62805 13.7357 2.62805 16.4517C2.62805 19.1676 4.83765 21.3772 7.55362 21.3772C10.2696 21.3772 12.4792 19.1676 12.4792 16.4517V13.8372H15.0827C17.7987 13.8372 20.0083 11.6277 20.0083 8.91168C20.0083 6.19563 17.7987 3.98611 15.0827 3.98611ZM10.1753 16.4517C10.1753 17.8972 8.99926 19.0733 7.55362 19.0733C6.10798 19.0733 4.9319 17.8972 4.9319 16.4517C4.9319 15.006 6.10798 13.8299 7.55362 13.8299H10.1571V13.8372H10.1753V16.4517ZM15.0827 11.5334H12.4792V11.526H12.4611V8.91168C12.4611 7.46604 13.6371 6.28996 15.0827 6.28996C16.5282 6.28996 17.7044 7.46604 17.7044 8.91168C17.7044 10.3573 16.5282 11.5334 15.0827 11.5334Z" fill="#3C6EB4"/>
|
||||
<path d="M16.1714 4.13546C15.7892 4.03555 15.4956 3.98895 15.0828 3.98895C12.3612 3.98895 10.1548 6.19551 10.1548 8.9169V11.5289H8.09085C7.44731 11.5289 6.92723 12.0347 6.92764 12.677C6.92764 13.3154 7.44198 13.8233 8.07871 13.8233L9.7875 13.8236C9.99036 13.8236 10.1549 13.9877 10.1549 14.1902V16.4504C10.1524 17.8852 8.98852 19.0474 7.55371 19.0474C7.06767 19.0474 6.94733 18.9838 6.61552 18.9838C5.9185 18.9838 5.45215 19.451 5.45215 20.0935C5.45231 20.625 5.90775 21.0819 6.46507 21.2277C6.84734 21.3277 7.14084 21.3743 7.55371 21.3743C10.2753 21.3743 12.4817 19.1678 12.4817 16.4463V13.8343H14.5456C15.1892 13.8343 15.7093 13.3286 15.7088 12.6862C15.7088 12.0478 15.1945 11.54 14.5578 11.54L12.849 11.5397C12.7516 11.5398 12.6583 11.5012 12.5894 11.4324C12.5204 11.3637 12.4817 11.2703 12.4816 11.173V8.9128C12.4841 7.47799 13.648 6.31577 15.0828 6.31577C15.5688 6.31577 15.6892 6.37951 16.021 6.37951C16.718 6.37951 17.1843 5.91218 17.1843 5.26979C17.1842 4.73823 16.7287 4.28131 16.1714 4.13546Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2 KiB |
106
frontend/app/svg/icons/color/firefox.svg
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M21.7429 8.04486C21.2862 6.94305 20.3605 5.75354 19.6338 5.37779C20.2253 6.54011 20.5674 7.70594 20.6982 8.57582C20.6982 8.57582 20.6982 8.58196 20.7004 8.59336C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328L15.2773 0.752629C12.6362 2.30297 11.7402 5.17085 11.658 6.60588C10.6026 6.67821 9.59346 7.06769 8.76227 7.72348C8.67539 7.64986 8.58455 7.58106 8.49015 7.51741C8.25061 6.67703 8.24049 5.78762 8.46084 4.94198C7.38069 5.43523 6.54071 6.21347 5.92998 6.90227H5.92517C5.50825 6.37307 5.53756 4.62761 5.56118 4.26327C5.55637 4.24047 5.25057 4.42242 5.21119 4.45004C4.8433 4.71307 4.4994 5.00828 4.18354 5.3322C3.8241 5.69741 3.49572 6.09207 3.20182 6.51205C2.52564 7.47242 2.0461 8.55759 1.79093 9.70482C1.78612 9.72762 1.78174 9.75129 1.77693 9.77453C1.75724 9.86704 1.68593 10.3314 1.67324 10.4322V10.4554C1.58028 10.9352 1.52238 11.4211 1.5 11.9093V11.9633C1.5 17.7823 6.20735 22.5 12.0137 22.5C17.2141 22.5 21.5316 18.7162 22.3773 13.746C22.3948 13.6114 22.4092 13.4755 22.4249 13.3395C22.6341 11.5323 22.4018 9.63291 21.7429 8.04486ZM9.62455 16.2929C9.67355 16.3161 9.71992 16.342 9.77023 16.3648L9.77723 16.3692C9.72692 16.3446 9.67574 16.3192 9.62499 16.2929H9.62455ZM20.7013 8.59818V8.5881V8.5995V8.59818Z" fill="url(#paint0_linear_716_8611)"/>
|
||||
<path d="M21.7428 8.04487C21.2861 6.94306 20.3604 5.75356 19.6337 5.37781C20.2252 6.54013 20.5673 7.70596 20.6981 8.57583V8.59732C21.6903 11.2929 21.1496 14.034 20.3709 15.7089C19.166 18.3001 16.2493 20.9562 11.6833 20.8269C6.75411 20.6866 2.40857 17.0164 1.59703 12.2132C1.44916 11.4551 1.59703 11.0706 1.6714 10.4554C1.58084 10.9294 1.54628 11.0666 1.50122 11.9093V11.9633C1.50122 17.7823 6.20857 22.5 12.0149 22.5C17.2153 22.5 21.5328 18.7162 22.3785 13.746C22.396 13.6114 22.4104 13.4755 22.4262 13.3395C22.634 11.5323 22.4017 9.63292 21.7428 8.04487Z" fill="url(#paint1_radial_716_8611)"/>
|
||||
<path d="M21.7428 8.04487C21.2861 6.94306 20.3604 5.75356 19.6337 5.37781C20.2252 6.54013 20.5673 7.70596 20.6981 8.57583V8.59732C21.6903 11.2929 21.1496 14.034 20.3709 15.7089C19.166 18.3001 16.2493 20.9562 11.6833 20.8269C6.75411 20.6866 2.40857 17.0164 1.59703 12.2132C1.44916 11.4551 1.59703 11.0706 1.6714 10.4554C1.58084 10.9294 1.54628 11.0666 1.50122 11.9093V11.9633C1.50122 17.7823 6.20857 22.5 12.0149 22.5C17.2153 22.5 21.5328 18.7162 22.3785 13.746C22.396 13.6114 22.4104 13.4755 22.4262 13.3395C22.634 11.5323 22.4017 9.63292 21.7428 8.04487Z" fill="url(#paint2_radial_716_8611)"/>
|
||||
<path d="M16.6336 9.28306C16.6567 9.29928 16.6773 9.3155 16.6992 9.33173C16.4353 8.86218 16.1066 8.43234 15.7227 8.05497C12.4547 4.77978 14.8661 0.953025 15.2725 0.758355L15.2769 0.752655C12.6358 2.303 11.7398 5.17087 11.6576 6.60591C11.7801 6.59758 11.9021 6.58706 12.0268 6.58706C13.9977 6.58706 15.7144 7.67352 16.6336 9.28306Z" fill="url(#paint3_radial_716_8611)"/>
|
||||
<path d="M12.0334 9.93723C12.0163 10.2003 11.0923 11.1035 10.769 11.1035C7.77924 11.1035 7.29407 12.916 7.29407 12.916C7.42531 14.4427 8.48665 15.6997 9.77068 16.3649C9.8293 16.3951 9.88836 16.4223 9.94567 16.4495C10.0485 16.4933 10.1517 16.5372 10.2545 16.5762C10.6949 16.7318 11.156 16.8205 11.6226 16.8392C16.8628 17.0857 17.8786 10.5598 14.0965 8.66486C15.0647 8.49606 16.07 8.88672 16.6313 9.28176C15.7126 7.67222 13.9955 6.58575 12.0246 6.58575C11.8999 6.58575 11.7779 6.59628 11.6554 6.60461C10.6007 6.67784 9.59258 7.06775 8.76227 7.72352C8.92283 7.85988 9.10395 8.04139 9.485 8.41758C10.1998 9.12436 12.0294 9.85174 12.0334 9.93723Z" fill="url(#paint4_radial_716_8611)"/>
|
||||
<path d="M12.0334 9.93723C12.0163 10.2003 11.0923 11.1035 10.769 11.1035C7.77924 11.1035 7.29407 12.916 7.29407 12.916C7.42531 14.4427 8.48665 15.6997 9.77068 16.3649C9.8293 16.3951 9.88836 16.4223 9.94567 16.4495C10.0485 16.4933 10.1517 16.5372 10.2545 16.5762C10.6949 16.7318 11.156 16.8205 11.6226 16.8392C16.8628 17.0857 17.8786 10.5598 14.0965 8.66486C15.0647 8.49606 16.07 8.88672 16.6313 9.28176C15.7126 7.67222 13.9955 6.58575 12.0246 6.58575C11.8999 6.58575 11.7779 6.59628 11.6554 6.60461C10.6007 6.67784 9.59258 7.06775 8.76227 7.72352C8.92283 7.85988 9.10395 8.04139 9.485 8.41758C10.1998 9.12436 12.0294 9.85174 12.0334 9.93723Z" fill="url(#paint5_radial_716_8611)"/>
|
||||
<path d="M8.27355 7.3732C8.35886 7.42844 8.42886 7.47492 8.4923 7.51745C8.25276 6.67706 8.24264 5.78766 8.46298 4.94202C7.38283 5.43527 6.54286 6.21351 5.93213 6.90231C5.98156 6.90099 7.50664 6.87337 8.27355 7.3732Z" fill="url(#paint6_radial_716_8611)"/>
|
||||
<path d="M1.5974 12.2132C2.40893 17.0163 6.75448 20.6866 11.6871 20.8269C16.2532 20.9562 19.1681 18.3001 20.3747 15.7089C21.1535 14.0336 21.6942 11.2929 20.702 8.59729V8.57713C20.702 8.57976 20.702 8.58326 20.7042 8.59466C21.0769 11.0355 19.8384 13.4 17.9021 14.999C17.9001 15.0035 17.8982 15.0081 17.8964 15.0126C14.1231 18.0918 10.5125 16.8703 9.78145 16.3718C9.7307 16.3473 9.67951 16.3218 9.62876 16.2955C7.42865 15.2433 6.51999 13.233 6.71467 11.5103C4.85754 11.5103 4.22406 9.93982 4.22406 9.93982C4.22406 9.93982 5.89176 8.74812 8.08969 9.78461C10.1253 10.7448 12.0371 9.94025 12.0371 9.93982C12.0332 9.85432 10.2036 9.12474 9.49008 8.42016C9.10903 8.04398 8.92791 7.86246 8.76735 7.7261C8.68048 7.65248 8.58964 7.58368 8.49524 7.52003C8.43268 7.47619 8.36399 7.43234 8.27649 7.37578C7.50958 6.87595 5.98451 6.90358 5.9342 6.90489H5.92938C5.51246 6.37569 5.54177 4.63024 5.56539 4.26589C5.56058 4.24309 5.25478 4.42504 5.21541 4.45266C4.84751 4.7157 4.50361 5.0109 4.18775 5.33482C3.82832 5.70003 3.49994 6.09469 3.20603 6.51468C2.52986 7.47505 2.05032 8.56021 1.79514 9.70744C1.78683 9.72761 1.41278 11.3643 1.5974 12.2132Z" fill="url(#paint7_radial_716_8611)"/>
|
||||
<path d="M15.7227 8.05495C16.1065 8.43232 16.4353 8.86215 16.6991 9.3317C16.7538 9.37286 16.8064 9.41676 16.8566 9.46323C19.24 11.6625 17.9932 14.7759 17.8983 14.9995C19.8346 13.4005 21.0731 11.0359 20.7004 8.59511C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328C14.8661 0.952999 12.4546 4.77976 15.7227 8.05495Z" fill="url(#paint8_radial_716_8611)"/>
|
||||
<path d="M16.8557 9.46108C16.8055 9.4146 16.7529 9.3707 16.6982 9.32955C16.6768 9.31332 16.6545 9.2971 16.6326 9.28088C16.0713 8.88628 15.066 8.49518 14.0978 8.66398C17.8794 10.5589 16.864 17.0848 11.6238 16.8384C11.1573 16.8196 10.6962 16.731 10.2558 16.5753C10.153 16.5367 10.0498 16.4942 9.94697 16.4486C9.88747 16.4214 9.82841 16.3942 9.77197 16.364L9.77897 16.3684C10.51 16.8682 14.1206 18.0897 17.8939 15.0092C17.8939 15.0092 17.8961 15.0035 17.8996 14.9956C17.9932 14.7759 19.24 11.6625 16.8557 9.46108Z" fill="url(#paint9_radial_716_8611)"/>
|
||||
<path d="M7.29399 12.916C7.29399 12.916 7.77916 11.1035 10.7689 11.1035C11.0922 11.1035 12.0162 10.1994 12.0333 9.93724C12.0503 9.67505 10.1215 10.7422 8.08584 9.78203C5.88791 8.74554 4.22021 9.93724 4.22021 9.93724C4.22021 9.93724 4.85369 11.5078 6.71082 11.5078C6.51614 13.2304 7.4248 15.2389 9.62492 16.2929C9.67391 16.3162 9.72029 16.3421 9.7706 16.3649C8.48658 15.701 7.42655 14.4427 7.29399 12.916Z" fill="url(#paint10_radial_716_8611)"/>
|
||||
<path d="M21.7429 8.04486C21.2862 6.94305 20.3605 5.75354 19.6338 5.37779C20.2253 6.54011 20.5674 7.70594 20.6982 8.57582C20.6982 8.57582 20.6982 8.58196 20.7004 8.59336C19.5117 5.62332 17.4958 4.42549 15.8495 1.81805C15.766 1.68652 15.6829 1.55498 15.6015 1.41424C15.5555 1.33488 15.5184 1.26298 15.486 1.19502C15.4178 1.06318 15.3651 0.923844 15.3289 0.779812C15.3292 0.772973 15.327 0.76627 15.3226 0.761005C15.3182 0.755739 15.3121 0.752285 15.3053 0.751313C15.2989 0.749562 15.2921 0.749562 15.2856 0.751313C15.2839 0.752107 15.2823 0.75314 15.2808 0.754382C15.2782 0.754382 15.2756 0.757452 15.2729 0.758328L15.2773 0.752629C12.6362 2.30297 11.7402 5.17085 11.658 6.60588C11.7805 6.59755 11.9025 6.58703 12.0272 6.58703C13.9981 6.58703 15.7148 7.6735 16.6339 9.28303C16.0727 8.88843 15.0673 8.49734 14.0992 8.66614C17.8808 10.5611 16.8654 17.0869 11.6252 16.8405C11.1586 16.8218 10.6975 16.7331 10.2572 16.5775C10.1543 16.5389 10.0511 16.4963 9.94829 16.4507C9.88879 16.4236 9.82973 16.3964 9.7733 16.3661L9.7803 16.3705C9.72955 16.346 9.67836 16.3205 9.62761 16.2942C9.67661 16.3175 9.72298 16.3433 9.7733 16.3661C8.48665 15.701 7.42662 14.4427 7.29406 12.916C7.29406 12.916 7.77923 11.1035 10.769 11.1035C11.0923 11.1035 12.0163 10.1994 12.0333 9.93719C12.0294 9.8517 10.1998 9.12212 9.4863 8.41754C9.10525 8.04135 8.92414 7.85984 8.76358 7.72348C8.6767 7.64986 8.58586 7.58106 8.49146 7.51741C8.25193 6.67703 8.2418 5.78762 8.46215 4.94198C7.382 5.43523 6.54202 6.21347 5.93129 6.90227H5.92648C5.50956 6.37307 5.53887 4.62761 5.56249 4.26327C5.55768 4.24047 5.25188 4.42242 5.21251 4.45004C4.84461 4.71307 4.50071 5.00828 4.18485 5.3322C3.82541 5.69741 3.49703 6.09207 3.20313 6.51205C2.52695 7.47242 2.04742 8.55759 1.79224 9.70482C1.78743 9.72762 1.78305 9.75129 1.77824 9.77453C1.75855 9.86704 1.66931 10.3379 1.65706 10.4388C1.65706 10.4313 1.65706 10.4467 1.65706 10.4388C1.57514 10.9253 1.52269 11.4164 1.5 11.9093V11.9633C1.5 17.7823 6.20735 22.5 12.0137 22.5C17.2141 22.5 21.5316 18.7162 22.3773 13.746C22.3948 13.6114 22.4092 13.4755 22.4249 13.3395C22.6341 11.5323 22.4018 9.63291 21.7429 8.04486ZM20.6999 8.5859V8.5973V8.5859Z" fill="url(#paint11_linear_716_8611)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8611" x1="20.3513" y1="4.11945" x2="2.86044" y2="20.9578" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.05" stop-color="#FFF44F"/>
|
||||
<stop offset="0.11" stop-color="#FFE847"/>
|
||||
<stop offset="0.22" stop-color="#FFC830"/>
|
||||
<stop offset="0.37" stop-color="#FF980E"/>
|
||||
<stop offset="0.4" stop-color="#FF8B16"/>
|
||||
<stop offset="0.46" stop-color="#FF672A"/>
|
||||
<stop offset="0.53" stop-color="#FF3647"/>
|
||||
<stop offset="0.7" stop-color="#E31587"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint1_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.5445 3.16409) scale(21.9185 21.9666)">
|
||||
<stop offset="0.13" stop-color="#FFBD4F"/>
|
||||
<stop offset="0.19" stop-color="#FFAC31"/>
|
||||
<stop offset="0.25" stop-color="#FF9D17"/>
|
||||
<stop offset="0.28" stop-color="#FF980E"/>
|
||||
<stop offset="0.4" stop-color="#FF563B"/>
|
||||
<stop offset="0.47" stop-color="#FF3750"/>
|
||||
<stop offset="0.71" stop-color="#F5156C"/>
|
||||
<stop offset="0.78" stop-color="#EB0878"/>
|
||||
<stop offset="0.86" stop-color="#E50080"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint2_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.5354 12.1443) scale(21.9185 21.9666)">
|
||||
<stop offset="0.3" stop-color="#960E18"/>
|
||||
<stop offset="0.35" stop-color="#B11927" stop-opacity="0.74"/>
|
||||
<stop offset="0.43" stop-color="#DB293D" stop-opacity="0.34"/>
|
||||
<stop offset="0.5" stop-color="#F5334B" stop-opacity="0.09"/>
|
||||
<stop offset="0.53" stop-color="#FF3750" stop-opacity="0"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint3_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.1784 -1.82102) scale(15.879 15.9138)">
|
||||
<stop offset="0.13" stop-color="#FFF44F"/>
|
||||
<stop offset="0.25" stop-color="#FFDC3E"/>
|
||||
<stop offset="0.51" stop-color="#FF9D12"/>
|
||||
<stop offset="0.53" stop-color="#FF980E"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint4_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(9.11138 17.8823) scale(10.4362 10.4591)">
|
||||
<stop offset="0.35" stop-color="#3A8EE6"/>
|
||||
<stop offset="0.47" stop-color="#5C79F0"/>
|
||||
<stop offset="0.67" stop-color="#9059FF"/>
|
||||
<stop offset="1" stop-color="#C139E6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint5_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.8503 9.53372) rotate(-13.9265) scale(5.52987 6.50889)">
|
||||
<stop offset="0.21" stop-color="#9059FF" stop-opacity="0"/>
|
||||
<stop offset="0.28" stop-color="#8C4FF3" stop-opacity="0.06"/>
|
||||
<stop offset="0.75" stop-color="#7716A8" stop-opacity="0.45"/>
|
||||
<stop offset="0.97" stop-color="#6E008B" stop-opacity="0.6"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint6_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.2585 2.2653) scale(7.50813 7.52461)">
|
||||
<stop stop-color="#FFE226"/>
|
||||
<stop offset="0.12" stop-color="#FFDB27"/>
|
||||
<stop offset="0.3" stop-color="#FFC82A"/>
|
||||
<stop offset="0.5" stop-color="#FFA930"/>
|
||||
<stop offset="0.73" stop-color="#FF7E37"/>
|
||||
<stop offset="0.79" stop-color="#FF7139"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint7_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.1605 -2.50722) scale(32.0332 32.1034)">
|
||||
<stop offset="0.11" stop-color="#FFF44F"/>
|
||||
<stop offset="0.46" stop-color="#FF980E"/>
|
||||
<stop offset="0.62" stop-color="#FF5634"/>
|
||||
<stop offset="0.72" stop-color="#FF3647"/>
|
||||
<stop offset="0.9" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint8_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(14.0639 1.00031) rotate(84.2447) scale(23.3997 15.3407)">
|
||||
<stop stop-color="#FFF44F"/>
|
||||
<stop offset="0.06" stop-color="#FFE847"/>
|
||||
<stop offset="0.17" stop-color="#FFC830"/>
|
||||
<stop offset="0.3" stop-color="#FF980E"/>
|
||||
<stop offset="0.36" stop-color="#FF8B16"/>
|
||||
<stop offset="0.45" stop-color="#FF672A"/>
|
||||
<stop offset="0.57" stop-color="#FF3647"/>
|
||||
<stop offset="0.74" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint9_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(11.0818 5.05207) scale(19.9983 20.0422)">
|
||||
<stop offset="0.14" stop-color="#FFF44F"/>
|
||||
<stop offset="0.48" stop-color="#FF980E"/>
|
||||
<stop offset="0.59" stop-color="#FF5634"/>
|
||||
<stop offset="0.66" stop-color="#FF3647"/>
|
||||
<stop offset="0.9" stop-color="#E31587"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="paint10_radial_716_8611" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.3609 6.22535) scale(21.8883 21.9363)">
|
||||
<stop offset="0.09" stop-color="#FFF44F"/>
|
||||
<stop offset="0.23" stop-color="#FFE141"/>
|
||||
<stop offset="0.51" stop-color="#FFAF1E"/>
|
||||
<stop offset="0.63" stop-color="#FF980E"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint11_linear_716_8611" x1="20.1413" y1="4.02914" x2="5.25782" y2="18.8804" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.17" stop-color="#FFF44F" stop-opacity="0.8"/>
|
||||
<stop offset="0.27" stop-color="#FFF44F" stop-opacity="0.63"/>
|
||||
<stop offset="0.49" stop-color="#FFF44F" stop-opacity="0.22"/>
|
||||
<stop offset="0.6" stop-color="#FFF44F" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 15 KiB |
13
frontend/app/svg/icons/color/fr.svg
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_475_20176)">
|
||||
<rect y="0.600098" width="24" height="24" rx="12" fill="#FFF8D5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M18 0.600098H28V24.6001H18V0.600098Z" fill="#F50100"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.600098H8V24.6001H-4V0.600098Z" fill="#2E42A5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 0.600098H18V24.6001H6V0.600098Z" fill="#F7FCFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20176">
|
||||
<rect y="0.600098" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 623 B |
25
frontend/app/svg/icons/color/gb.svg
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_475_20166)">
|
||||
<rect y="0.199951" width="24" height="24" rx="12" fill="#FFF2E8"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="#2E42A5"/>
|
||||
<mask id="mask0_475_20166" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.199951V24.2H28V0.199951H-4Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_475_20166)">
|
||||
<path d="M-7.56323 22.4853L-0.521543 25.4634L28.1597 3.43776L31.874 -0.987722L24.344 -1.98308L12.6456 7.50839L3.22956 13.9034L-7.56323 22.4853Z" fill="white"/>
|
||||
<path d="M-6.59924 24.5718L-3.01183 26.3L30.5402 -1.39889H25.5031L-6.59924 24.5718Z" fill="#F50100"/>
|
||||
<path d="M31.5631 22.4853L24.5214 25.4634L-4.15982 3.43776L-7.87415 -0.987722L-0.344074 -1.98308L11.3543 7.50839L20.7703 13.9034L31.5631 22.4853Z" fill="white"/>
|
||||
<path d="M31.3229 23.9827L27.7355 25.7109L13.4487 13.8516L9.21293 12.5266L-8.23151 -0.972633H-3.19436L14.2403 12.2062L18.8713 13.795L31.3229 23.9827Z" fill="#F50100"/>
|
||||
<mask id="path-8-inside-1_475_20166" fill="white">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z"/>
|
||||
</mask>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7777 -1.80005H8.22215V8.19995H-5.97253V16.2H8.22215V26.2H15.7777V16.2H30.0275V8.19995H15.7777V-1.80005Z" fill="#F50100"/>
|
||||
<path d="M8.22215 -1.80005V-3.80005H6.22215V-1.80005H8.22215ZM15.7777 -1.80005H17.7777V-3.80005H15.7777V-1.80005ZM8.22215 8.19995V10.2H10.2222V8.19995H8.22215ZM-5.97253 8.19995V6.19995H-7.97253V8.19995H-5.97253ZM-5.97253 16.2H-7.97253V18.2H-5.97253V16.2ZM8.22215 16.2H10.2222V14.2H8.22215V16.2ZM8.22215 26.2H6.22215V28.2H8.22215V26.2ZM15.7777 26.2V28.2H17.7777V26.2H15.7777ZM15.7777 16.2V14.2H13.7777V16.2H15.7777ZM30.0275 16.2V18.2H32.0275V16.2H30.0275ZM30.0275 8.19995H32.0275V6.19995H30.0275V8.19995ZM15.7777 8.19995H13.7777V10.2H15.7777V8.19995ZM8.22215 0.199951H15.7777V-3.80005H8.22215V0.199951ZM10.2222 8.19995V-1.80005H6.22215V8.19995H10.2222ZM-5.97253 10.2H8.22215V6.19995H-5.97253V10.2ZM-3.97253 16.2V8.19995H-7.97253V16.2H-3.97253ZM8.22215 14.2H-5.97253V18.2H8.22215V14.2ZM10.2222 26.2V16.2H6.22215V26.2H10.2222ZM15.7777 24.2H8.22215V28.2H15.7777V24.2ZM13.7777 16.2V26.2H17.7777V16.2H13.7777ZM30.0275 14.2H15.7777V18.2H30.0275V14.2ZM28.0275 8.19995V16.2H32.0275V8.19995H28.0275ZM15.7777 10.2H30.0275V6.19995H15.7777V10.2ZM13.7777 -1.80005V8.19995H17.7777V-1.80005H13.7777Z" fill="white" mask="url(#path-8-inside-1_475_20166)"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20166">
|
||||
<rect y="0.199951" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
20
frontend/app/svg/icons/color/in.svg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_475_20156)">
|
||||
<rect y="0.800049" width="24" height="24" rx="12" fill="#FFF7E6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="#F7FCFF"/>
|
||||
<mask id="mask0_475_20156" maskUnits="userSpaceOnUse" x="-4" y="0" width="32" height="25">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.800049V24.8H28V0.800049H-4Z" fill="white"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0_475_20156)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.800049V8.80005H28V0.800049H-4Z" fill="#FF8C1A"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 16.8V24.8H28V16.8H-4Z" fill="#5EAA22"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 12.8C8 15.0092 9.79086 16.8 12 16.8C14.2091 16.8 16 15.0092 16 12.8C16 10.5909 14.2091 8.80005 12 8.80005C9.79086 8.80005 8 10.5909 8 12.8ZM15 12.8C15 14.4569 13.6569 15.8 12 15.8C10.3431 15.8 9 14.4569 9 12.8C9 11.1432 10.3431 9.80005 12 9.80005C13.6569 9.80005 15 11.1432 15 12.8Z" fill="#3D58DB"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9944 13.6608L11.4236 16.7813L11.7551 13.6263L10.3282 16.4597L11.5351 13.5259L9.36777 15.8424L11.3523 13.3675L8.62014 14.9796L11.2216 13.1641L8.14587 13.9411L11.1534 12.932L7.9834 12.8111L11.1534 12.6902L8.14587 11.6811L11.2216 12.4581L8.62014 10.6426L11.3523 12.2547L9.36777 9.77975L11.5351 12.0963L10.3282 9.16252L11.7551 11.9959L11.4236 8.84088L11.9944 11.9614L12.5653 8.84088L12.2338 11.9959L13.6607 9.16252L12.4538 12.0963L14.6211 9.77975L12.6366 12.2547L15.3688 10.6426L12.7673 12.4581L15.843 11.6811L12.8355 12.6902L16.0055 12.8111L12.8355 12.932L15.843 13.9411L12.7673 13.1641L15.3688 14.9796L12.6366 13.3675L14.6211 15.8424L12.4538 13.5259L13.6607 16.4597L12.2338 13.6263L12.5653 16.7813L11.9944 13.6608Z" fill="#3D58DB"/>
|
||||
</g>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20156">
|
||||
<rect y="0.800049" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
6
frontend/app/svg/icons/color/microsoft.svg
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="12.75" y="12.75" width="7.5" height="7.5" fill="#FEBA08"/>
|
||||
<rect x="3.75" y="12.75" width="7.5" height="7.5" fill="#05A6F0"/>
|
||||
<rect x="12.75" y="3.75" width="7.5" height="7.5" fill="#80BC06"/>
|
||||
<rect x="3.75" y="3.75" width="7.5" height="7.5" fill="#F25325"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 348 B |
18
frontend/app/svg/icons/color/opera.svg
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.54648 17.9145C7.38164 16.5445 6.63516 14.5184 6.58594 12.2461V11.7539C6.63516 9.48164 7.38984 7.45547 8.54648 6.08555C10.0559 4.1332 12.2707 3.25547 14.7727 3.25547C16.3148 3.25547 17.7668 3.36211 18.9973 4.18242C17.1516 2.51719 14.7152 1.5082 12.041 1.5H12C6.20039 1.5 1.5 6.20039 1.5 12C1.5 17.6273 5.92969 22.2293 11.4996 22.4918C11.6637 22.5 11.8359 22.5 12 22.5C14.6906 22.5 17.1434 21.491 18.9973 19.8258C17.7668 20.6461 16.3969 20.6789 14.8547 20.6789C12.3609 20.6871 10.0477 19.875 8.54648 17.9145Z" fill="url(#paint0_linear_716_8633)"/>
|
||||
<path d="M8.54651 6.08554C9.50627 4.94531 10.7531 4.26445 12.1149 4.26445C15.1746 4.26445 17.652 7.72617 17.652 12.0082C17.652 16.2902 15.1746 19.7519 12.1149 19.7519C10.7531 19.7519 9.51448 19.0629 8.54651 17.9309C10.0559 19.8832 12.2953 21.1301 14.7891 21.1301C16.3231 21.1301 17.7668 20.6625 18.9973 19.8422C21.1465 17.9062 22.5 15.109 22.5 12C22.5 8.89101 21.1465 6.09374 18.9973 4.17421C17.7668 3.3539 16.3313 2.88632 14.7891 2.88632C12.2871 2.88632 10.0477 4.12499 8.54651 6.08554Z" fill="url(#paint1_linear_716_8633)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8633" x1="10.2492" y1="1.8423" x2="10.2492" y2="22.1945" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.3" stop-color="#FF1B2D"/>
|
||||
<stop offset="0.4381" stop-color="#FA1A2C"/>
|
||||
<stop offset="0.5939" stop-color="#ED1528"/>
|
||||
<stop offset="0.7581" stop-color="#D60E21"/>
|
||||
<stop offset="0.9272" stop-color="#B70519"/>
|
||||
<stop offset="1" stop-color="#A70014"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_716_8633" x1="15.5219" y1="3.04194" x2="15.5219" y2="21.0423" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#9C0000"/>
|
||||
<stop offset="0.7" stop-color="#FF4B4B"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
153
frontend/app/svg/icons/color/safari.svg
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 22.5C17.799 22.5 22.5 17.799 22.5 12C22.5 6.20101 17.799 1.5 12 1.5C6.20101 1.5 1.5 6.20101 1.5 12C1.5 17.799 6.20101 22.5 12 22.5Z" fill="url(#paint0_linear_716_8465)"/>
|
||||
<path d="M12.0001 21.7125C17.3642 21.7125 21.7126 17.364 21.7126 12C21.7126 6.63591 17.3642 2.28748 12.0001 2.28748C6.63603 2.28748 2.2876 6.63591 2.2876 12C2.2876 17.364 6.63603 21.7125 12.0001 21.7125Z" fill="url(#paint1_radial_716_8465)"/>
|
||||
<path d="M12.0165 4.65002C11.9508 4.65002 11.8934 4.60082 11.8934 4.5352V2.82073C11.8934 2.7551 11.9508 2.7059 12.0165 2.7059C12.0821 2.7059 12.1395 2.7551 12.1395 2.82073V4.5352C12.1313 4.60082 12.0821 4.65002 12.0165 4.65002Z" fill="#F3F3F3"/>
|
||||
<path d="M12.0165 4.65822C11.9427 4.65822 11.8853 4.60081 11.8853 4.53518V2.82073C11.8853 2.7551 11.9427 2.69769 12.0165 2.69769C12.0903 2.69769 12.1477 2.7551 12.1477 2.82073V4.53518C12.1477 4.60081 12.0821 4.65822 12.0165 4.65822ZM12.0165 2.71404C11.9591 2.71404 11.9017 2.76332 11.9017 2.82073V4.53518C11.9017 4.59259 11.9509 4.64187 12.0165 4.64187C12.0739 4.64187 12.1313 4.59259 12.1313 4.53518V2.82073C12.1232 2.76332 12.0739 2.71404 12.0165 2.71404Z" fill="white"/>
|
||||
<path d="M12.8367 3.73126C12.7711 3.72305 12.7219 3.67385 12.7219 3.60823L12.7793 2.84527C12.7875 2.77973 12.845 2.73044 12.9106 2.73866C12.9762 2.74687 13.0254 2.79616 13.0254 2.86178L12.968 3.62465C12.9598 3.69028 12.9024 3.73948 12.8367 3.73135V3.73126Z" fill="#F3F3F3"/>
|
||||
<path d="M12.8368 3.73947C12.7629 3.73125 12.7137 3.67384 12.7137 3.60822L12.7712 2.84527C12.7794 2.77973 12.8368 2.72232 12.9106 2.73045C12.9844 2.73866 13.0337 2.79616 13.0337 2.8617L12.9762 3.62464C12.968 3.69848 12.9106 3.74768 12.8368 3.73947ZM12.9106 2.74687C12.8532 2.74687 12.7957 2.78794 12.7957 2.84535L12.7383 3.6083C12.7383 3.66563 12.7794 3.71491 12.845 3.72304C12.9024 3.72304 12.9598 3.68206 12.9598 3.62464L13.0172 2.8617C13.0172 2.80428 12.968 2.75509 12.9105 2.74687H12.9106Z" fill="white"/>
|
||||
<path d="M13.4519 4.79769C13.3862 4.78127 13.3452 4.72385 13.3535 4.65823L13.6898 2.97653C13.7062 2.91099 13.7636 2.86992 13.8292 2.88634C13.8949 2.90277 13.9358 2.96018 13.9276 3.02581L13.5913 4.70751C13.5831 4.76484 13.5175 4.80591 13.4518 4.79769H13.4519Z" fill="#F3F3F3"/>
|
||||
<path d="M13.4521 4.80588C13.3782 4.78945 13.3372 4.72383 13.3454 4.6582L13.6817 2.97652C13.6981 2.91098 13.7638 2.8617 13.8375 2.87812C13.9113 2.89455 13.9524 2.96018 13.9442 3.0258L13.6079 4.70748C13.5915 4.77302 13.5258 4.81409 13.4521 4.80588ZM13.8375 2.89455C13.7801 2.88634 13.7227 2.91911 13.7063 2.9766L13.37 4.65829C13.3618 4.71561 13.3946 4.77302 13.4602 4.78954C13.5176 4.79766 13.575 4.76481 13.5915 4.7074L13.9278 3.0258C13.936 2.96018 13.895 2.91098 13.8375 2.89455Z" fill="white"/>
|
||||
<path d="M14.4363 4.05941C14.4207 4.05565 14.4059 4.04884 14.3929 4.03938C14.3799 4.02992 14.3689 4.01799 14.3606 4.00427C14.3522 3.99055 14.3466 3.97532 14.3441 3.95944C14.3416 3.94357 14.3423 3.92736 14.3461 3.91174L14.5512 3.17352C14.5675 3.10789 14.6332 3.07504 14.6988 3.09147C14.7644 3.10789 14.8055 3.17352 14.7891 3.23914L14.584 3.97745C14.5675 4.04299 14.5019 4.07584 14.4363 4.05941Z" fill="#F3F3F3"/>
|
||||
<path d="M14.4364 4.06761C14.3707 4.05118 14.3215 3.97734 14.3462 3.9118L14.5512 3.17342C14.5676 3.10788 14.6414 3.06682 14.707 3.08324C14.7727 3.09967 14.8218 3.17351 14.7973 3.23905L14.5922 3.97743C14.5758 4.04297 14.5102 4.08403 14.4364 4.06761H14.4364ZM14.707 3.10788C14.6496 3.09146 14.584 3.12431 14.5676 3.18172L14.3626 3.91993C14.3462 3.97734 14.379 4.03484 14.4446 4.05118C14.502 4.06761 14.5676 4.03484 14.584 3.97743L14.7891 3.23905C14.7973 3.18172 14.7645 3.12431 14.707 3.1078V3.10788Z" fill="white"/>
|
||||
<path d="M14.8384 5.21602C14.7728 5.19138 14.7482 5.11754 14.7728 5.06013L15.429 3.47693C15.4535 3.41952 15.5275 3.38666 15.5848 3.41952C15.6505 3.44407 15.6751 3.518 15.6505 3.57532L14.9943 5.15853C14.9697 5.21602 14.8958 5.24879 14.8385 5.21602H14.8384Z" fill="#F3F3F3"/>
|
||||
<path d="M14.8383 5.22434C14.8068 5.21232 14.7813 5.18831 14.7674 5.15754C14.7536 5.12678 14.7525 5.09179 14.7644 5.06023L15.4207 3.47701C15.4453 3.41138 15.5192 3.38674 15.593 3.41138C15.6245 3.4234 15.65 3.44741 15.6639 3.47818C15.6777 3.50894 15.6788 3.54393 15.6669 3.57549L15.0106 5.15871C14.9777 5.22434 14.9039 5.25711 14.8383 5.22434ZM15.5848 3.42781C15.5274 3.40325 15.4618 3.42781 15.4371 3.48522L14.7809 5.06845C14.7563 5.12586 14.7891 5.18327 14.8465 5.20791C14.9039 5.23247 14.9695 5.20791 14.9942 5.1505L15.6504 3.56727C15.6669 3.51799 15.6422 3.45237 15.5848 3.42781Z" fill="white"/>
|
||||
<path d="M15.9458 4.69108C15.8883 4.65823 15.8637 4.59261 15.8883 4.5352L16.2328 3.8544C16.2656 3.79691 16.3312 3.77227 16.3969 3.80512C16.4543 3.83797 16.4788 3.9036 16.4543 3.96092L16.1097 4.6418C16.0769 4.69921 16.0113 4.72394 15.9457 4.69108H15.9458Z" fill="#F3F3F3"/>
|
||||
<path d="M15.9459 4.6993C15.8801 4.66644 15.8556 4.59261 15.8884 4.52698L16.2329 3.84618C16.2657 3.78047 16.3396 3.75591 16.4052 3.78868C16.4708 3.82154 16.4954 3.89538 16.4626 3.961L16.1181 4.6418C16.0852 4.70743 16.0114 4.73207 15.9458 4.69921L15.9459 4.6993ZM16.397 3.80511C16.3395 3.78055 16.2739 3.7969 16.2493 3.85431L15.9048 4.53519C15.8802 4.58439 15.9048 4.65002 15.954 4.68287C16.0114 4.70743 16.077 4.69108 16.1017 4.63367L16.4462 3.95279C16.4708 3.90359 16.4462 3.83796 16.397 3.80511Z" fill="white"/>
|
||||
<path d="M16.1098 5.90511C16.0524 5.86413 16.036 5.79029 16.077 5.74109L17.0286 4.32189C17.0613 4.26448 17.1353 4.25626 17.1926 4.28912C17.2501 4.3301 17.2664 4.40394 17.2254 4.45314L16.2738 5.87234C16.2411 5.92976 16.1672 5.94618 16.1098 5.90511Z" fill="#F3F3F3"/>
|
||||
<path d="M16.1099 5.91331C16.0524 5.87233 16.036 5.79028 16.0689 5.73287L17.0204 4.3137C17.0614 4.25629 17.1352 4.23987 17.2009 4.28093C17.2583 4.32192 17.2747 4.40397 17.2419 4.46138L16.2903 5.88054C16.2493 5.93795 16.1673 5.9543 16.1099 5.91331ZM17.1926 4.29736C17.1435 4.26451 17.0696 4.27272 17.0368 4.32192L16.0852 5.74108C16.0524 5.79019 16.0688 5.8559 16.1181 5.88867C16.1673 5.92153 16.2411 5.91331 16.2739 5.86412L17.2255 4.45317C17.2583 4.40397 17.2419 4.33013 17.1926 4.29736Z" fill="white"/>
|
||||
<path d="M17.3074 5.60161C17.2583 5.56054 17.2419 5.48671 17.2829 5.43751L17.7586 4.83867C17.7996 4.78956 17.8734 4.78126 17.9226 4.82233C17.9719 4.86331 17.9883 4.93715 17.9472 4.98635L17.4715 5.58519C17.4305 5.63438 17.3567 5.6426 17.3075 5.60161H17.3074Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2993 5.6098C17.2418 5.56873 17.2336 5.48668 17.2747 5.42927L17.7504 4.8305C17.7914 4.773 17.8734 4.76478 17.9308 4.81407C17.9882 4.85505 17.9965 4.93711 17.9554 4.99452L17.4797 5.59338C17.4387 5.65079 17.3567 5.659 17.2993 5.6098ZM17.9144 4.83041C17.8653 4.78943 17.7996 4.79764 17.7586 4.84684L17.2828 5.44569C17.2501 5.49489 17.2583 5.56052 17.3074 5.60151C17.3567 5.64257 17.4223 5.63436 17.4633 5.58516L17.939 4.98631C17.9719 4.93711 17.9636 4.86327 17.9145 4.8305L17.9144 4.83041Z" fill="white"/>
|
||||
<path d="M17.2254 6.83206C17.1762 6.78286 17.1762 6.70903 17.2254 6.66796L18.4393 5.46217C18.4886 5.41297 18.5624 5.4211 18.6034 5.46217C18.6444 5.50315 18.6526 5.58521 18.6034 5.62619L17.3977 6.83206C17.3484 6.88126 17.2746 6.88126 17.2254 6.83206Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2172 6.84025C17.1936 6.81618 17.1803 6.78378 17.1803 6.75003C17.1803 6.71627 17.1936 6.68387 17.2172 6.6598L18.4313 5.45392C18.4553 5.43024 18.4878 5.41696 18.5215 5.41696C18.5553 5.41696 18.5877 5.43024 18.6118 5.45392C18.6355 5.47799 18.6487 5.51039 18.6487 5.54414C18.6487 5.57789 18.6355 5.6103 18.6118 5.63437L17.3977 6.84016C17.3736 6.86382 17.3412 6.87708 17.3074 6.87708C17.2737 6.87708 17.2413 6.86382 17.2172 6.84016V6.84025ZM18.6036 5.46213C18.5626 5.42107 18.4888 5.42107 18.4478 5.46213L17.2336 6.66793C17.1926 6.709 17.1926 6.78284 17.2336 6.82382C17.2746 6.86489 17.3485 6.86489 17.3895 6.82382L18.6036 5.61802C18.6446 5.57696 18.6446 5.51133 18.6036 5.46213Z" fill="white"/>
|
||||
<path d="M18.4558 6.76641C18.4148 6.71722 18.4148 6.64338 18.464 6.60231L19.0464 6.11018C19.0956 6.0692 19.1694 6.07733 19.2105 6.12661C19.2515 6.17581 19.2515 6.24964 19.2023 6.29062L18.6199 6.78284C18.5706 6.82382 18.4968 6.81561 18.4558 6.76641Z" fill="#F3F3F3"/>
|
||||
<path d="M18.4476 6.77464C18.3984 6.71723 18.4066 6.63518 18.4558 6.59419L19.0382 6.10197C19.0874 6.05277 19.1694 6.06098 19.2186 6.1184C19.2679 6.17581 19.2597 6.25786 19.2105 6.29884L18.628 6.79107C18.5789 6.84018 18.4968 6.83205 18.4477 6.77464H18.4476ZM19.2023 6.12661C19.1612 6.07741 19.0956 6.07741 19.0465 6.11018L18.464 6.60241C18.423 6.64339 18.4148 6.70902 18.4558 6.75821C18.4968 6.80741 18.5625 6.80741 18.6116 6.77464L19.1941 6.28241C19.2433 6.24143 19.2433 6.17581 19.2023 6.12661Z" fill="white"/>
|
||||
<path d="M18.1277 7.9477C18.0868 7.89029 18.1032 7.81645 18.1606 7.7836L19.5878 6.83207C19.6452 6.79921 19.7191 6.81564 19.7519 6.86492C19.7929 6.92233 19.7765 6.99617 19.7191 7.02894L18.2918 7.98047C18.2426 8.01333 18.1687 7.9969 18.1277 7.9477Z" fill="#F3F3F3"/>
|
||||
<path d="M18.1196 7.94768C18.0786 7.89027 18.095 7.80821 18.1524 7.76723L19.5797 6.81564C19.6371 6.77465 19.7192 6.79108 19.7602 6.8567C19.8012 6.91411 19.7847 6.99617 19.7274 7.03706L18.3001 7.98875C18.2426 8.02981 18.1606 8.01339 18.1196 7.94776V7.94768ZM19.7438 6.87313C19.711 6.82385 19.6454 6.80742 19.5962 6.84028L18.1688 7.79179C18.1196 7.82464 18.1031 7.89027 18.1442 7.94768C18.177 7.99687 18.2426 8.0133 18.2919 7.98053L19.7192 7.02894C19.7684 6.98795 19.7766 6.92224 19.7438 6.87313Z" fill="white"/>
|
||||
<path d="M19.3501 8.11997C19.3173 8.06248 19.3337 7.98873 19.3911 7.95587L20.0556 7.57856C20.113 7.54571 20.1868 7.57035 20.2196 7.62767C20.2525 7.68517 20.236 7.75892 20.1786 7.79177L19.5141 8.16917C19.4567 8.20194 19.3829 8.17738 19.35 8.11989L19.3501 8.11997Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3419 8.12814C19.3091 8.06251 19.3255 7.98867 19.3829 7.9559L20.0474 7.57856C20.1048 7.54571 20.1869 7.57035 20.2196 7.62768C20.2525 7.69339 20.2361 7.76723 20.1787 7.8L19.5142 8.17743C19.4568 8.2102 19.3747 8.18555 19.3419 8.12814ZM20.2114 7.63598C20.1787 7.57856 20.113 7.56214 20.0638 7.59491L19.3994 7.97233C19.3502 8.0051 19.3337 8.07073 19.3583 8.11993C19.3911 8.17734 19.4568 8.19377 19.506 8.161L20.1704 7.78358C20.2196 7.75902 20.2361 7.69339 20.2114 7.63598Z" fill="white"/>
|
||||
<path d="M18.8005 9.21099C18.7759 9.14536 18.8005 9.07974 18.8661 9.05518L20.4493 8.39895C20.5067 8.3743 20.5805 8.40707 20.6051 8.46448C20.6297 8.53011 20.6051 8.59573 20.5395 8.62029L18.9564 9.27652C18.8989 9.30117 18.8251 9.27652 18.8005 9.21099Z" fill="#F3F3F3"/>
|
||||
<path d="M18.7922 9.21908C18.7676 9.15354 18.7922 9.07971 18.8578 9.04686L20.441 8.39064C20.4725 8.37875 20.5075 8.37984 20.5383 8.39368C20.569 8.40752 20.593 8.43297 20.605 8.46447C20.6297 8.53009 20.605 8.60393 20.5394 8.6367L18.9563 9.29292C18.9247 9.30484 18.8897 9.30377 18.859 9.28995C18.8282 9.27612 18.8042 9.25067 18.7922 9.21917V9.21908ZM20.5887 8.47268C20.564 8.41528 20.4984 8.39064 20.4492 8.40706L18.866 9.06328C18.8086 9.08784 18.784 9.15354 18.8086 9.21095C18.8332 9.26836 18.8988 9.293 18.9481 9.27658L20.5312 8.62035C20.5887 8.5958 20.6133 8.53009 20.5887 8.47268Z" fill="white"/>
|
||||
<path d="M19.9571 9.62116C19.9326 9.55545 19.9653 9.48991 20.031 9.46527L20.7528 9.22733C20.8102 9.20277 20.884 9.24375 20.9004 9.30116C20.925 9.36679 20.8922 9.43241 20.8266 9.45705L20.1048 9.695C20.0474 9.71955 19.9818 9.68678 19.9571 9.62107V9.62116Z" fill="#F3F3F3"/>
|
||||
<path d="M19.9489 9.62929C19.9243 9.56367 19.9571 9.48983 20.031 9.46527L20.7527 9.22732C20.8183 9.20276 20.8921 9.24375 20.9168 9.30946C20.9413 9.375 20.9086 9.44884 20.8347 9.47348L20.1129 9.71143C20.0473 9.72778 19.9735 9.69492 19.9489 9.62929ZM20.9004 9.31767C20.8839 9.26017 20.8183 9.22732 20.7609 9.24375L20.0391 9.4817C19.9817 9.49804 19.9571 9.56367 19.9735 9.62117C19.9899 9.67858 20.0555 9.71135 20.1129 9.69492L20.8347 9.45706C20.8921 9.4325 20.9168 9.375 20.9004 9.31759V9.31767Z" fill="white"/>
|
||||
<path d="M19.219 10.5973C19.2025 10.5317 19.2435 10.4661 19.3091 10.4578L20.9907 10.1297C21.0562 10.1133 21.1137 10.1625 21.1301 10.2281C21.1465 10.2937 21.1055 10.3594 21.0399 10.3676L19.3583 10.6957C19.2927 10.7039 19.2271 10.6629 19.2189 10.5973H19.219Z" fill="#F3F3F3"/>
|
||||
<path d="M19.2023 10.5974C19.1859 10.5235 19.2351 10.4579 19.3007 10.4415L20.9824 10.1133C21.048 10.0969 21.1136 10.1462 21.13 10.22C21.1464 10.2938 21.0972 10.3594 21.0316 10.3758L19.3499 10.704C19.2843 10.7204 19.2186 10.6712 19.2023 10.5973V10.5974ZM21.1136 10.2281C21.1054 10.1707 21.048 10.1297 20.9906 10.1379L19.3089 10.4661C19.2515 10.4743 19.2105 10.5399 19.2268 10.5974C19.2351 10.6548 19.2925 10.6958 19.35 10.6875L21.0316 10.3594C21.089 10.343 21.13 10.2856 21.1136 10.2281Z" fill="white"/>
|
||||
<path d="M20.2689 11.2289C20.2607 11.1633 20.3016 11.1059 20.3673 11.0977L21.1219 11.0074C21.1875 10.9992 21.245 11.0485 21.2531 11.1141C21.2614 11.1797 21.2204 11.2371 21.1548 11.2454L20.4 11.3356C20.3426 11.3438 20.277 11.2946 20.2688 11.2289H20.2689Z" fill="#F3F3F3"/>
|
||||
<path d="M20.2607 11.2289C20.2524 11.1551 20.3016 11.0895 20.3673 11.0812L21.1219 10.9911C21.1875 10.9829 21.2531 11.032 21.2613 11.1059C21.2695 11.1797 21.2203 11.2453 21.1547 11.2536L20.4 11.3437C20.3345 11.3519 20.2688 11.3027 20.2607 11.2289ZM21.2531 11.1141C21.245 11.0567 21.1876 11.0074 21.1301 11.0156L20.3755 11.1059C20.3181 11.1141 20.277 11.1715 20.2852 11.2289C20.2934 11.2863 20.3508 11.3356 20.4082 11.3274L21.1629 11.2371C21.2203 11.2289 21.2613 11.1715 21.2532 11.1141H21.2531Z" fill="white"/>
|
||||
<path d="M19.3502 12.0246C19.3502 11.959 19.3993 11.9016 19.465 11.9016H21.1795C21.2451 11.9016 21.2943 11.959 21.2943 12.0246C21.2943 12.0903 21.2451 12.1477 21.1795 12.1477H19.465C19.3994 12.1477 19.3502 12.0903 19.3502 12.0246Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3419 12.0246C19.3419 11.9508 19.3993 11.8934 19.465 11.8934H21.1794C21.245 11.8934 21.3025 11.9508 21.3025 12.0246C21.3025 12.0985 21.245 12.1559 21.1794 12.1559H19.465C19.3993 12.1559 19.3419 12.0985 19.3419 12.0246ZM21.286 12.0329C21.286 11.9755 21.2368 11.918 21.1793 11.918H19.465C19.4076 11.918 19.3583 11.9672 19.3583 12.0329C19.3583 12.0903 19.4076 12.1477 19.465 12.1477H21.1795C21.2369 12.1395 21.2861 12.0903 21.2861 12.0329H21.286Z" fill="white"/>
|
||||
<path d="M20.2606 12.8531C20.2687 12.7875 20.318 12.7383 20.3836 12.7383L21.1465 12.7957C21.2121 12.8039 21.2612 12.8613 21.253 12.927C21.2449 12.9926 21.1956 13.0418 21.13 13.0418L20.3672 12.9844C20.3098 12.9762 20.2605 12.9188 20.2605 12.8531H20.2606Z" fill="#F3F3F3"/>
|
||||
<path d="M20.2524 12.8531C20.2607 12.7793 20.3181 12.7301 20.3837 12.7301L21.1467 12.7875C21.2123 12.7957 21.2697 12.8531 21.2615 12.927C21.2533 13.0008 21.1958 13.05 21.1302 13.05L20.3673 12.9926C20.3016 12.9844 20.2524 12.9188 20.2524 12.8531ZM21.2533 12.927C21.2615 12.8696 21.2123 12.8122 21.1548 12.8122L20.3918 12.7547C20.3345 12.7547 20.2852 12.7957 20.277 12.8614C20.2689 12.9188 20.3181 12.9762 20.3755 12.9762L21.1385 13.0336C21.1958 13.0336 21.2451 12.9845 21.2533 12.927Z" fill="white"/>
|
||||
<path d="M19.2025 13.452C19.2189 13.3863 19.2763 13.3453 19.3419 13.3536L21.0236 13.6899C21.0892 13.7063 21.1303 13.7637 21.1138 13.8293C21.0974 13.8949 21.04 13.936 20.9744 13.9278L19.2926 13.5914C19.2352 13.5832 19.1943 13.5176 19.2025 13.452Z" fill="#F3F3F3"/>
|
||||
<path d="M19.194 13.452C19.2105 13.3781 19.2761 13.3372 19.3417 13.3453L21.0235 13.6817C21.0891 13.698 21.1383 13.7636 21.1219 13.8375C21.1055 13.9113 21.0399 13.9524 20.9743 13.9442L19.2924 13.6078C19.2268 13.5914 19.1858 13.5258 19.194 13.4521V13.452ZM21.1055 13.8375C21.1137 13.7801 21.081 13.7227 21.0235 13.7062L19.3416 13.3699C19.2843 13.3618 19.2268 13.3946 19.2104 13.4602C19.2023 13.5176 19.235 13.575 19.2925 13.5914L20.9743 13.9277C21.0399 13.9359 21.0891 13.8949 21.1055 13.8375Z" fill="white"/>
|
||||
<path d="M19.9406 14.4364C19.9444 14.4207 19.9512 14.406 19.9607 14.393C19.9701 14.38 19.982 14.3691 19.9958 14.3607C20.0095 14.3523 20.0247 14.3467 20.0406 14.3442C20.0564 14.3417 20.0726 14.3424 20.0882 14.3462L20.8265 14.5512C20.8921 14.5676 20.9249 14.6333 20.9086 14.6989C20.9048 14.7145 20.898 14.7292 20.8886 14.7422C20.8791 14.7552 20.8672 14.7663 20.8535 14.7746C20.8397 14.783 20.8245 14.7886 20.8086 14.7911C20.7927 14.7936 20.7765 14.7929 20.7609 14.7892L20.0226 14.584C19.957 14.5676 19.9242 14.502 19.9406 14.4364H19.9406Z" fill="#F3F3F3"/>
|
||||
<path d="M19.9325 14.4364C19.949 14.3707 20.0228 14.3215 20.0884 14.3462L20.8267 14.5512C20.8923 14.5676 20.9334 14.6414 20.917 14.707C20.9005 14.7726 20.8267 14.8218 20.7611 14.7973L20.0228 14.5922C19.9572 14.5758 19.9161 14.5102 19.9326 14.4364L19.9325 14.4364ZM20.8923 14.707C20.9088 14.6496 20.8759 14.584 20.8185 14.5676L20.0802 14.3625C20.0228 14.3461 19.9654 14.3789 19.949 14.4446C19.9326 14.502 19.9654 14.5676 20.0228 14.584L20.7611 14.7891C20.8185 14.7973 20.8759 14.7645 20.8923 14.707Z" fill="white"/>
|
||||
<path d="M18.784 14.8301C18.8086 14.7645 18.8825 14.7398 18.9398 14.7645L20.5231 15.4207C20.5805 15.4453 20.6133 15.5192 20.5887 15.5765C20.5641 15.6422 20.4902 15.6668 20.4328 15.6422L18.8497 14.986C18.784 14.9614 18.7594 14.8875 18.784 14.8302V14.8301Z" fill="#F3F3F3"/>
|
||||
<path d="M18.7758 14.8219C18.7878 14.7904 18.8118 14.7649 18.8426 14.7511C18.8734 14.7372 18.9084 14.7361 18.9399 14.7481L20.5231 15.4043C20.5887 15.429 20.6133 15.5028 20.5887 15.5767C20.5767 15.6082 20.5527 15.6337 20.5219 15.6475C20.4912 15.6613 20.4562 15.6624 20.4246 15.6505L18.8414 14.9942C18.7758 14.9614 18.7513 14.8875 18.7758 14.8219ZM20.5723 15.5684C20.5968 15.511 20.5723 15.4454 20.5149 15.4208L18.9317 14.7645C18.8743 14.7399 18.8169 14.7727 18.7922 14.8301C18.7677 14.8875 18.7922 14.9532 18.8497 14.9778L20.4328 15.6341C20.4902 15.6505 20.5558 15.6259 20.5723 15.5684Z" fill="white"/>
|
||||
<path d="M19.3172 15.9375C19.3501 15.8801 19.4156 15.8554 19.473 15.8801L20.1538 16.2247C20.2112 16.2492 20.2358 16.3231 20.2031 16.3887C20.1702 16.4461 20.1046 16.4708 20.0472 16.4461L19.3665 16.1016C19.309 16.0688 19.2844 15.9949 19.3172 15.9375Z" fill="#F3F3F3"/>
|
||||
<path d="M19.3089 15.9293C19.3417 15.8637 19.4156 15.8391 19.4812 15.8719L20.162 16.2165C20.2277 16.2493 20.2523 16.3232 20.2194 16.3887C20.1867 16.4543 20.1127 16.479 20.0472 16.4461L19.3664 16.1016C19.3007 16.0771 19.2761 15.9949 19.3089 15.9293ZM20.1949 16.3805C20.2194 16.3231 20.203 16.2575 20.1456 16.2329L19.4648 15.8883C19.4155 15.8638 19.35 15.8883 19.3171 15.9375C19.2925 15.9949 19.3089 16.0606 19.3663 16.0852L20.0471 16.4298C20.1046 16.4543 20.1702 16.438 20.1949 16.3805Z" fill="white"/>
|
||||
<path d="M18.1113 16.0934C18.1523 16.036 18.218 16.0196 18.2754 16.0605L19.7027 17.0121C19.7601 17.0449 19.7683 17.1188 19.7356 17.1762C19.6945 17.2337 19.6289 17.25 19.5715 17.209L18.1441 16.2574C18.0867 16.2164 18.0703 16.1426 18.1113 16.0934Z" fill="#F3F3F3"/>
|
||||
<path d="M18.103 16.0852C18.1441 16.0278 18.2262 16.0113 18.2836 16.0442L19.711 16.9957C19.7684 17.0367 19.7848 17.1105 19.7437 17.1761C19.7028 17.2336 19.6207 17.25 19.5634 17.2172L18.1359 16.2656C18.0703 16.2246 18.0621 16.1426 18.103 16.0852ZM19.7192 17.1679C19.752 17.1188 19.7437 17.0449 19.6946 17.0121L18.2672 16.0605C18.218 16.0278 18.1523 16.0442 18.1195 16.0934C18.0867 16.1426 18.0949 16.2164 18.144 16.2492L19.5715 17.2008C19.6207 17.2336 19.6863 17.2172 19.7192 17.168V17.1679Z" fill="white"/>
|
||||
<path d="M18.4148 17.2828C18.4558 17.2336 18.5297 17.2172 18.5788 17.2583L19.1777 17.7258C19.2269 17.7668 19.2351 17.8406 19.1941 17.8899C19.1531 17.939 19.0793 17.9555 19.03 17.9145L18.4312 17.4469C18.3821 17.4059 18.3738 17.332 18.4148 17.2828Z" fill="#F3F3F3"/>
|
||||
<path d="M18.4067 17.2747C18.4477 17.2172 18.5298 17.209 18.5872 17.2501L19.186 17.7176C19.2434 17.7586 19.2516 17.8407 19.2106 17.8981C19.1696 17.9556 19.0875 17.9637 19.0302 17.9227L18.4313 17.4551C18.3739 17.4141 18.3658 17.3321 18.4067 17.2747ZM19.1942 17.8899C19.2352 17.8407 19.227 17.775 19.1778 17.734L18.579 17.2664C18.5298 17.2337 18.4641 17.2419 18.4232 17.291C18.3821 17.3403 18.3903 17.4059 18.4395 17.4469L19.0383 17.9145C19.0875 17.9474 19.1531 17.9391 19.1941 17.8899H19.1942Z" fill="white"/>
|
||||
<path d="M17.1926 17.2008C17.2419 17.1516 17.3157 17.1516 17.3567 17.2008L18.5708 18.4066C18.62 18.4559 18.6118 18.5297 18.5708 18.5707C18.5216 18.6199 18.4477 18.6199 18.4067 18.5707L17.1926 17.3649C17.1516 17.3238 17.1516 17.2418 17.1926 17.2008Z" fill="#F3F3F3"/>
|
||||
<path d="M17.1925 17.1926C17.2165 17.1689 17.249 17.1556 17.2827 17.1556C17.3165 17.1556 17.3489 17.1689 17.373 17.1926L18.5871 18.3984C18.6108 18.4224 18.624 18.4549 18.624 18.4886C18.624 18.5224 18.6108 18.5548 18.5871 18.5789C18.563 18.6026 18.5306 18.6158 18.4969 18.6158C18.4631 18.6158 18.4307 18.6026 18.4066 18.5789L17.1925 17.3731C17.1351 17.3238 17.1351 17.2419 17.1925 17.1926ZM18.5707 18.5625C18.6117 18.5215 18.6117 18.4477 18.5707 18.4067L17.3566 17.2008C17.3156 17.1598 17.2418 17.1598 17.2008 17.2008C17.1597 17.2418 17.1597 17.3156 17.2008 17.3566L18.4148 18.5625C18.4558 18.6118 18.5215 18.6118 18.5707 18.5625Z" fill="white"/>
|
||||
<path d="M17.2664 18.423C17.3157 18.382 17.3895 18.382 17.4305 18.4312L17.931 19.0055C17.9719 19.0547 17.9638 19.1286 17.9145 19.1696C17.8654 19.2105 17.7914 19.2105 17.7504 19.1614L17.25 18.5871C17.209 18.5462 17.2172 18.4723 17.2664 18.423Z" fill="#F3F3F3"/>
|
||||
<path d="M17.2583 18.4231C17.3158 18.3739 17.3896 18.3821 17.4387 18.4313L17.9392 19.0055C17.9883 19.0547 17.9801 19.1367 17.9227 19.186C17.8653 19.2352 17.7915 19.227 17.7423 19.1778L17.2418 18.6036C17.2008 18.5462 17.2008 18.4641 17.2583 18.4231H17.2583ZM17.9146 19.1696C17.9637 19.1286 17.9637 19.0629 17.9309 19.0138L17.4305 18.4395C17.3895 18.3985 17.3239 18.3903 17.2747 18.4313C17.2255 18.4723 17.2255 18.538 17.2583 18.5871L17.7587 19.1614C17.7997 19.2106 17.8654 19.2106 17.9145 19.1696H17.9146Z" fill="white"/>
|
||||
<path d="M16.0852 18.1113C16.1426 18.0704 16.2165 18.0868 16.2494 18.1442L17.2009 19.5633C17.2337 19.6207 17.2173 19.6945 17.1681 19.7274C17.1107 19.7684 17.0368 19.7519 17.004 19.6945L16.0524 18.2754C16.0195 18.218 16.0359 18.1441 16.0851 18.1113H16.0852Z" fill="#F3F3F3"/>
|
||||
<path d="M16.0852 18.1031C16.1426 18.0622 16.2246 18.0786 16.2656 18.136L17.2171 19.5551C17.2581 19.6124 17.2417 19.6945 17.1761 19.7354C17.1187 19.7765 17.0367 19.7601 16.9956 19.7027L16.0442 18.2836C16.0032 18.218 16.0196 18.1442 16.0852 18.1032V18.1031ZM17.1679 19.7191C17.2171 19.6862 17.2336 19.6206 17.2007 19.5714L16.2493 18.1523C16.2164 18.1032 16.1508 18.0949 16.0935 18.1278C16.0442 18.1605 16.0278 18.2262 16.0606 18.2754L17.0121 19.6945C17.0449 19.7354 17.1187 19.7519 17.1679 19.719L17.1679 19.7191Z" fill="white"/>
|
||||
<path d="M15.9129 19.3253C15.9704 19.2926 16.0442 19.309 16.077 19.3664L16.4544 20.0309C16.4871 20.0883 16.4625 20.1621 16.4051 20.1949C16.3477 20.2278 16.2738 20.2113 16.2411 20.1539L15.8638 19.4894C15.8391 19.432 15.8555 19.3582 15.9129 19.3254L15.9129 19.3253Z" fill="#F3F3F3"/>
|
||||
<path d="M15.9129 19.3173C15.9785 19.2844 16.0524 19.3008 16.0852 19.3582L16.4625 20.0228C16.4953 20.0802 16.4789 20.1623 16.4134 20.195C16.3477 20.2279 16.2738 20.2115 16.241 20.154L15.8637 19.4895C15.8309 19.4321 15.8473 19.3582 15.9128 19.3173H15.9129ZM16.4051 20.1869C16.4543 20.154 16.4789 20.0884 16.4461 20.0392L16.0688 19.3747C16.036 19.3255 15.9703 19.309 15.9211 19.3336C15.8719 19.3665 15.8473 19.4321 15.8801 19.4813L16.2575 20.1458C16.282 20.195 16.3559 20.2197 16.4051 20.1868V20.1869Z" fill="white"/>
|
||||
<path d="M14.822 18.784C14.8876 18.7595 14.9533 18.784 14.9779 18.8415L15.6424 20.4246C15.6669 20.4821 15.6342 20.5559 15.5767 20.5804C15.5193 20.6051 15.4455 20.5804 15.4209 20.523L14.7565 18.9399C14.7318 18.8824 14.7646 18.8087 14.822 18.784Z" fill="#F3F3F3"/>
|
||||
<path d="M14.8218 18.7758C14.8874 18.7512 14.9613 18.7758 14.9941 18.8414L15.6585 20.4246C15.6704 20.4562 15.6693 20.4911 15.6555 20.5219C15.6417 20.5526 15.6162 20.5766 15.5847 20.5886C15.5191 20.6133 15.4453 20.5886 15.4125 20.523L14.7481 18.9399C14.7234 18.8824 14.7563 18.8086 14.8218 18.7758ZM15.5683 20.5723C15.6257 20.5477 15.6503 20.482 15.6257 20.4328L14.9613 18.8496C14.9367 18.7922 14.8711 18.7676 14.8137 18.7922C14.7563 18.8168 14.7315 18.8824 14.7563 18.9317L15.4206 20.5149C15.4535 20.5723 15.5109 20.5969 15.5683 20.5723Z" fill="white"/>
|
||||
<path d="M14.4199 19.9489C14.4856 19.9243 14.5512 19.9571 14.5758 20.0227L14.8137 20.7446C14.8383 20.802 14.7973 20.8758 14.7399 20.8923C14.6743 20.9168 14.6087 20.884 14.5841 20.8184L14.3462 20.0965C14.3216 20.0391 14.3544 19.9735 14.42 19.9489H14.4199Z" fill="#F3F3F3"/>
|
||||
<path d="M14.4119 19.9407C14.4435 19.9288 14.4785 19.9299 14.5092 19.9438C14.54 19.9576 14.564 19.9831 14.576 20.0145L14.814 20.7364C14.8385 20.802 14.7975 20.8758 14.7318 20.9005C14.7003 20.9124 14.6653 20.9113 14.6345 20.8974C14.6038 20.8836 14.5798 20.8582 14.5678 20.8267L14.3299 20.1048C14.3134 20.0392 14.3463 19.9654 14.4119 19.9407ZM14.7319 20.884C14.7893 20.8676 14.8221 20.802 14.8057 20.7446L14.5678 20.0228C14.5514 19.9654 14.4858 19.9407 14.4284 19.9571C14.3709 19.9736 14.3381 20.0392 14.3545 20.0966L14.5924 20.8184C14.5966 20.8324 14.6037 20.8453 14.6131 20.8563C14.6226 20.8673 14.6343 20.8762 14.6475 20.8824C14.6607 20.8885 14.675 20.8919 14.6895 20.8922C14.7041 20.8925 14.7185 20.8897 14.7319 20.8841V20.884Z" fill="white"/>
|
||||
<path d="M13.452 19.2024C13.5176 19.186 13.5833 19.227 13.5914 19.2926L13.936 20.9744C13.9524 21.0399 13.9032 21.0974 13.8375 21.1137C13.772 21.1302 13.7063 21.0892 13.6981 21.0235L13.3534 19.3418C13.3453 19.2844 13.3863 19.2188 13.4519 19.2023L13.452 19.2024Z" fill="#F3F3F3"/>
|
||||
<path d="M13.4521 19.194C13.5258 19.1777 13.5914 19.2269 13.6079 19.2925L13.9524 20.9743C13.9688 21.0399 13.9195 21.1137 13.8539 21.1219C13.7801 21.1384 13.7145 21.0892 13.6981 21.0235L13.3535 19.3417C13.3372 19.2761 13.3783 19.2104 13.452 19.1941L13.4521 19.194ZM13.8375 21.1055C13.895 21.0974 13.936 21.0399 13.9277 20.9743L13.5832 19.2925C13.5751 19.2351 13.5095 19.1941 13.452 19.2104C13.3946 19.2187 13.3536 19.2761 13.3618 19.3417L13.7063 21.0235C13.7227 21.081 13.7801 21.1137 13.8376 21.1056L13.8375 21.1055Z" fill="white"/>
|
||||
<path d="M12.8286 20.2687C12.8942 20.2605 12.9516 20.3016 12.968 20.3672L13.0664 21.1218C13.0746 21.1875 13.0254 21.2449 12.9597 21.2531C12.8942 21.2613 12.8368 21.2203 12.8204 21.1547L12.722 20.4C12.7138 20.3344 12.7629 20.277 12.8286 20.2687Z" fill="#F3F3F3"/>
|
||||
<path d="M12.8284 20.2606C12.9023 20.2524 12.9679 20.3016 12.9762 20.3673L13.0746 21.1219C13.0828 21.1876 13.0336 21.2532 12.9597 21.2614C12.8859 21.2696 12.8202 21.2204 12.812 21.1547L12.7135 20.4C12.7053 20.3344 12.7545 20.2688 12.8284 20.2606ZM12.9515 21.245C13.0089 21.2368 13.0583 21.1793 13.05 21.1219L12.9515 20.3673C12.9433 20.3098 12.8859 20.2688 12.8284 20.277C12.771 20.2852 12.7217 20.3426 12.7299 20.4L12.8284 21.1548C12.8366 21.2122 12.8941 21.2532 12.9515 21.245Z" fill="white"/>
|
||||
<path d="M11.9836 19.3499C12.0492 19.3499 12.1067 19.3992 12.1067 19.4648V21.1792C12.1067 21.2449 12.0492 21.2942 11.9836 21.2942C11.918 21.2942 11.8606 21.2449 11.8606 21.1792V19.4648C11.8688 19.3992 11.918 19.3499 11.9836 19.3499Z" fill="#F3F3F3"/>
|
||||
<path d="M11.9837 19.3417C12.0575 19.3417 12.1149 19.3991 12.1149 19.4647V21.1792C12.1149 21.2448 12.0575 21.3022 11.9837 21.3022C11.9098 21.3022 11.8524 21.2448 11.8524 21.1792V19.4648C11.8524 19.3992 11.918 19.3417 11.9837 19.3417ZM11.9837 21.2859C12.0411 21.2859 12.0985 21.2367 12.0985 21.1792V19.4648C12.0985 19.4073 12.0493 19.3581 11.9837 19.3581C11.9263 19.3581 11.8688 19.4073 11.8688 19.4648V21.1792C11.877 21.2367 11.9263 21.2859 11.9837 21.2859Z" fill="white"/>
|
||||
<path d="M11.1633 20.2687C11.2289 20.277 11.2781 20.3262 11.2781 20.3918L11.2207 21.1547C11.2126 21.2203 11.1551 21.2695 11.0894 21.2614C11.0238 21.2531 10.9746 21.2039 10.9746 21.1383L11.032 20.3754C11.0402 20.3098 11.0976 20.2605 11.1633 20.2687Z" fill="#F3F3F3"/>
|
||||
<path d="M11.1633 20.2606C11.2371 20.2688 11.2863 20.3262 11.2863 20.3918L11.2289 21.1548C11.2207 21.2204 11.1633 21.2778 11.0895 21.2696C11.0157 21.2614 10.9664 21.204 10.9664 21.1384L11.0238 20.3754C11.0321 20.3016 11.0895 20.2524 11.1633 20.2606ZM11.0895 21.2532C11.1469 21.2532 11.2044 21.2122 11.2044 21.1548L11.2618 20.3918C11.2618 20.3344 11.2207 20.2852 11.1551 20.277C11.0977 20.277 11.0403 20.318 11.0403 20.3755L10.9829 21.1384C10.9829 21.1958 11.0321 21.2451 11.0896 21.2532H11.0895Z" fill="white"/>
|
||||
<path d="M10.548 19.2023C10.6136 19.2187 10.6546 19.2761 10.6464 19.3417L10.3101 21.0235C10.2936 21.0892 10.2362 21.1302 10.1706 21.1137C10.105 21.0974 10.064 21.04 10.0722 20.9743L10.4085 19.2925C10.4167 19.2351 10.4824 19.1941 10.548 19.2023Z" fill="#F3F3F3"/>
|
||||
<path d="M10.5482 19.194C10.622 19.2105 10.663 19.2762 10.6548 19.3417L10.3185 21.0235C10.302 21.0891 10.2364 21.1383 10.1627 21.1219C10.0888 21.1054 10.0478 21.0398 10.056 20.9742L10.3923 19.2925C10.4087 19.2269 10.4744 19.1858 10.5481 19.1941L10.5482 19.194ZM10.1627 21.1054C10.2201 21.1137 10.2775 21.0809 10.2939 21.0235L10.6302 19.3417C10.6384 19.2843 10.6056 19.2269 10.54 19.2105C10.4826 19.2023 10.4252 19.2351 10.4087 19.2926L10.0724 20.9742C10.0642 21.0398 10.1052 21.0891 10.1627 21.1054Z" fill="white"/>
|
||||
<path d="M9.56376 19.9407C9.62948 19.9572 9.67046 20.0228 9.65403 20.0884L9.44894 20.8266C9.4326 20.8922 9.36697 20.925 9.30135 20.9087C9.28571 20.9049 9.27098 20.8981 9.25798 20.8887C9.24498 20.8792 9.23397 20.8673 9.22559 20.8536C9.2172 20.8398 9.21161 20.8246 9.20912 20.8087C9.20663 20.7928 9.20729 20.7766 9.21108 20.761L9.41617 20.0228C9.4326 19.9572 9.49822 19.9244 9.56385 19.9407H9.56376Z" fill="#F3F3F3"/>
|
||||
<path d="M9.56372 19.9326C9.62943 19.9489 9.67863 20.0228 9.65398 20.0884L9.4489 20.8267C9.43256 20.8923 9.35872 20.9334 9.2931 20.9169C9.22748 20.9005 9.17828 20.8267 9.20284 20.7611L9.40792 20.0228C9.42435 19.9572 9.48997 19.9161 9.56372 19.9325V19.9326ZM9.2931 20.8923C9.35051 20.9087 9.41613 20.8759 9.43256 20.8185L9.63756 20.0802C9.65398 20.0228 9.62122 19.9654 9.55559 19.9489C9.49818 19.9325 9.43256 19.9654 9.41613 20.0228L9.21105 20.7611C9.20284 20.8185 9.23561 20.8759 9.2931 20.8923Z" fill="white"/>
|
||||
<path d="M9.16171 18.784C9.22733 18.8086 9.25188 18.8824 9.22733 18.9398L8.5711 20.523C8.54654 20.5805 8.47262 20.6133 8.41529 20.5805C8.3578 20.5477 8.32495 20.4821 8.34959 20.4247L9.00582 18.8414C9.03037 18.784 9.1043 18.7512 9.16162 18.784H9.16171Z" fill="#F3F3F3"/>
|
||||
<path d="M9.16172 18.7758C9.19325 18.7878 9.21872 18.8118 9.23256 18.8426C9.2464 18.8733 9.24748 18.9083 9.23556 18.9399L8.5793 20.523C8.55466 20.5886 8.48082 20.6133 8.40698 20.5886C8.37548 20.5766 8.35002 20.5526 8.33618 20.5219C8.32234 20.4911 8.32125 20.4562 8.33314 20.4246L8.9894 18.8414C9.02226 18.7758 9.0961 18.743 9.16172 18.7758ZM8.41519 20.5723C8.47261 20.5968 8.53823 20.5723 8.56287 20.5149L9.21914 18.9317C9.24369 18.8743 9.21092 18.8168 9.15351 18.7922C9.0961 18.7677 9.03047 18.7922 9.00583 18.8496L8.34957 20.4328C8.33314 20.482 8.35778 20.5476 8.41519 20.5723Z" fill="white"/>
|
||||
<path d="M8.05438 19.3091C8.11179 19.3419 8.13635 19.4075 8.11179 19.4649L7.76725 20.1457C7.73439 20.2031 7.66877 20.2277 7.60314 20.1949C7.54573 20.1621 7.52118 20.0965 7.54573 20.0391L7.89036 19.3584C7.92313 19.3009 7.98876 19.2763 8.05438 19.3091Z" fill="#F3F3F3"/>
|
||||
<path d="M8.05447 19.3008C8.12009 19.3336 8.14465 19.4075 8.11188 19.473L7.76733 20.1539C7.73447 20.2195 7.66064 20.2441 7.5951 20.2113C7.52947 20.1785 7.50483 20.1046 7.53768 20.0391L7.88215 19.3583C7.915 19.2926 7.98884 19.2681 8.05447 19.3008ZM7.60331 20.195C7.66072 20.2195 7.72634 20.2031 7.7509 20.1457L8.09545 19.4649C8.12001 19.4156 8.09545 19.35 8.04625 19.3173C7.98884 19.2927 7.92322 19.309 7.89858 19.3664L7.55403 20.0472C7.52947 20.0965 7.55403 20.1621 7.60331 20.1949V20.195Z" fill="white"/>
|
||||
<path d="M7.8902 18.095C7.94761 18.136 7.96404 18.2099 7.92305 18.2591L6.97146 19.6784C6.93869 19.7357 6.86476 19.7439 6.80744 19.7111C6.75003 19.6701 6.7336 19.5963 6.77458 19.547L7.72618 18.1277C7.75895 18.0704 7.83279 18.0539 7.8902 18.0949V18.095Z" fill="#F3F3F3"/>
|
||||
<path d="M7.89023 18.0867C7.94764 18.1278 7.96407 18.2098 7.93121 18.2673L6.97967 19.6865C6.93868 19.7438 6.86484 19.7602 6.79921 19.7192C6.7418 19.6782 6.72537 19.5962 6.75814 19.5387L7.70978 18.1196C7.75076 18.0622 7.83282 18.0457 7.89023 18.0867ZM6.80743 19.7028C6.85654 19.7356 6.93047 19.7274 6.96324 19.6783L7.91487 18.259C7.94764 18.2098 7.9313 18.1442 7.88202 18.1114C7.83282 18.0786 7.75898 18.0868 7.7262 18.1359L6.77457 19.5469C6.7418 19.5962 6.75814 19.67 6.80743 19.7027V19.7028Z" fill="white"/>
|
||||
<path d="M6.69255 18.3985C6.74183 18.4395 6.75817 18.5133 6.71719 18.5625L6.2414 19.1613C6.20041 19.2105 6.12658 19.2187 6.07738 19.1777C6.02818 19.1368 6.01175 19.0629 6.05282 19.0137L6.52853 18.4148C6.56952 18.3657 6.64335 18.3574 6.69255 18.3985Z" fill="#F3F3F3"/>
|
||||
<path d="M6.70077 18.3903C6.75818 18.4313 6.7664 18.5133 6.72533 18.5707L6.2496 19.1696C6.20862 19.227 6.12656 19.2352 6.06915 19.186C6.01174 19.1449 6.00353 19.063 6.0446 19.0055L6.52032 18.4067C6.5613 18.3492 6.64336 18.3411 6.70077 18.3903ZM6.08558 19.1696C6.13469 19.2106 6.2004 19.2024 6.24139 19.1532L6.7172 18.5543C6.75005 18.5052 6.74176 18.4395 6.69264 18.3985C6.64336 18.3574 6.57773 18.3656 6.53675 18.4149L6.06094 19.0137C6.02817 19.063 6.03638 19.1367 6.0855 19.1696H6.08558Z" fill="white"/>
|
||||
<path d="M6.77452 17.168C6.82371 17.2171 6.82371 17.2911 6.77452 17.3321L5.56054 18.5379C5.51125 18.5871 5.4375 18.5789 5.39644 18.5379C5.35545 18.4969 5.34724 18.4148 5.39644 18.3738L6.6022 17.168C6.65148 17.1188 6.72532 17.1188 6.77452 17.168Z" fill="#F3F3F3"/>
|
||||
<path d="M6.78282 17.1598C6.80645 17.1839 6.8197 17.2163 6.8197 17.25C6.8197 17.2838 6.80645 17.3161 6.78282 17.3402L5.56876 18.5462C5.54469 18.5698 5.51231 18.5831 5.47858 18.5831C5.44485 18.5831 5.41246 18.5698 5.3884 18.5462C5.36471 18.5221 5.35144 18.4897 5.35144 18.4559C5.35144 18.4222 5.36471 18.3898 5.3884 18.3657L6.60238 17.1598C6.62645 17.1362 6.65885 17.1229 6.6926 17.1229C6.72635 17.1229 6.75875 17.1362 6.78282 17.1598ZM5.39653 18.5379C5.43751 18.5789 5.51135 18.5789 5.55233 18.5379L6.76639 17.332C6.80746 17.291 6.80746 17.2172 6.76639 17.1762C6.72541 17.1351 6.65158 17.1351 6.61059 17.1762L5.39653 18.382C5.35554 18.423 5.35554 18.4887 5.39653 18.5378V18.5379Z" fill="white"/>
|
||||
<path d="M5.54415 17.2337C5.58514 17.2828 5.58514 17.3567 5.53594 17.3977L4.95353 17.89C4.90433 17.931 4.83049 17.9228 4.78942 17.8736C4.74844 17.8243 4.74844 17.7505 4.79764 17.7094L5.38005 17.2172C5.42933 17.1762 5.50309 17.1844 5.54415 17.2337Z" fill="#F3F3F3"/>
|
||||
<path d="M5.55224 17.2254C5.60144 17.2829 5.59323 17.3648 5.54403 17.4059L4.96161 17.898C4.91242 17.9473 4.83036 17.9391 4.78117 17.8817C4.73188 17.8242 4.7401 17.7422 4.78929 17.7011L5.37179 17.209C5.42091 17.1598 5.50305 17.168 5.55216 17.2254L5.55224 17.2254ZM4.79751 17.8734C4.83858 17.9226 4.9042 17.9226 4.95332 17.8899L5.53582 17.3977C5.5768 17.3567 5.58501 17.291 5.54403 17.2419C5.50296 17.1926 5.43734 17.1926 5.38822 17.2254L4.80572 17.7176C4.75652 17.7585 4.75652 17.8242 4.79751 17.8734V17.8734Z" fill="white"/>
|
||||
<path d="M5.87235 16.0523C5.91333 16.1098 5.8969 16.1836 5.83949 16.2164L4.41218 17.168C4.35477 17.2008 4.28093 17.1843 4.24816 17.1351C4.20709 17.0777 4.22352 17.0039 4.28093 16.971L5.70833 16.0196C5.75761 15.9868 5.83136 16.0031 5.87243 16.0523H5.87235Z" fill="#F3F3F3"/>
|
||||
<path d="M5.88043 16.0523C5.92141 16.1098 5.90498 16.1918 5.84757 16.2329L4.42028 17.1844C4.36287 17.2254 4.28082 17.2089 4.23984 17.1434C4.19877 17.086 4.21528 17.0039 4.27261 16.9629L5.69998 16.0113C5.75739 15.9704 5.83936 15.9868 5.88034 16.0523H5.88043ZM4.25626 17.127C4.28903 17.1761 4.35466 17.1926 4.40385 17.1598L5.83115 16.2082C5.88043 16.1754 5.89677 16.1098 5.85579 16.0524C5.82302 16.0031 5.75739 15.9868 5.70811 16.0196L4.28082 16.9711C4.23162 17.0121 4.22341 17.0778 4.25626 17.127Z" fill="white"/>
|
||||
<path d="M4.65002 15.8801C4.68288 15.9375 4.66645 16.0113 4.60904 16.0442L3.94456 16.4215C3.88715 16.4542 3.81331 16.4297 3.78054 16.3723C3.74769 16.3149 3.76412 16.241 3.82153 16.2082L4.486 15.8309C4.54341 15.7981 4.61725 15.8227 4.65011 15.8801H4.65002Z" fill="#F3F3F3"/>
|
||||
<path d="M4.6583 15.8719C4.69107 15.9375 4.67464 16.0113 4.61723 16.0442L3.95277 16.4215C3.89536 16.4542 3.81331 16.4297 3.78054 16.3723C3.74769 16.3067 3.76412 16.2328 3.82153 16.2L4.48598 15.8227C4.54339 15.7898 4.62544 15.8145 4.65821 15.8719H4.6583ZM3.78867 16.3641C3.82153 16.4215 3.88715 16.4379 3.93635 16.4051L4.6008 16.0278C4.65 15.9949 4.66643 15.9293 4.64187 15.8801C4.60902 15.8227 4.54339 15.8063 4.49419 15.8391L3.82974 16.2164C3.78054 16.241 3.76411 16.3067 3.78876 16.3641H3.78867Z" fill="white"/>
|
||||
<path d="M5.19952 14.7891C5.22407 14.8547 5.19952 14.9204 5.13389 14.9449L3.55068 15.6012C3.49327 15.6258 3.41943 15.593 3.39487 15.5355C3.37023 15.4699 3.39487 15.4043 3.4605 15.3797L5.04371 14.7235C5.10112 14.6989 5.17496 14.7235 5.19952 14.7891Z" fill="#F3F3F3"/>
|
||||
<path d="M5.20773 14.7809C5.23229 14.8465 5.20773 14.9204 5.14211 14.9531L3.55889 15.6094C3.52735 15.6213 3.49237 15.6202 3.46163 15.6063C3.43089 15.5925 3.40689 15.5671 3.39487 15.5356C3.37023 15.4699 3.39487 15.3961 3.4605 15.3633L5.04371 14.7071C5.07526 14.6952 5.11023 14.6963 5.14097 14.7101C5.17171 14.724 5.19572 14.7494 5.20773 14.7809ZM3.41122 15.5273C3.43586 15.5848 3.50148 15.6095 3.55068 15.593L5.13389 14.9367C5.1913 14.9122 5.21594 14.8465 5.1913 14.7891C5.16675 14.7317 5.10112 14.7071 5.05184 14.7235L3.46863 15.3797C3.41122 15.4043 3.38666 15.4699 3.41122 15.5274V15.5273Z" fill="white"/>
|
||||
<path d="M4.04298 14.3789C4.06753 14.4445 4.03476 14.5102 3.96914 14.5347L3.24726 14.7727C3.18985 14.7972 3.11601 14.7562 3.09958 14.6988C3.07502 14.6332 3.10779 14.5676 3.17342 14.543L3.8953 14.3051C3.95271 14.2805 4.01833 14.3133 4.04298 14.3789Z" fill="#F3F3F3"/>
|
||||
<path d="M4.05106 14.3707C4.07571 14.4364 4.04294 14.5102 3.9691 14.5349L3.24723 14.7727C3.18161 14.7973 3.10777 14.7563 3.08313 14.6907C3.05857 14.625 3.09134 14.5512 3.16527 14.5266L3.88705 14.2887C3.95267 14.2723 4.02651 14.3051 4.05115 14.3708L4.05106 14.3707ZM3.09964 14.6826C3.11607 14.74 3.18169 14.7728 3.2391 14.7564L3.96097 14.5184C4.01838 14.5021 4.04302 14.4365 4.02659 14.379C4.01017 14.3216 3.94454 14.2888 3.88713 14.3052L3.16527 14.5432C3.10785 14.5677 3.08321 14.6251 3.09964 14.6826Z" fill="white"/>
|
||||
<path d="M4.78141 13.4028C4.79775 13.4684 4.75677 13.534 4.69114 13.5422L3.00946 13.8703C2.94384 13.8868 2.88643 13.8375 2.87008 13.7719C2.85366 13.7062 2.89464 13.6406 2.96026 13.6324L4.64195 13.3043C4.70757 13.2961 4.7732 13.3371 4.78132 13.4028H4.78141Z" fill="#F3F3F3"/>
|
||||
<path d="M4.79769 13.4028C4.81412 13.4766 4.76492 13.5422 4.6993 13.5586L3.0176 13.8867C2.95198 13.9031 2.88635 13.8539 2.87001 13.7801C2.85358 13.7063 2.90278 13.6406 2.9684 13.6243L4.6501 13.2962C4.71564 13.2797 4.78135 13.3289 4.79769 13.4028ZM2.88635 13.772C2.89457 13.8293 2.95198 13.8704 3.00939 13.8621L4.69108 13.534C4.74849 13.5258 4.78948 13.4602 4.77313 13.4028C4.76492 13.3454 4.70751 13.3043 4.65001 13.3125L2.9684 13.6406C2.91099 13.6571 2.87001 13.7145 2.88635 13.7719V13.772Z" fill="white"/>
|
||||
<path d="M3.73139 12.7712C3.73952 12.8367 3.69854 12.8943 3.63291 12.9025L2.87826 12.9927C2.81256 13.0009 2.75514 12.9517 2.74701 12.8859C2.7388 12.8204 2.77979 12.763 2.84541 12.7547L3.60014 12.6645C3.65755 12.6563 3.72318 12.7055 3.73139 12.7712Z" fill="#F3F3F3"/>
|
||||
<path d="M3.73961 12.7712C3.74774 12.8449 3.69855 12.9105 3.63292 12.9187L2.87828 13.009C2.81257 13.0172 2.74703 12.968 2.73881 12.8942C2.7306 12.8203 2.7798 12.7547 2.84542 12.7465L3.60015 12.6563C3.66569 12.648 3.7314 12.6973 3.73953 12.7711L3.73961 12.7712ZM2.74694 12.886C2.75515 12.9434 2.81265 12.9926 2.87006 12.9843L3.62471 12.8942C3.68212 12.886 3.72319 12.8286 3.71497 12.7712C3.70676 12.7137 3.64935 12.6645 3.59194 12.6727L2.83721 12.7629C2.7798 12.7712 2.73881 12.8286 2.74694 12.886Z" fill="white"/>
|
||||
<path d="M4.64994 11.9754C4.64994 12.0411 4.60083 12.0985 4.53512 12.0985H2.82075C2.75513 12.0985 2.70593 12.0411 2.70593 11.9754C2.70593 11.9098 2.75513 11.8523 2.82075 11.8523H4.53521C4.60083 11.8523 4.65011 11.9098 4.65011 11.9754L4.64994 11.9754Z" fill="#F3F3F3"/>
|
||||
<path d="M4.65829 11.9754C4.65829 12.0493 4.60079 12.1066 4.53517 12.1066H2.82079C2.75517 12.1066 2.69775 12.0492 2.69775 11.9754C2.69775 11.9016 2.75517 11.8441 2.82079 11.8441H4.53525C4.60088 11.8441 4.65829 11.9016 4.65829 11.9754ZM2.7141 11.9672C2.7141 12.0246 2.76329 12.082 2.82079 12.082H4.53517C4.59258 12.082 4.64186 12.0329 4.64186 11.9672C4.64186 11.9098 4.59258 11.8523 4.53517 11.8523H2.82079C2.76338 11.8605 2.71418 11.9098 2.71418 11.9672H2.7141Z" fill="white"/>
|
||||
<path d="M3.73966 11.1469C3.73136 11.2125 3.68216 11.2617 3.61654 11.2617L2.85358 11.2043C2.78804 11.1961 2.73884 11.1387 2.74697 11.073C2.75519 11.0074 2.80447 10.9582 2.8701 10.9582L3.63296 11.0156C3.69038 11.0238 3.73966 11.0813 3.73966 11.1469Z" fill="#E2E2E2"/>
|
||||
<path d="M3.74763 11.1469C3.73941 11.2207 3.682 11.2699 3.61638 11.2699L2.85344 11.2125C2.7879 11.2043 2.73049 11.1469 2.7387 11.073C2.74683 10.9993 2.80433 10.95 2.86995 10.95L3.6328 11.0074C3.69843 11.0156 3.74763 11.0813 3.74763 11.1469ZM2.74683 11.073C2.7387 11.1305 2.7879 11.188 2.84531 11.188L3.60825 11.2454C3.66557 11.2454 3.71486 11.2043 3.72307 11.1387C3.73128 11.0813 3.682 11.0239 3.62459 11.0239L2.86165 10.9664C2.80433 10.9664 2.75504 11.0156 2.74683 11.0731V11.073Z" fill="white"/>
|
||||
<path d="M4.79753 10.548C4.7811 10.6136 4.72369 10.6547 4.65807 10.6465L2.97646 10.302C2.91083 10.2855 2.86976 10.2281 2.88619 10.1625C2.90262 10.0969 2.96003 10.0558 3.02565 10.0641L4.70735 10.4004C4.76476 10.4168 4.80574 10.4824 4.79753 10.548Z" fill="#F3F3F3"/>
|
||||
<path d="M4.80586 10.548C4.78943 10.6219 4.72381 10.6629 4.65818 10.6547L2.97658 10.3184C2.91096 10.3019 2.86176 10.2363 2.87819 10.1626C2.89453 10.0886 2.96016 10.0477 3.02578 10.0559L4.70746 10.3922C4.77309 10.4086 4.81407 10.4743 4.80586 10.548ZM2.89453 10.1625C2.88632 10.2199 2.91909 10.2773 2.97658 10.2937L4.65827 10.6301C4.71568 10.6383 4.77309 10.6055 4.78952 10.5398C4.79764 10.4824 4.76487 10.425 4.70738 10.4086L3.02586 10.0723C2.96024 10.0641 2.91104 10.1051 2.89462 10.1625H2.89453Z" fill="white"/>
|
||||
<path d="M4.0596 9.56377C4.05584 9.57939 4.04903 9.59412 4.03957 9.60711C4.0301 9.6201 4.01817 9.63109 4.00446 9.63947C3.99074 9.64784 3.97551 9.65343 3.95963 9.65592C3.94375 9.6584 3.92754 9.65773 3.91192 9.65394L3.17361 9.44887C3.10799 9.43244 3.07522 9.36682 3.09156 9.3012C3.09532 9.28558 3.10213 9.27085 3.1116 9.25786C3.12106 9.24487 3.13299 9.23387 3.1467 9.2255C3.16042 9.21712 3.17565 9.21153 3.19153 9.20905C3.20741 9.20657 3.22362 9.20724 3.23924 9.21102L3.97755 9.4161C4.04318 9.43244 4.07595 9.49806 4.0596 9.56368V9.56377Z" fill="#F3F3F3"/>
|
||||
<path d="M4.06748 9.56374C4.05114 9.62928 3.9773 9.67855 3.91167 9.65391L3.17336 9.44884C3.10773 9.43241 3.06666 9.35858 3.08309 9.29304C3.09952 9.22734 3.17336 9.17814 3.23898 9.20278L3.9773 9.40786C4.04293 9.42428 4.084 9.48991 4.06748 9.56365V9.56374ZM3.10773 9.29287C3.0913 9.35037 3.12416 9.41599 3.18157 9.43233L3.91989 9.6374C3.9773 9.65383 4.03471 9.62098 4.05114 9.55536C4.06748 9.49795 4.03471 9.43233 3.9773 9.41599L3.23898 9.21091C3.18157 9.2027 3.12416 9.23547 3.10773 9.29296V9.29287Z" fill="white"/>
|
||||
<path d="M5.21605 9.16998C5.19149 9.23552 5.11757 9.26016 5.06024 9.23552L3.47695 8.57928C3.41953 8.55473 3.38676 8.48089 3.41132 8.42348C3.43596 8.35785 3.5098 8.33321 3.56721 8.35785L5.15042 9.01409C5.21605 9.03865 5.24069 9.11248 5.21605 9.16989V9.16998Z" fill="#F3F3F3"/>
|
||||
<path d="M5.22415 9.17812C5.21214 9.20964 5.18812 9.23511 5.15736 9.24895C5.12659 9.26279 5.0916 9.26387 5.06004 9.25195L3.47682 8.59572C3.41119 8.57116 3.38664 8.49732 3.41119 8.42349C3.42321 8.39197 3.44723 8.36649 3.47799 8.35265C3.50875 8.33881 3.54374 8.33773 3.5753 8.34965L5.15852 9.00589C5.22415 9.03866 5.24871 9.11258 5.22415 9.17812ZM3.42762 8.4317C3.40306 8.48911 3.42762 8.55473 3.48503 8.57929L5.06826 9.23553C5.12567 9.26017 5.18308 9.22731 5.20772 9.1699C5.23228 9.11249 5.20772 9.04687 5.15031 9.02231L3.56709 8.36607C3.50967 8.34965 3.44405 8.37429 3.42762 8.4317Z" fill="white"/>
|
||||
<path d="M4.68284 8.06252C4.65007 8.11994 4.58444 8.14458 4.52703 8.11994L3.84614 7.77545C3.78873 7.75081 3.76409 7.67696 3.79694 7.61133C3.82971 7.55392 3.89534 7.52928 3.95275 7.55392L4.63356 7.89849C4.69105 7.93126 4.71569 8.00519 4.68284 8.06252Z" fill="#F3F3F3"/>
|
||||
<path d="M4.69114 8.07075C4.65828 8.13637 4.58444 8.16102 4.51882 8.12816L3.83802 7.7836C3.77239 7.75083 3.74775 7.67699 3.7806 7.61136C3.81337 7.54574 3.8873 7.5211 3.95284 7.55395L4.63364 7.89851C4.69935 7.92307 4.72391 8.00521 4.69114 8.07075ZM3.80516 7.61958C3.7806 7.67699 3.79703 7.74262 3.85444 7.76726L4.53525 8.11182C4.58453 8.13637 4.65015 8.11182 4.68292 8.06253C4.70748 8.00512 4.69114 7.93949 4.63372 7.91485L3.94454 7.57046C3.89534 7.54591 3.82972 7.56225 3.80508 7.61966L3.80516 7.61958Z" fill="white"/>
|
||||
<path d="M5.8886 7.90662C5.84761 7.96412 5.78199 7.98055 5.72457 7.93948L4.30535 6.99617C4.24802 6.96332 4.23981 6.88948 4.27258 6.83207C4.30544 6.77466 4.37928 6.75823 4.43669 6.79921L5.86404 7.75082C5.91324 7.78367 5.92967 7.85751 5.8886 7.90662Z" fill="#F3F3F3"/>
|
||||
<path d="M5.89685 7.91483C5.85587 7.97232 5.77382 7.98867 5.71649 7.95589L4.29731 7.00429C4.2399 6.96331 4.22347 6.88947 4.26445 6.82393C4.30552 6.76643 4.38757 6.75 4.44498 6.78286L5.86408 7.73438C5.92971 7.77545 5.93792 7.85742 5.89685 7.91483ZM4.28088 6.83206C4.24811 6.88125 4.25632 6.95509 4.30544 6.98786L5.73283 7.93955C5.78203 7.97241 5.84766 7.95598 5.88051 7.90678C5.91328 7.8575 5.90507 7.78366 5.85595 7.75089L4.42847 6.79929C4.37927 6.76643 4.31365 6.78286 4.2808 6.83206H4.28088Z" fill="white"/>
|
||||
<path d="M5.58519 6.71719C5.54421 6.76639 5.47037 6.78281 5.42117 6.74175L4.82232 6.27425C4.77313 6.23319 4.76491 6.15935 4.8059 6.11015C4.84688 6.06096 4.92072 6.04453 4.97 6.0856L5.56877 6.55309C5.61805 6.59416 5.62626 6.66791 5.58519 6.71719Z" fill="#F3F3F3"/>
|
||||
<path d="M5.59342 6.72534C5.55243 6.78284 5.47038 6.79105 5.41297 6.74998L4.81415 6.28249C4.75674 6.2415 4.74852 6.15945 4.78959 6.10213C4.83057 6.04463 4.91262 6.03642 4.96995 6.07749L5.56877 6.54498C5.62627 6.58605 5.63448 6.66802 5.59342 6.72551V6.72534ZM4.80593 6.11017C4.76495 6.15937 4.77316 6.22499 4.82236 6.26598L5.42119 6.73364C5.47038 6.76641 5.53601 6.7582 5.57699 6.709C5.61806 6.6598 5.60984 6.59418 5.56065 6.5532L4.96182 6.08553C4.91262 6.05276 4.84691 6.06097 4.80602 6.11017H4.80593Z" fill="white"/>
|
||||
<path d="M6.80733 6.79924C6.75822 6.84853 6.68429 6.84853 6.64331 6.79924L5.42113 5.59343C5.37193 5.54423 5.38006 5.47039 5.42113 5.42932C5.47032 5.38021 5.54417 5.38021 5.58515 5.42932L6.79928 6.63522C6.84848 6.67621 6.84848 6.75826 6.8075 6.79933L6.80733 6.79924Z" fill="#F3F3F3"/>
|
||||
<path d="M6.80748 6.80748C6.78341 6.83111 6.75103 6.84435 6.7173 6.84435C6.68356 6.84435 6.65118 6.83111 6.62711 6.80748L5.41294 5.60151C5.38925 5.57744 5.37598 5.54502 5.37598 5.51125C5.37598 5.47747 5.38925 5.44505 5.41294 5.42098C5.43701 5.39732 5.46941 5.38406 5.50316 5.38406C5.53691 5.38406 5.56931 5.39732 5.59338 5.42098L6.80748 6.62686C6.86489 6.67606 6.86489 6.75811 6.80748 6.80731V6.80748ZM5.42953 5.43741C5.38846 5.47848 5.38846 5.55231 5.42953 5.59321L6.64354 6.79909C6.68461 6.84016 6.75836 6.84016 6.79935 6.79909C6.84042 6.75811 6.84042 6.68427 6.79935 6.64329L5.58534 5.42928C5.54435 5.3883 5.47864 5.3883 5.42953 5.43749V5.43741Z" fill="white"/>
|
||||
<path d="M6.73357 5.57698C6.68438 5.61804 6.61054 5.61804 6.56947 5.56876L6.06904 4.99456C6.02814 4.94537 6.03627 4.87153 6.08555 4.83054C6.13466 4.78948 6.20858 4.78948 6.24957 4.83867L6.75 5.41296C6.79098 5.45394 6.78277 5.52778 6.73357 5.57698Z" fill="#F3F3F3"/>
|
||||
<path d="M6.74175 5.57698C6.68434 5.62618 6.6105 5.61805 6.56122 5.56877L6.06086 4.99457C6.01166 4.94537 6.01988 4.86331 6.07729 4.81412C6.1347 4.76483 6.20854 4.77305 6.25774 4.82233L6.75818 5.39645C6.79916 5.45394 6.79916 5.536 6.74175 5.57698ZM6.0855 4.83054C6.03622 4.87153 6.03622 4.93715 6.06908 4.98635L6.56952 5.56055C6.6105 5.60162 6.67613 5.60984 6.72532 5.56877C6.77452 5.52778 6.77452 5.46207 6.74175 5.41296L6.24131 4.83867C6.20033 4.78956 6.13462 4.78956 6.0855 4.83054Z" fill="white"/>
|
||||
<path d="M7.91485 5.88875C7.85744 5.92973 7.7836 5.91331 7.75075 5.85589L6.79102 4.43671C6.75817 4.3793 6.77459 4.30546 6.82379 4.27269C6.8812 4.23171 6.95504 4.24814 6.9879 4.30555L7.93941 5.72465C7.98047 5.78206 7.96405 5.85589 7.91485 5.88866V5.88875Z" fill="#F3F3F3"/>
|
||||
<path d="M7.91495 5.89692C7.85754 5.93798 7.7755 5.92147 7.73443 5.86415L6.78295 4.44494C6.74197 4.38753 6.7584 4.30556 6.82394 4.26458C6.88134 4.22351 6.96339 4.23994 7.00446 4.29735L7.95593 5.71647C7.99692 5.78209 7.98049 5.85593 7.91495 5.89692ZM6.83206 4.28092C6.78287 4.31369 6.76644 4.37932 6.7993 4.4286L7.75077 5.84772C7.78362 5.89692 7.84925 5.90513 7.90657 5.87227C7.95585 5.8395 7.97228 5.77388 7.93942 5.72468L6.98803 4.31369C6.95518 4.26458 6.88135 4.24807 6.83223 4.28092H6.83206Z" fill="white"/>
|
||||
<path d="M8.08708 4.67468C8.02967 4.70745 7.95584 4.69111 7.92307 4.6337L7.54568 3.96923C7.51291 3.91182 7.53747 3.83798 7.59496 3.80513C7.65237 3.77236 7.7262 3.7887 7.75897 3.8462L8.13627 4.51058C8.16091 4.56799 8.14449 4.64183 8.08716 4.67468H8.08708Z" fill="#F3F3F3"/>
|
||||
<path d="M8.087 4.6829C8.02138 4.71567 7.94754 4.69933 7.91477 4.64183L7.53737 3.97745C7.5046 3.91995 7.52102 3.83798 7.58665 3.80513C7.65227 3.77236 7.72611 3.7887 7.75888 3.8462L8.1362 4.51058C8.16905 4.56799 8.15263 4.64183 8.08709 4.6829H8.087ZM7.59486 3.81334C7.54558 3.84611 7.52102 3.91174 7.55379 3.96102L7.9312 4.62549C7.96397 4.6746 8.02959 4.69111 8.07879 4.66647C8.12807 4.6337 8.15263 4.56799 8.11986 4.51879L7.74245 3.85433C7.7179 3.80521 7.64406 3.78049 7.59486 3.81334Z" fill="white"/>
|
||||
<path d="M9.17796 5.21602C9.11243 5.24058 9.04672 5.21602 9.02216 5.15861L8.35773 3.57531C8.33318 3.5179 8.36594 3.44406 8.42335 3.41942C8.48897 3.39487 8.5546 3.41942 8.57915 3.47683L9.24359 5.06005C9.26823 5.11746 9.23546 5.1913 9.17796 5.21585V5.21602Z" fill="#F3F3F3"/>
|
||||
<path d="M9.17818 5.22431C9.11264 5.24887 9.0388 5.22431 9.00594 5.1586L8.34147 3.57548C8.32955 3.54392 8.33063 3.50893 8.34447 3.47817C8.35832 3.44741 8.38379 3.42339 8.41531 3.41138C8.48093 3.38682 8.55477 3.41138 8.58763 3.477L9.25202 5.06021C9.27666 5.11762 9.24389 5.19145 9.17826 5.22431H9.17818ZM8.43174 3.4278C8.37432 3.45236 8.34968 3.51807 8.37432 3.56727L9.03871 5.15039C9.06327 5.2078 9.12889 5.23235 9.18631 5.2078C9.24372 5.18324 9.26844 5.11753 9.24372 5.06833L8.57933 3.48513C8.54648 3.42772 8.48906 3.40308 8.43165 3.42772L8.43174 3.4278Z" fill="white"/>
|
||||
<path d="M9.57993 4.05127C9.51431 4.07583 9.44869 4.04298 9.42414 3.97744L9.18622 3.25549C9.16166 3.19808 9.20264 3.12424 9.26005 3.1079C9.31745 3.09147 9.39129 3.11611 9.41584 3.18173L9.65376 3.9036C9.67831 3.96101 9.64555 4.02663 9.57993 4.05119V4.05127Z" fill="#F3F3F3"/>
|
||||
<path d="M9.58826 4.05941C9.55671 4.0713 9.52173 4.07021 9.49099 4.05637C9.46025 4.04253 9.43624 4.01708 9.42423 3.98558L9.18627 3.2637C9.16172 3.19808 9.2027 3.12432 9.26841 3.09968C9.29996 3.08779 9.33494 3.08889 9.36568 3.10272C9.39642 3.11656 9.42043 3.14202 9.43244 3.17352L9.67031 3.89539C9.68674 3.96102 9.65388 4.03486 9.58826 4.05941ZM9.26833 3.11611C9.21092 3.13245 9.17806 3.19808 9.19449 3.25549L9.43244 3.97745C9.44878 4.03486 9.51441 4.05941 9.57191 4.04299C9.62933 4.02664 9.6621 3.96102 9.64567 3.90361L9.4078 3.18165C9.40362 3.16772 9.39655 3.15483 9.38706 3.14382C9.37757 3.13281 9.36586 3.12392 9.3527 3.11773C9.33955 3.11154 9.32524 3.10818 9.3107 3.10789C9.29616 3.1076 9.28172 3.11037 9.26833 3.11602V3.11611Z" fill="white"/>
|
||||
<path d="M10.548 4.79768C10.4823 4.8141 10.4167 4.77312 10.4085 4.70741L10.064 3.02581C10.0475 2.96019 10.0968 2.90278 10.1624 2.88635C10.2281 2.86992 10.2936 2.9109 10.3018 2.97661L10.6464 4.6583C10.6546 4.71562 10.6136 4.78125 10.548 4.79768Z" fill="#F3F3F3"/>
|
||||
<path d="M10.5481 4.80589C10.4742 4.82232 10.4086 4.77303 10.3922 4.70741L10.0476 3.0258C10.0312 2.96018 10.0805 2.88634 10.1461 2.87812C10.2199 2.8617 10.2856 2.91098 10.3019 2.9766L10.6465 4.6583C10.6629 4.72384 10.6219 4.78955 10.5481 4.80589ZM10.1625 2.89455C10.105 2.90276 10.064 2.96018 10.0723 3.0258L10.4168 4.70749C10.425 4.76482 10.4906 4.80589 10.5481 4.78946C10.6055 4.78125 10.6465 4.72384 10.6382 4.65821L10.2937 2.97652C10.2773 2.91919 10.2199 2.88634 10.1624 2.89455H10.1625Z" fill="white"/>
|
||||
<path d="M11.1715 3.73128C11.1059 3.73949 11.0485 3.69851 11.032 3.63288L10.9336 2.87814C10.9254 2.81252 10.9746 2.7551 11.0403 2.74689C11.1059 2.73868 11.1633 2.77975 11.1797 2.84537L11.2781 3.60003C11.2863 3.66565 11.2371 3.72306 11.1715 3.73128Z" fill="#F3F3F3"/>
|
||||
<path d="M11.1715 3.73948C11.0977 3.74769 11.0321 3.6985 11.0238 3.63279L10.9255 2.87814C10.9172 2.81251 10.9664 2.74689 11.0403 2.73867C11.1141 2.73054 11.1797 2.77974 11.1879 2.84537L11.2863 3.60002C11.2945 3.66564 11.2453 3.73127 11.1715 3.73948ZM11.0485 2.7551C10.9911 2.76331 10.9418 2.82073 10.95 2.87814L11.0485 3.63287C11.0567 3.69028 11.1141 3.73127 11.1715 3.72305C11.2289 3.71492 11.2782 3.65743 11.27 3.60002L11.1715 2.84537C11.1633 2.78796 11.1059 2.74689 11.0485 2.7551Z" fill="white"/>
|
||||
<path d="M12.0575 21.7043C17.4215 21.7043 21.77 17.3559 21.77 11.9918C21.77 6.62773 17.4215 2.2793 12.0575 2.2793C6.6934 2.2793 2.34497 6.62773 2.34497 11.9918C2.34497 17.3559 6.6934 21.7043 12.0575 21.7043Z" fill="url(#paint2_linear_716_8465)" fill-opacity="0.2"/>
|
||||
<path d="M18.7841 5.83127L10.95 10.8516H10.9418V10.8598L10.9336 10.868L6.04468 18.9317L13.2306 13.1485L13.2388 13.1404V13.1322L18.7841 5.83135L18.7841 5.83127Z" fill="black" fill-opacity="0.05"/>
|
||||
<path d="M18.6363 5.36365L10.8926 10.8679L13.1895 13.1484L18.6363 5.36365Z" fill="#CD151E"/>
|
||||
<path d="M10.9009 10.8516L12.0576 11.9917L18.6364 5.36365L10.9009 10.8516Z" fill="#FA5153"/>
|
||||
<path d="M10.9009 10.8516L13.1977 13.1319L5.45398 18.6363L10.9009 10.8515V10.8516Z" fill="#ACACAC"/>
|
||||
<path d="M5.45398 18.6363L12.0575 11.9918L10.9008 10.8515L5.45398 18.6363Z" fill="#EEEEEE"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_716_8465" x1="12" y1="22.5" x2="12" y2="1.5" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0.25" stop-color="#DBDBDA"/>
|
||||
<stop offset="1" stop-color="white"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="paint1_radial_716_8465" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(13.3647 9.86653) scale(11.8555)">
|
||||
<stop stop-color="#2ABCE1"/>
|
||||
<stop offset="0.11363" stop-color="#2ABBE1"/>
|
||||
<stop offset="1" stop-color="#3375F8"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="paint2_linear_716_8465" x1="11.8729" y1="9.2146" x2="7.33972" y2="17.3477" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity="0"/>
|
||||
<stop offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 53 KiB |
4
frontend/app/svg/icons/color/ubuntu.svg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.5 12C22.5 17.796 17.8012 22.5 12 22.5C6.19875 22.5 1.5 17.796 1.5 12C1.5 6.19875 6.19875 1.5 12 1.5C17.8012 1.5 22.5 6.19875 22.5 12Z" fill="#E95420"/>
|
||||
<path d="M5.11616 10.6172C4.35889 10.6172 3.75 11.2398 3.75 12.0026C3.75 12.7653 4.364 13.388 5.11616 13.388C5.86831 13.388 6.48232 12.7653 6.48232 12.0026C6.48232 11.2347 5.86831 10.6172 5.11616 10.6172ZM14.8737 16.9112C14.2188 17.2951 13.9987 18.1409 14.3723 18.8051C14.7509 19.4692 15.5849 19.6975 16.2399 19.3136C16.8948 18.9296 17.1148 18.0838 16.7413 17.4197C16.3575 16.7607 15.5235 16.5324 14.8737 16.9112ZM8.08384 12.0026C8.08384 10.6328 8.75413 9.42378 9.78259 8.69216L8.78483 6.99544C7.58752 7.80489 6.70233 9.045 6.32882 10.4927C6.75862 10.8507 7.03492 11.3955 7.03492 12.0026C7.03492 12.6097 6.75862 13.1545 6.32882 13.5125C6.69722 14.9602 7.58752 16.2003 8.78483 17.0098L9.78259 15.313C8.75413 14.5814 8.08384 13.3724 8.08384 12.0026ZM12.0749 7.95536C14.1625 7.95536 15.8715 9.57425 16.0505 11.6446L18 11.6134C17.9028 10.0879 17.2478 8.71811 16.2347 7.71149C15.7128 7.90866 15.1142 7.87753 14.5974 7.57658C14.0755 7.27044 13.7531 6.76195 13.661 6.20156C13.1545 6.06146 12.6224 5.98363 12.0749 5.98363C11.1283 5.98363 10.238 6.20675 9.44488 6.60628L10.3966 8.32895C10.9031 8.09027 11.4762 7.95536 12.0749 7.95536ZM12.0749 16.0498C11.4762 16.0498 10.9031 15.9149 10.3915 15.6762L9.43977 17.3989C10.2329 17.7984 11.1283 18.0216 12.0697 18.0216C12.6172 18.0216 13.1494 17.9437 13.6559 17.8036C13.7429 17.2484 14.0704 16.7347 14.5923 16.4286C15.1091 16.1225 15.7128 16.0965 16.2296 16.2937C17.2376 15.2871 17.8977 13.9172 17.9949 12.3918L16.0454 12.3606C15.8715 14.4257 14.1625 16.0498 12.0749 16.0498ZM14.8686 7.08884C15.5235 7.47281 16.3575 7.2445 16.7362 6.58034C17.1148 5.91618 16.8897 5.07041 16.2347 4.68644C15.5798 4.30247 14.7458 4.53078 14.3671 5.19494C13.9936 5.8591 14.2188 6.70487 14.8686 7.08884Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
20
frontend/app/svg/icons/color/us.svg
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<svg viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_475_20146)">
|
||||
<rect y="0.399902" width="24" height="24" rx="12" fill="#FFFBE6"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.399902H28V24.3999H-4V0.399902Z" fill="#F7FCFF"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 15.0667V17.0667H28V15.0667H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 18.7332V20.7332H28V18.7332H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 7.73315V9.73315H28V7.73315H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 22.3999V24.3999H28V22.3999H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 11.3999V13.3999H28V11.3999H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 0.399902V2.3999H28V0.399902H-4Z" fill="#E31D1C"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-4 4.06665V6.06665H28V4.06665H-4Z" fill="#E31D1C"/>
|
||||
<rect x="-4" y="0.399902" width="20" height="13" fill="#2E42A5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M-2.27791 3.33861L-3.00379 3.8475L-2.75873 2.94189L-3.40344 2.36797H-2.56136L-2.27893 1.62891L-1.94775 2.36797H-1.2299L-1.79393 2.94189L-1.57557 3.8475L-2.27791 3.33861ZM1.72209 3.33861L0.996209 3.8475L1.24127 2.94189L0.596558 2.36797H1.43864L1.72107 1.62891L2.05225 2.36797H2.7701L2.20607 2.94189L2.42443 3.8475L1.72209 3.33861ZM4.99621 3.8475L5.72209 3.33861L6.42443 3.8475L6.20607 2.94189L6.7701 2.36797H6.05225L5.72107 1.62891L5.43864 2.36797H4.59656L5.24127 2.94189L4.99621 3.8475ZM9.72209 3.33861L8.99621 3.8475L9.24127 2.94189L8.59656 2.36797H9.43864L9.72107 1.62891L10.0522 2.36797H10.7701L10.2061 2.94189L10.4244 3.8475L9.72209 3.33861ZM-3.00379 7.8475L-2.27791 7.33861L-1.57557 7.8475L-1.79393 6.94189L-1.2299 6.36797H-1.94775L-2.27893 5.62891L-2.56136 6.36797H-3.40344L-2.75873 6.94189L-3.00379 7.8475ZM1.72209 7.33861L0.996209 7.8475L1.24127 6.94189L0.596558 6.36797H1.43864L1.72107 5.62891L2.05225 6.36797H2.7701L2.20607 6.94189L2.42443 7.8475L1.72209 7.33861ZM4.99621 7.8475L5.72209 7.33861L6.42443 7.8475L6.20607 6.94189L6.7701 6.36797H6.05225L5.72107 5.62891L5.43864 6.36797H4.59656L5.24127 6.94189L4.99621 7.8475ZM9.72209 7.33861L8.99621 7.8475L9.24127 6.94189L8.59656 6.36797H9.43864L9.72107 5.62891L10.0522 6.36797H10.7701L10.2061 6.94189L10.4244 7.8475L9.72209 7.33861ZM-3.00379 11.8475L-2.27791 11.3386L-1.57557 11.8475L-1.79393 10.9419L-1.2299 10.368H-1.94775L-2.27893 9.62891L-2.56136 10.368H-3.40344L-2.75873 10.9419L-3.00379 11.8475ZM1.72209 11.3386L0.996209 11.8475L1.24127 10.9419L0.596558 10.368H1.43864L1.72107 9.62891L2.05225 10.368H2.7701L2.20607 10.9419L2.42443 11.8475L1.72209 11.3386ZM4.99621 11.8475L5.72209 11.3386L6.42443 11.8475L6.20607 10.9419L6.7701 10.368H6.05225L5.72107 9.62891L5.43864 10.368H4.59656L5.24127 10.9419L4.99621 11.8475ZM9.72209 11.3386L8.99621 11.8475L9.24127 10.9419L8.59656 10.368H9.43864L9.72107 9.62891L10.0522 10.368H10.7701L10.2061 10.9419L10.4244 11.8475L9.72209 11.3386ZM12.9962 3.8475L13.7221 3.33861L14.4244 3.8475L14.2061 2.94189L14.7701 2.36797H14.0522L13.7211 1.62891L13.4386 2.36797H12.5966L13.2413 2.94189L12.9962 3.8475ZM13.7221 7.33861L12.9962 7.8475L13.2413 6.94189L12.5966 6.36797H13.4386L13.7211 5.62891L14.0522 6.36797H14.7701L14.2061 6.94189L14.4244 7.8475L13.7221 7.33861ZM12.9962 11.8475L13.7221 11.3386L14.4244 11.8475L14.2061 10.9419L14.7701 10.368H14.0522L13.7211 9.62891L13.4386 10.368H12.5966L13.2413 10.9419L12.9962 11.8475ZM-0.277911 5.33861L-1.00379 5.8475L-0.758726 4.94189L-1.40344 4.36797H-0.561355L-0.278926 3.62891L0.0522454 4.36797H0.770102L0.206065 4.94189L0.424427 5.8475L-0.277911 5.33861ZM2.99621 5.8475L3.72209 5.33861L4.42443 5.8475L4.20607 4.94189L4.7701 4.36797H4.05225L3.72107 3.62891L3.43864 4.36797H2.59656L3.24127 4.94189L2.99621 5.8475ZM7.72209 5.33861L6.99621 5.8475L7.24127 4.94189L6.59656 4.36797H7.43864L7.72107 3.62891L8.05225 4.36797H8.7701L8.20607 4.94189L8.42443 5.8475L7.72209 5.33861ZM-1.00379 9.8475L-0.277911 9.33861L0.424427 9.8475L0.206065 8.94189L0.770102 8.36797H0.0522454L-0.278926 7.62891L-0.561355 8.36797H-1.40344L-0.758726 8.94189L-1.00379 9.8475ZM3.72209 9.33861L2.99621 9.8475L3.24127 8.94189L2.59656 8.36797H3.43864L3.72107 7.62891L4.05225 8.36797H4.7701L4.20607 8.94189L4.42443 9.8475L3.72209 9.33861ZM6.99621 9.8475L7.72209 9.33861L8.42443 9.8475L8.20607 8.94189L8.7701 8.36797H8.05225L7.72107 7.62891L7.43864 8.36797H6.59656L7.24127 8.94189L6.99621 9.8475ZM11.7221 5.33861L10.9962 5.8475L11.2413 4.94189L10.5966 4.36797H11.4386L11.7211 3.62891L12.0522 4.36797H12.7701L12.2061 4.94189L12.4244 5.8475L11.7221 5.33861ZM10.9962 9.8475L11.7221 9.33861L12.4244 9.8475L12.2061 8.94189L12.7701 8.36797H12.0522L11.7211 7.62891L11.4386 8.36797H10.5966L11.2413 8.94189L10.9962 9.8475Z" fill="#F7FCFF"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_475_20146">
|
||||
<rect y="0.399902" width="24" height="24" rx="12" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
|
|
@ -64,10 +64,8 @@ icons.forEach((icon) => {
|
|||
iconPaths.push({ path: `./Icons/${name}`, name, oldName: icon.slice(0, -4), fileName });
|
||||
const svg = fs.readFileSync(`${ICONS_DIRNAME}/${icon}`, 'utf-8');
|
||||
const canOptimize = !icon.includes('integrations');
|
||||
const { data } = optimize(svg, plugins(canOptimize));
|
||||
if (titleCase(fileName) === 'Integrations_slack_bw') {
|
||||
console.log(data, svg)
|
||||
}
|
||||
const keepOriginal = icon.includes('color')
|
||||
const { data } = keepOriginal ? { data: svg } : optimize(svg, plugins(canOptimize));
|
||||
fs.writeFileSync(path, `
|
||||
/* Auto-generated, do not edit */
|
||||
import React from 'react';
|
||||
|
|
|
|||