deals update
@ -3,49 +3,12 @@ import { Cookies } from 'react-cookie';
|
||||
import Router from 'next/router';
|
||||
import moment from 'moment';
|
||||
import { nSQL } from "@nano-sql/core";
|
||||
import { eachSeries } from 'async';
|
||||
|
||||
import * as actionTypes from '../constants/actionTypes';
|
||||
import * as currentState from '../reducers/initialState';
|
||||
|
||||
/*DEALS_LIST
|
||||
/lk/ConsiderationOpportunity/quote
|
||||
|
||||
[{
|
||||
"quote_number": "582189",
|
||||
"price": 5490000,
|
||||
"first_payment_perc": 30,
|
||||
"first_payment_rub": 1647000,
|
||||
"brand_name": "Volkswagen",
|
||||
"model_name": "Touareg",
|
||||
"object_count": 1,
|
||||
}, {
|
||||
"quote_number": "580008",
|
||||
"price": 5341770,
|
||||
"first_payment_perc": 30,
|
||||
"first_payment_rub": 1647000,
|
||||
"brand_name": "Volkswagen",
|
||||
"model_name": "Touareg",
|
||||
"object_count": 1,
|
||||
}]
|
||||
|
||||
[{
|
||||
"opp_number": "780",
|
||||
"statuscode_id": 107,
|
||||
"statuscode_name": " ",
|
||||
"comment": null,
|
||||
}, {
|
||||
"opp_number": "37197",
|
||||
"statuscode_id": 101,
|
||||
"statuscode_name": " ",
|
||||
"comment": null,
|
||||
}]
|
||||
opp_number- номер Лизинговой сделки
|
||||
statuscode_id - номер этапа
|
||||
statuscode_name - имя этапа
|
||||
comment - сопроводительный текст для данного этапа, который надо выводить
|
||||
*/
|
||||
|
||||
export const getDeals = ({ dispatch }) =>
|
||||
export const getDeals = ({ dispatch, update = false }) =>
|
||||
{
|
||||
const url = `${ process.env.NEXT_PUBLIC_SELF_API_HOST }/api/deals`;
|
||||
|
||||
@ -59,6 +22,20 @@ export const getDeals = ({ dispatch }) =>
|
||||
.then((response) =>
|
||||
{
|
||||
console.log("ACTION", "deals", "getDeals()", "response", response.data);
|
||||
|
||||
/*
|
||||
if(update)
|
||||
{
|
||||
for(let i in response.data)
|
||||
{
|
||||
if(response.data[i].opp_number == "20325")
|
||||
{
|
||||
response.data[i].statuscode_id = 101;
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
dispatch({
|
||||
type: actionTypes.DEALS_LIST,
|
||||
data: {
|
||||
@ -129,6 +106,40 @@ export const getDealOffers = ({ dispatch, deal_id }) =>
|
||||
});
|
||||
}
|
||||
|
||||
export const acceptDealOffers = ({ deal_id, offers }) =>
|
||||
{
|
||||
const url = `${ process.env.NEXT_PUBLIC_SELF_API_HOST }/api/deals/accept`;
|
||||
|
||||
console.log("ACTION", "deals", "acceptDealOffers()", { url });
|
||||
console.log("ACTION", "deals", "acceptDealOffers()", { deal_id, });
|
||||
|
||||
return new Promise((resolve, reject) =>
|
||||
{
|
||||
eachSeries(offers, (offer_id, callback) =>
|
||||
{
|
||||
axios.post(url, { deal_id, offer_id }, {
|
||||
withCredentials: true,
|
||||
})
|
||||
.then((response) =>
|
||||
{
|
||||
console.log("ACTION", "deals", "acceptDealOffers()", "response", response.data);
|
||||
|
||||
callback();
|
||||
})
|
||||
.catch((error) =>
|
||||
{
|
||||
console.error("ACTION", "deals", "acceptDealOffers()", "ERROR");
|
||||
console.error(error);
|
||||
|
||||
callback();
|
||||
});
|
||||
}, () =>
|
||||
{
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
export const getDealDocuments = ({ dispatch, deal_id }) =>
|
||||
{
|
||||
const url = `${ process.env.NEXT_PUBLIC_SELF_API_HOST }/api/deals/documents`;
|
||||
|
||||
@ -39,7 +39,7 @@ export default class DealsList extends React.Component
|
||||
|
||||
render()
|
||||
{
|
||||
const { status, deals, questionnaire_status, dealSelected, onCloseDeal } = this.props;
|
||||
const { status, deals, questionnaire_status, dealSelected, onCloseDeal, onDealsUpdate } = this.props;
|
||||
|
||||
console.log({ deals });
|
||||
|
||||
@ -58,6 +58,8 @@ export default class DealsList extends React.Component
|
||||
deals={ deals }
|
||||
questionnaire_status={ questionnaire_status }
|
||||
onCloseDeal={ this._handle_onCloseDeal }
|
||||
onDealsUpdate={ onDealsUpdate }
|
||||
{ ...deal }
|
||||
/>)
|
||||
}
|
||||
else
|
||||
|
||||
@ -2,40 +2,45 @@ import React from "react";
|
||||
import pluralize from 'pluralize-ru';
|
||||
|
||||
const statuses = {
|
||||
"0": {
|
||||
"100": {
|
||||
index: undefined,
|
||||
title: "Выбор КП",
|
||||
icon: "/assets/images/status/1.svg",
|
||||
icon: "/assets/images/status/icon_deal_status_100.svg",
|
||||
},
|
||||
"101": {
|
||||
index: 1,
|
||||
title: "Выбор программы финансирования",
|
||||
icon: "/assets/images/status/2.svg",
|
||||
icon: "/assets/images/status/icon_deal_status_101.svg",
|
||||
},
|
||||
"102": {
|
||||
index: 2,
|
||||
title: "Сбор пакета документов",
|
||||
icon: "/assets/images/status/3.svg",
|
||||
icon: "/assets/images/status/icon_deal_status_102.svg",
|
||||
},
|
||||
"3": {
|
||||
"103": {
|
||||
index: 3,
|
||||
title: "Проверка документов",
|
||||
icon: "/assets/images/status/4.svg",
|
||||
icon: "/assets/images/status/icon_deal_status_103.svg",
|
||||
},
|
||||
"1": {
|
||||
"104": {
|
||||
index: 4,
|
||||
title: "Принятие решения по заявке",
|
||||
icon: "/assets/images/status/5.svg",
|
||||
title: "Принятие решения по сделке",
|
||||
icon: "/assets/images/status/icon_deal_status_104.svg",
|
||||
},
|
||||
"105": {
|
||||
index: 5,
|
||||
title: "Требуется изменение параметров",
|
||||
icon: "/assets/images/status/icon_deal_status_105.svg",
|
||||
},
|
||||
"106": {
|
||||
index: 5,
|
||||
title: "Принято положительное решение",
|
||||
icon: "/assets/images/status/icon_deal_status_106.svg",
|
||||
},
|
||||
"107": {
|
||||
index: 5,
|
||||
title: "Оформление лизинга",
|
||||
icon: "/assets/images/status/6.svg",
|
||||
},
|
||||
"2": {
|
||||
index: 6,
|
||||
title: "Выбор типа подписания",
|
||||
icon: "/assets/images/status/7.svg",
|
||||
title: "Оформление лизинга",
|
||||
icon: "/assets/images/status/icon_deal_status_107.svg",
|
||||
},
|
||||
};
|
||||
|
||||
@ -62,7 +67,7 @@ export default class DealsListDeal extends React.Component
|
||||
</div>
|
||||
<div>
|
||||
<p>
|
||||
{ statuses[ statuscode_id ] === undefined ? "Не начата" : `${ statuses[ statuscode_id ].index } ${ pluralize(step, 'этапа', 'этап', 'этапа', 'этапов') } ${ pluralize(statuses[ statuscode_id ].index, 'пройдено', 'пройден', 'пройдено', 'пройдено') }` }
|
||||
{ statuses[ statuscode_id ].index === undefined ? "Не начата" : `${ statuses[ statuscode_id ].index } ${ pluralize(step, 'этапа', 'этап', 'этапа', 'этапов') } ${ pluralize(statuses[ statuscode_id ].index, 'пройдено', 'пройден', 'пройдено', 'пройдено') }` }
|
||||
{/*}
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width={18} height={18} fill="none">
|
||||
<path stroke="#8E94A7" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M14.625 6.75 9 12.375 3.375 6.75" />
|
||||
@ -72,11 +77,12 @@ export default class DealsListDeal extends React.Component
|
||||
</div>
|
||||
<div>
|
||||
<img src={ statuses[ statuscode_id ].icon } width="50" height="50" />
|
||||
<p>{ statuscode_name }</p>
|
||||
{/*}<p>{ statuscode_name }</p>{*/}
|
||||
<p>{ statuses[ statuscode_id ].title }</p>
|
||||
</div>
|
||||
<div>
|
||||
<button className="button" onClick={() => { onSelectDeal(opp_number, index) }} >
|
||||
Еще { statuses[ statuscode_id ] !== undefined ? (7 - statuses[ statuscode_id ].index) : 7 } { pluralize(statuses[ statuscode_id ] !== undefined ? (7 - statuses[ statuscode_id ].index) : 7, 'этапа', 'этап', 'этапа', 'этапов') }
|
||||
Еще { statuses[ statuscode_id ].index !== undefined ? (7 - statuses[ statuscode_id ].index) : 7 } { pluralize(statuses[ statuscode_id ].index !== undefined ? (7 - statuses[ statuscode_id ].index) : 7, 'этапа', 'этап', 'этапа', 'этапов') }
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width={18} height={18} fill="none">
|
||||
<path stroke="#1C01A9" strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M14.625 6.75 9 12.375 3.375 6.75" />
|
||||
</svg>
|
||||
|
||||
@ -4,35 +4,56 @@ import moment from "moment";
|
||||
|
||||
import { SpinnerCircular } from "spinners-react";
|
||||
import FileDropzoneDeals from "../FileDropzoneDeals";
|
||||
import { acceptDealOffers } from "../../actions";
|
||||
|
||||
class Step extends React.Component
|
||||
{
|
||||
componentDidMount()
|
||||
{
|
||||
if(this.props.status === this.status)
|
||||
if(this.status.indexOf(this.props.statuscode_id) > -1)
|
||||
{
|
||||
this.setState({ open: true });
|
||||
}
|
||||
}
|
||||
|
||||
componentDidUpdate(prevProps, prevState)
|
||||
{
|
||||
if(this.props.statuscode_id !== prevProps.statuscode_id)
|
||||
{
|
||||
if(this.status.indexOf(this.props.statuscode_id) > -1)
|
||||
{
|
||||
this.setState({ open: true });
|
||||
}
|
||||
else
|
||||
{
|
||||
this.setState({ open: false });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
_handle_onSwitch = () =>
|
||||
{
|
||||
const { statuscode_id } = this.props;
|
||||
this.setState({ open: !this.state.open ? true : false });
|
||||
}
|
||||
|
||||
_renderHeader = (title) =>
|
||||
{
|
||||
const { status } = this.props;
|
||||
const { statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className="status_header" style={{ position: "relative" }} onClick={ this._handle_onSwitch }>
|
||||
{ status >= this.status && ( <div className="background"></div> )}
|
||||
<i className={`status_${ this.status } ${ status < this.status ? "inactive" : "" }`}></i>
|
||||
<div className="status_header" style={statuscode_id >= this.status[ 0 ] ? { position: "relative", } : { position: "relative", cursor: "inherit" }} onClick={ statuscode_id >= this.status[ 0 ] ? this._handle_onSwitch : () => {} }>
|
||||
{ this.status.indexOf(statuscode_id) > -1 && ( <div className="background"></div> )}
|
||||
<i className={`status_${ this.status[ 0 ] } ${ statuscode_id < this.status[ 0 ] ? "inactive" : "" }`}></i>
|
||||
<p>{ title }</p>
|
||||
<div className="button_arrow">
|
||||
<div className={`icon ${ open ? "up" : "down" }`}></div>
|
||||
</div>
|
||||
{ statuscode_id >= this.status[ 0 ] && (
|
||||
<div className="button_arrow">
|
||||
<div className={`icon ${ open ? "up" : "down" }`}></div>
|
||||
</div>
|
||||
) }
|
||||
{ this._renderHeaderButtons !== undefined && this._renderHeaderButtons() }
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@ -45,23 +66,86 @@ class Offers extends Step
|
||||
super(props);
|
||||
this.state = {
|
||||
open: false,
|
||||
loading: false,
|
||||
checked: [],
|
||||
};
|
||||
this.status = 1;
|
||||
this.status = [ 100 ];
|
||||
}
|
||||
|
||||
_handle_onCheckOffer = (quote_number) =>
|
||||
{
|
||||
const checked = [ ...this.state.checked ];
|
||||
let is_new = true;
|
||||
|
||||
if(checked.indexOf(quote_number) > -1)
|
||||
{
|
||||
checked.splice(checked.indexOf(quote_number), 1);
|
||||
is_new = false;
|
||||
}
|
||||
|
||||
if(is_new)
|
||||
{
|
||||
checked.push(quote_number);
|
||||
}
|
||||
|
||||
this.setState({ checked });
|
||||
}
|
||||
|
||||
_handle_onSend = (event) =>
|
||||
{
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
this.setState({ loading: true }, () =>
|
||||
{
|
||||
const { checked } = this.state;
|
||||
const { dealSelected, onDealsUpdate } = this.props;
|
||||
|
||||
acceptDealOffers({ deal_id: dealSelected, offers: checked })
|
||||
.then(() =>
|
||||
{
|
||||
onDealsUpdate()
|
||||
.then(() =>
|
||||
{
|
||||
this.setState({ loading: false });
|
||||
})
|
||||
.catch(() =>
|
||||
{
|
||||
this.setState({ loading: false });
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
_renderHeaderButtons = () =>
|
||||
{
|
||||
const { open, checked, loading } = this.state;
|
||||
|
||||
if(!loading && open && checked.length > 0)
|
||||
{
|
||||
return (
|
||||
<div className="buttons">
|
||||
<button className="button button button-blue" onClick={ this._handle_onSend }>Согласовать</button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status, offers } = this.props;
|
||||
const { open } = this.state;
|
||||
const { index, statuscode_id, offers } = this.props;
|
||||
const { checked, open, loading } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Выбор КП") }
|
||||
{ this._renderHeader("Выбор КП ") }
|
||||
<div className="wrap" style={{ display: open ? "block" : "none" }}>
|
||||
{ offers === undefined ? (
|
||||
{ offers === undefined || loading ? (
|
||||
<div style={{ minHeight: 100, display: "flex", justifyContent: "center", alignItems: "center", }}>
|
||||
<SpinnerCircular size={ 50 } thickness={ 51 } speed={ 100 } color="rgba(28, 1, 169, 1)" secondaryColor="rgba(236, 239, 244, 1)" />
|
||||
</div>
|
||||
@ -87,8 +171,8 @@ class Offers extends Step
|
||||
<tr key={ offer_index }>
|
||||
<td>
|
||||
<div className="form_field checkbox">
|
||||
<input type="checkbox" name="row" id="row" checked="" onChange={ () => {} }/>
|
||||
<label htmlFor="row"></label>
|
||||
<input type="checkbox" name="row" id={`offer_${ offer.quote_number }`} checked={ checked.indexOf(offer.quote_number) > -1 } onChange={ () => { this._handle_onCheckOffer(offer.quote_number) } }/>
|
||||
<label htmlFor={`offer_${ offer.quote_number }`}></label>
|
||||
</div>
|
||||
</td>
|
||||
<td>{ offer_index + 1 }</td>
|
||||
@ -134,23 +218,23 @@ class FinancialProgram extends Step
|
||||
this.state = {
|
||||
open: false,
|
||||
};
|
||||
this.status = 2;
|
||||
this.status = [ 101 ];
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status } = this.props;
|
||||
const { index, statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Программа финансирования") }
|
||||
<div className="wrap" style={{ display: open ? "block" : "none" }}>
|
||||
<div className="single_text">
|
||||
<p>Статусный текст о том что выбирается программа финансированияи может быть по центру иконочка часиков или слева от статусного текста иконочка часиков</p>
|
||||
<p>Статусный текст о том что выбирается программа финансированияи</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -168,12 +252,27 @@ class DocumentsForm extends Step
|
||||
open: false,
|
||||
files: {},
|
||||
};
|
||||
this.status = 3;
|
||||
this.status = [ 102 ];
|
||||
}
|
||||
|
||||
_renderHeaderButtons = () =>
|
||||
{
|
||||
const { open, files } = this.state;
|
||||
|
||||
if(open && Object.keys(files).length > 0)
|
||||
{
|
||||
return (
|
||||
<div className="buttons">
|
||||
<button className="button button button-blue">Отправить документы</button>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
_handle_onAddFile = (file_id, files) =>
|
||||
{
|
||||
console.log("_handle_onAddFile", { file_id, files });
|
||||
const existed_files = this.state.files;
|
||||
const document_files = existed_files[ file_id ] === undefined ? [] : existed_files[ file_id ];
|
||||
|
||||
@ -198,18 +297,38 @@ class DocumentsForm extends Step
|
||||
|
||||
_handle_onDeleteFile = (file_id, file) =>
|
||||
{
|
||||
const files = { ...this.state.files };
|
||||
const list = [];
|
||||
|
||||
for(let i in files[file_id])
|
||||
{
|
||||
if(files[file_id][i].name !== file.name)
|
||||
{
|
||||
list.push(files[file_id][i]);
|
||||
}
|
||||
}
|
||||
|
||||
if(list.length > 0)
|
||||
{
|
||||
files[file_id] = list;
|
||||
}
|
||||
else
|
||||
{
|
||||
delete files[file_id];
|
||||
}
|
||||
|
||||
this.setState({ files });
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status, documents, questionnaire_status } = this.props;
|
||||
const { index, statuscode_id, documents, questionnaire_status } = this.props;
|
||||
const { open, files } = this.state;
|
||||
|
||||
console.log({ documents });
|
||||
console.log("DocumentsForm", { documents });
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
@ -292,23 +411,23 @@ class StatusDocumentsCheck extends Step
|
||||
this.state = {
|
||||
open: false,
|
||||
};
|
||||
this.status = 4;
|
||||
this.status = [ 103 ];
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status } = this.props;
|
||||
const { index, statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Проверка документов") }
|
||||
<div className="wrap" style={{ display: open ? "block" : "none" }}>
|
||||
<div className="single_text">
|
||||
<p>Статусный текст о том что выбирается программа финансированияи может быть по центру иконочка часиков или слева от статусного текста иконочка часиков</p>
|
||||
<p>Статусный текст о том что выбирается программа финансированияи</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -325,23 +444,23 @@ class StatusDecisionMaking extends Step
|
||||
this.state = {
|
||||
open: false,
|
||||
};
|
||||
this.status = 5;
|
||||
this.status = [ 104, 105, ];
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status } = this.props;
|
||||
const { index, statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf(statuscode_id) > -1 ? "current" : (statuscode_id > this.status[0] && statuscode_id > this.status[1]) ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Принятие решения по заявке") }
|
||||
{ this._renderHeader("Принятие решения по сделке") }
|
||||
<div className="wrap" style={{ display: open ? "block" : "none" }}>
|
||||
<div className="single_text">
|
||||
<p>Статусный текст о том что выбирается программа финансированияи может быть по центру иконочка часиков или слева от статусного текста иконочка часиков</p>
|
||||
<p>Статусный текст о том что выбирается программа финансированияи</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -358,23 +477,23 @@ class StatusLeasingRegistration extends Step
|
||||
this.state = {
|
||||
open: false,
|
||||
};
|
||||
this.status = 6;
|
||||
this.status = [ 106 ];
|
||||
}
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status } = this.props;
|
||||
const { index, statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Оформление лизинга") }
|
||||
{ this._renderHeader("Принято положительное решение") }
|
||||
<div className="wrap" style={{ display: open ? "block" : "none" }}>
|
||||
<div className="single_text">
|
||||
<p>Статусный текст о том что выбирается программа финансированияи может быть по центру иконочка часиков или слева от статусного текста иконочка часиков</p>
|
||||
<p>Статусный текст о том что выбирается программа финансированияи</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -391,13 +510,12 @@ class SigningTypeSelection extends Step
|
||||
this.state = {
|
||||
open: false,
|
||||
};
|
||||
this.status = 7;
|
||||
this.status = [ 107 ];
|
||||
this.types = [
|
||||
{
|
||||
title: "Подготовлено",
|
||||
key: "prepared_contracts",
|
||||
},
|
||||
/*
|
||||
{
|
||||
title: "К подписанию",
|
||||
key: "signing_plan_contracts",
|
||||
@ -414,14 +532,13 @@ class SigningTypeSelection extends Step
|
||||
title: "Анулировано",
|
||||
key: "annulled_contracts",
|
||||
},
|
||||
*/
|
||||
];
|
||||
}
|
||||
|
||||
_render_preparedContracts = () =>
|
||||
{
|
||||
const contracts = this.props.contracts['prepared_contracts'];
|
||||
console.log({ contracts });
|
||||
console.log("_render_preparedContracts", { contracts });
|
||||
|
||||
return (
|
||||
<div className="block-column">
|
||||
@ -450,32 +567,29 @@ class SigningTypeSelection extends Step
|
||||
|
||||
_render_signingPlanContracts = () =>
|
||||
{
|
||||
const { contracts } = this.props;
|
||||
const contracts = this.props.contracts['prepared_contracts'];
|
||||
console.log("_render_signingPlanContracts", { contracts });
|
||||
|
||||
return (
|
||||
<div className="block-column">
|
||||
<div className="dosc_list medium-icon">
|
||||
<div className="row flex-start">
|
||||
<p className="doc_name i-doc i-medium" >
|
||||
№123/2023 от 01.01.2023
|
||||
</p>
|
||||
<button className="button">Перейти в ЭДО</button>
|
||||
<div className="horizontal_dropzone_files">
|
||||
{ contracts.map((contract, index) => (
|
||||
<div className="contract" key={ index }>
|
||||
<div className="doc_icon">
|
||||
</div>
|
||||
<div className="title">
|
||||
<span>{ contract.name }</span>
|
||||
<span>{ moment().format("DD.MM.YYYY") }</span>
|
||||
</div>
|
||||
</div>
|
||||
<div className="row flex-start">
|
||||
<p className="doc_name i-doc i-medium" >
|
||||
№123/2023 от 01.01.2023
|
||||
</p>
|
||||
<button className="button">Скачать документ</button>
|
||||
<button className="button">Загрузить подписанный экземпляр</button>
|
||||
</div>
|
||||
</div>
|
||||
)) }
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
_render_issuedContracts = () =>
|
||||
{
|
||||
const { contracts } = this.props;
|
||||
const contracts = this.props.contracts['issued_contracts'];
|
||||
console.log("_render_issuedContracts", { contracts });
|
||||
|
||||
return (
|
||||
<div className="block-column">
|
||||
@ -492,7 +606,8 @@ class SigningTypeSelection extends Step
|
||||
|
||||
_render_signingFactContracts = () =>
|
||||
{
|
||||
const { contracts } = this.props;
|
||||
const contracts = this.props.contracts['signing_fact_contracts'];
|
||||
console.log("_render_signingFactContracts", { contracts });
|
||||
|
||||
return (
|
||||
<div className="block-column">
|
||||
@ -509,7 +624,8 @@ class SigningTypeSelection extends Step
|
||||
|
||||
_render_annuledContracts = () =>
|
||||
{
|
||||
const { contracts } = this.props;
|
||||
const contracts = this.props.contracts['annulled_contracts'];
|
||||
console.log("_render_annuledContracts", { contracts });
|
||||
|
||||
return (
|
||||
<div className="block-column">
|
||||
@ -566,15 +682,15 @@ class SigningTypeSelection extends Step
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status } = this.props;
|
||||
const { index, statuscode_id } = this.props;
|
||||
const { open } = this.state;
|
||||
|
||||
return (
|
||||
<div className={`${ status === this.status ? "current" : status > this.status ? "done" : "" }`}>
|
||||
<div className={`${ this.status.indexOf( statuscode_id ) > -1 ? "current" : statuscode_id > this.status[ 0 ] ? "done" : "" }`}>
|
||||
<p>Сделка { index + 1 }</p>
|
||||
<span></span>
|
||||
<div className="status_body">
|
||||
{ this._renderHeader("Выбор типа подписания") }
|
||||
{ this._renderHeader("Оформление лизинга") }
|
||||
<div className="wrap form" style={{ display: open ? "block" : "none" }}>
|
||||
{ this.types.map((type, index) => (
|
||||
<div className="block" key={ index }>
|
||||
@ -602,7 +718,7 @@ export default class SingleDeal extends React.Component
|
||||
|
||||
render()
|
||||
{
|
||||
const { index, status, deals, dealSelected, onCloseDeal } = this.props;
|
||||
const { index, status, deals, dealSelected, onCloseDeal, } = this.props;
|
||||
console.log({ "deals": deals });
|
||||
|
||||
const offers = deals.details[ dealSelected ] !== undefined ? deals.details[ dealSelected ].offers : undefined;
|
||||
|
||||
@ -107,6 +107,24 @@ class DealsStatus extends React.Component
|
||||
|
||||
componentDidUpdate(prevProps, prevState) { }
|
||||
|
||||
_onDealsUpdate = () =>
|
||||
{
|
||||
return new Promise((resolve) =>
|
||||
{
|
||||
const { dispatch } = this.props;
|
||||
|
||||
getDeals({ dispatch, update: true })
|
||||
.then(() =>
|
||||
{
|
||||
resolve();
|
||||
})
|
||||
.catch(() =>
|
||||
{
|
||||
resolve();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
_handleModalToggle = (modal) =>
|
||||
{
|
||||
if (modal === "current")
|
||||
@ -164,6 +182,7 @@ class DealsStatus extends React.Component
|
||||
dealSelected={ dealSelected }
|
||||
onSelectDeal={ this._handle_onSelectDeal }
|
||||
onCloseDeal={ this._handle_onCloseDeal }
|
||||
onDealsUpdate={ this._onDealsUpdate }
|
||||
/>
|
||||
{/*}
|
||||
<AllContractsModal
|
||||
|
||||
@ -17,7 +17,7 @@ export default class FileDropzoneDeals extends FileDropzone
|
||||
<div className="horizontal_dropzone_files">
|
||||
{ files.map((file, index) => (
|
||||
<div className="file" key={ index }>
|
||||
<div className="delete">
|
||||
<div className="delete" onClick={ () => onDeleteFile(file) }>
|
||||
<div className="icon"></div>
|
||||
</div>
|
||||
<div className="doc_icon">
|
||||
|
||||
@ -158,10 +158,11 @@ input[type="checkbox"] + label:before {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 2px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
input[type="checkbox"]:checked + label:before {
|
||||
background: url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--primary);
|
||||
border-color: var(--primary);
|
||||
background: url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--blue);
|
||||
border-color: var(--blue);
|
||||
}
|
||||
input[type="checkbox"]:disabled + label {
|
||||
cursor: default;
|
||||
|
||||
@ -187,13 +187,14 @@ input[type="checkbox"] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 2px;
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
&:checked + label {
|
||||
&:before {
|
||||
background: url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--primary);
|
||||
border-color: var(--primary);
|
||||
background: url("/assets/images/icons/checkbox_white.svg") no-repeat center var(--blue);
|
||||
border-color: var(--blue);
|
||||
}
|
||||
}
|
||||
&:disabled + label {
|
||||
|
||||
@ -5384,7 +5384,9 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_
|
||||
background-size: auto 13px;
|
||||
}
|
||||
.contractStatus_list .list_item div:nth-child(4) {
|
||||
width: 150px;
|
||||
width: 130px;
|
||||
min-width: 130px;
|
||||
justify-content: flex-end;
|
||||
cursor: pointer;
|
||||
}
|
||||
.contractStatus_list .list_item div:nth-child(4) button {
|
||||
@ -5454,7 +5456,7 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_
|
||||
white-space: nowrap;
|
||||
padding: 15px 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: flex-start;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i {
|
||||
@ -5462,47 +5464,53 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_1 {
|
||||
background: url("/assets/images/status/1_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_100 {
|
||||
background: url("/assets/images/status/icon_deal_status_100.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_1.inactive {
|
||||
background: url("/assets/images/status/1_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_100.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_100_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_2 {
|
||||
background: url("/assets/images/status/2_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_101 {
|
||||
background: url("/assets/images/status/icon_deal_status_101.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_2.inactive {
|
||||
background: url("/assets/images/status/2_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_101.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_101_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_3 {
|
||||
background: url("/assets/images/status/3_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_102 {
|
||||
background: url("/assets/images/status/icon_deal_status_102.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_3.inactive {
|
||||
background: url("/assets/images/status/3_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_102.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_102_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_4 {
|
||||
background: url("/assets/images/status/4_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_103 {
|
||||
background: url("/assets/images/status/icon_deal_status_103.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_4.inactive {
|
||||
background: url("/assets/images/status/4_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_103.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_103_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_5 {
|
||||
background: url("/assets/images/status/5_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_104 {
|
||||
background: url("/assets/images/status/icon_deal_status_104.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_5.inactive {
|
||||
background: url("/assets/images/status/5_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_104.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_104_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_6 {
|
||||
background: url("/assets/images/status/6_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_105 {
|
||||
background: url("/assets/images/status/icon_deal_status_105.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_6.inactive {
|
||||
background: url("/assets/images/status/6_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_105.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_105_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_7 {
|
||||
background: url("/assets/images/status/7_on.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_106 {
|
||||
background: url("/assets/images/status/icon_deal_status_106.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_7.inactive {
|
||||
background: url("/assets/images/status/7_off.svg") no-repeat center;
|
||||
.contractStatus_modal .single_status > div i.status_106.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_106_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_107 {
|
||||
background: url("/assets/images/status/icon_deal_status_107.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div i.status_107.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_107_inactive.svg") no-repeat center;
|
||||
}
|
||||
.contractStatus_modal .single_status > div > span {
|
||||
display: block;
|
||||
@ -5687,12 +5695,22 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_
|
||||
}
|
||||
.contractStatus_modal .single_status > div .status_body .status_header i {
|
||||
z-index: 2;
|
||||
white-space: nowrap;
|
||||
min-width: 40px;
|
||||
}
|
||||
.contractStatus_modal .single_status > div .status_body .status_header p {
|
||||
z-index: 2;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.contractStatus_modal .single_status > div .status_body .status_header .buttons {
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding-right: 4px;
|
||||
}
|
||||
.contractStatus_modal .single_status > div .status_body .status_header .button_arrow {
|
||||
width: 50px;
|
||||
min-width: 50px;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
@ -6094,7 +6094,10 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block {
|
||||
}
|
||||
|
||||
&:nth-child(4) {
|
||||
width: 150px;
|
||||
width: 130px;
|
||||
min-width: 130px;
|
||||
justify-content: flex-end;
|
||||
|
||||
cursor: pointer;
|
||||
|
||||
button {
|
||||
@ -6183,7 +6186,7 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block {
|
||||
padding: 15px 0;
|
||||
// height: 80px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: flex-start;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
@ -6193,55 +6196,62 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
|
||||
&.status_1 {
|
||||
background: url("/assets/images/status/1_on.svg") no-repeat center;
|
||||
&.status_100 {
|
||||
background: url("/assets/images/status/icon_deal_status_100.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/1_off.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_2 {
|
||||
background: url("/assets/images/status/2_on.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/2_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_100_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_3 {
|
||||
background: url("/assets/images/status/3_on.svg") no-repeat center;
|
||||
&.status_101 {
|
||||
background: url("/assets/images/status/icon_deal_status_101.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/3_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_101_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_4 {
|
||||
background: url("/assets/images/status/4_on.svg") no-repeat center;
|
||||
&.status_102 {
|
||||
background: url("/assets/images/status/icon_deal_status_102.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/4_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_102_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_5 {
|
||||
background: url("/assets/images/status/5_on.svg") no-repeat center;
|
||||
&.status_103 {
|
||||
background: url("/assets/images/status/icon_deal_status_103.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/5_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_103_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_6 {
|
||||
background: url("/assets/images/status/6_on.svg") no-repeat center;
|
||||
&.status_104 {
|
||||
background: url("/assets/images/status/icon_deal_status_104.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/6_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_104_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_7 {
|
||||
background: url("/assets/images/status/7_on.svg") no-repeat center;
|
||||
&.status_105 {
|
||||
background: url("/assets/images/status/icon_deal_status_105.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/7_off.svg") no-repeat center;
|
||||
background: url("/assets/images/status/icon_deal_status_105_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.status_106 {
|
||||
background: url("/assets/images/status/icon_deal_status_106.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_106_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
|
||||
&.status_107 {
|
||||
background: url("/assets/images/status/icon_deal_status_107.svg") no-repeat center;
|
||||
&.inactive {
|
||||
background: url("/assets/images/status/icon_deal_status_107_inactive.svg") no-repeat center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> span {
|
||||
display: block;
|
||||
@ -6481,14 +6491,25 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block {
|
||||
|
||||
i {
|
||||
z-index: 2;
|
||||
white-space: nowrap;
|
||||
min-width: 40px;
|
||||
}
|
||||
|
||||
p {
|
||||
z-index: 2;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.buttons {
|
||||
z-index: 2;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.button_arrow {
|
||||
width: 50px;
|
||||
min-width: 50px;
|
||||
height: 50px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
16
pages/api/deals/accept.js
Normal file
@ -0,0 +1,16 @@
|
||||
/*
|
||||
2.7.3 - Метод согласования Предложений Клиентом по Лизинговой сделке в CRM
|
||||
POST /lk/ConsiderationOpportunity/quote
|
||||
*/
|
||||
import CRMRequestPost from '../../../lib/CRMRequestPost';
|
||||
|
||||
export default async function handler(req, res)
|
||||
{
|
||||
console.log("API", "DEALS", "quote");
|
||||
console.log(req.body);
|
||||
console.log("-".repeat(50));
|
||||
|
||||
const { deal_id, offer_id } = req.body;
|
||||
|
||||
await CRMRequestPost(req, res, `${ process.env.CRM_API_HOST }/lk/ConsiderationOpportunity/quote/`, { ...{ opp_number: deal_id, quote_number: offer_id, agreed: true } });
|
||||
}
|
||||
@ -1,4 +0,0 @@
|
||||
/*
|
||||
2.7.3 - Метод согласования Предложений Клиентом по Лизинговой сделке в CRM
|
||||
POST /lk/ConsiderationOpportunity/quote
|
||||
*/
|
||||
59
public/assets/images/status/icon_deal_status_100.svg
Normal file
@ -0,0 +1,59 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<path d="M33.5559 4.62993L11.2641 1.889C10.1684 1.75428 9.17086 2.53268 9.03515 3.62816L5.11826 35.2462C4.98187 36.3472 5.76769 37.3488 6.86951 37.4784L29.3496 40.1219C30.4445 40.2506 31.4372 39.469 31.5689 38.3744L33.6142 21.3716C33.7012 20.6483 34.1892 20.0362 34.875 19.7904C35.5639 19.5434 36.053 18.927 36.1369 18.2L37.1387 9.51965C37.2612 8.45825 36.5278 7.48801 35.4732 7.31634L35.2506 7.2801L35.2997 6.834C35.4196 5.74585 34.6424 4.76353 33.5559 4.62993Z" fill="#1C01A9"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M5.71384 32.1392L15.2394 2.8175L36.2599 9.4872L26.7604 38.8933L5.71384 32.1392Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M7.15369 34.9674L12.2044 3.86088L34.4797 7.32101L29.4684 38.5088L7.15369 34.9674Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M9.01123 35.3322L9.77072 4.51147L31.8205 4.90347L31.11 35.7977L9.01123 35.3322Z" fill="white"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8284 20.5163C11.7473 20.5163 11.6814 20.5821 11.6814 20.6633V22.8193C11.6814 22.9005 11.7473 22.9663 11.8284 22.9663H14.0824C14.1636 22.9663 14.2294 22.9005 14.2294 22.8193V20.6633C14.2294 20.5821 14.1636 20.5163 14.0824 20.5163H11.8284ZM11.3875 20.6633C11.3875 20.4197 11.5849 20.2223 11.8284 20.2223H14.0824C14.326 20.2223 14.5234 20.4197 14.5234 20.6633V22.8193C14.5234 23.0628 14.326 23.2603 14.0824 23.2603H11.8284C11.5849 23.2603 11.3875 23.0628 11.3875 22.8193V20.6633Z" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8938 21.2608L12.7627 22.5212L12.115 21.8304L12.401 21.5623L12.7564 21.9414L13.6021 20.999L13.8938 21.2608Z" fill="#A8026B"/>
|
||||
<rect x="15.9998" y="20.0001" width="11" height="1" rx="0.5" fill="#1C01A9"/>
|
||||
<rect x="15.9998" y="23.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="25.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8284 10.5163C11.7473 10.5163 11.6814 10.5821 11.6814 10.6633V12.8193C11.6814 12.9005 11.7473 12.9663 11.8284 12.9663H14.0824C14.1636 12.9663 14.2294 12.9005 14.2294 12.8193V10.6633C14.2294 10.5821 14.1636 10.5163 14.0824 10.5163H11.8284ZM11.3875 10.6633C11.3875 10.4197 11.5849 10.2223 11.8284 10.2223H14.0824C14.326 10.2223 14.5234 10.4197 14.5234 10.6633V12.8193C14.5234 13.0628 14.326 13.2603 14.0824 13.2603H11.8284C11.5849 13.2603 11.3875 13.0628 11.3875 12.8193V10.6633Z" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8938 11.2608L12.7627 12.5212L12.115 11.8304L12.401 11.5623L12.7564 11.9414L13.6021 10.999L13.8938 11.2608Z" fill="#A8026B"/>
|
||||
<rect x="15.9998" y="10.0001" width="11" height="1" rx="0.5" fill="#1C01A9"/>
|
||||
<rect x="15.9998" y="13.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="15.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<path d="M11.5349 32.6863L18.1744 32.9068" stroke="black" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1608 32.3434C26.5667 32.3434 26.8958 32.0144 26.8958 31.6084C26.8958 31.2025 26.5667 30.8734 26.1608 30.8734C25.7549 30.8734 25.4258 31.2025 25.4258 31.6084C25.4258 32.0144 25.7549 32.3434 26.1608 32.3434ZM26.1608 32.9804C26.9185 32.9804 27.5328 32.3662 27.5328 31.6084C27.5328 30.8507 26.9185 30.2365 26.1608 30.2365C25.4031 30.2365 24.7888 30.8507 24.7888 31.6084C24.7888 32.3662 25.4031 32.9804 26.1608 32.9804Z" fill="#1C01A9"/>
|
||||
<path opacity="0.7" d="M27.2387 31.6084C27.2387 31.013 26.7561 30.5304 26.1608 30.5304M26.1608 32.6864C25.5654 32.6864 25.0828 32.2037 25.0828 31.6084" stroke="white" stroke-width="0.5"/>
|
||||
<path opacity="0.7" d="M26.848 30.1992C26.0697 29.8197 25.131 30.143 24.7514 30.9213M27.5702 32.2958C27.1906 33.0742 26.2519 33.3975 25.4736 33.0179" stroke="#1C01A9" stroke-width="0.5"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="4.71387" y="1.8175" width="32.5461" height="38.0758" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="6.15381" y="2.86084" width="29.3259" height="36.6479" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="8.01123" y="3.51147" width="24.8093" height="33.2863" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
@ -0,0 +1,59 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<path d="M33.5559 4.62993L11.2641 1.889C10.1684 1.75428 9.17086 2.53268 9.03515 3.62816L5.11826 35.2462C4.98187 36.3472 5.76769 37.3488 6.86951 37.4784L29.3496 40.1219C30.4445 40.2506 31.4372 39.469 31.5689 38.3744L33.6142 21.3716C33.7012 20.6483 34.1892 20.0362 34.875 19.7904C35.5639 19.5434 36.053 18.927 36.1369 18.2L37.1387 9.51965C37.2612 8.45825 36.5278 7.48801 35.4732 7.31634L35.2506 7.2801L35.2997 6.834C35.4196 5.74585 34.6424 4.76353 33.5559 4.62993Z" fill="#8E94A7"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M5.71384 32.1392L15.2394 2.8175L36.2599 9.4872L26.7604 38.8933L5.71384 32.1392Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M7.15369 34.9674L12.2044 3.86088L34.4797 7.32101L29.4684 38.5088L7.15369 34.9674Z" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M9.01123 35.3322L9.77072 4.51147L31.8205 4.90347L31.11 35.7977L9.01123 35.3322Z" fill="white"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8284 20.5163C11.7473 20.5163 11.6814 20.5821 11.6814 20.6633V22.8193C11.6814 22.9005 11.7473 22.9663 11.8284 22.9663H14.0824C14.1636 22.9663 14.2294 22.9005 14.2294 22.8193V20.6633C14.2294 20.5821 14.1636 20.5163 14.0824 20.5163H11.8284ZM11.3875 20.6633C11.3875 20.4197 11.5849 20.2223 11.8284 20.2223H14.0824C14.326 20.2223 14.5234 20.4197 14.5234 20.6633V22.8193C14.5234 23.0628 14.326 23.2603 14.0824 23.2603H11.8284C11.5849 23.2603 11.3875 23.0628 11.3875 22.8193V20.6633Z" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8938 21.2608L12.7627 22.5212L12.115 21.8304L12.401 21.5623L12.7564 21.9414L13.6021 20.999L13.8938 21.2608Z" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="20.0001" width="11" height="1" rx="0.5" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="23.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="25.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.8284 10.5163C11.7473 10.5163 11.6814 10.5821 11.6814 10.6633V12.8193C11.6814 12.9005 11.7473 12.9663 11.8284 12.9663H14.0824C14.1636 12.9663 14.2294 12.9005 14.2294 12.8193V10.6633C14.2294 10.5821 14.1636 10.5163 14.0824 10.5163H11.8284ZM11.3875 10.6633C11.3875 10.4197 11.5849 10.2223 11.8284 10.2223H14.0824C14.326 10.2223 14.5234 10.4197 14.5234 10.6633V12.8193C14.5234 13.0628 14.326 13.2603 14.0824 13.2603H11.8284C11.5849 13.2603 11.3875 13.0628 11.3875 12.8193V10.6633Z" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.8938 11.2608L12.7627 12.5212L12.115 11.8304L12.401 11.5623L12.7564 11.9414L13.6021 10.999L13.8938 11.2608Z" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="10.0001" width="11" height="1" rx="0.5" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="13.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<rect x="15.9998" y="15.0001" width="13" height="0.5" rx="0.25" fill="#8E94A7"/>
|
||||
<path d="M11.5349 32.6863L18.1744 32.9068" stroke="#8E94A7" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M26.1608 32.3434C26.5667 32.3434 26.8958 32.0144 26.8958 31.6084C26.8958 31.2025 26.5667 30.8734 26.1608 30.8734C25.7549 30.8734 25.4258 31.2025 25.4258 31.6084C25.4258 32.0144 25.7549 32.3434 26.1608 32.3434ZM26.1608 32.9804C26.9185 32.9804 27.5328 32.3662 27.5328 31.6084C27.5328 30.8507 26.9185 30.2365 26.1608 30.2365C25.4031 30.2365 24.7888 30.8507 24.7888 31.6084C24.7888 32.3662 25.4031 32.9804 26.1608 32.9804Z" fill="#8E94A7"/>
|
||||
<path opacity="0.7" d="M27.2387 31.6084C27.2387 31.013 26.7561 30.5304 26.1608 30.5304M26.1608 32.6864C25.5654 32.6864 25.0828 32.2037 25.0828 31.6084" stroke="white" stroke-width="0.5"/>
|
||||
<path opacity="0.7" d="M26.848 30.1992C26.0697 29.8197 25.131 30.143 24.7514 30.9213M27.5702 32.2958C27.1906 33.0742 26.2519 33.3975 25.4736 33.0179" stroke="#8E94A7" stroke-width="0.5"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="4.71387" y="1.8175" width="32.5461" height="38.0758" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="6.15381" y="2.86084" width="29.3259" height="36.6479" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="8.01123" y="3.51147" width="24.8093" height="33.2863" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.3 KiB |
91
public/assets/images/status/icon_deal_status_101.svg
Normal file
@ -0,0 +1,91 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 3.16272C28.7085 0.895934 24.7626 2.79892 18.9417 2.79892C12.7011 2.79892 7.83168 0.224303 4.16564 1.87542C0.499595 3.52654 0.3037 8.6478 2.12273 11.8941C3.94176 15.1403 5.62086 18.5545 4.16564 23.6478C2.71041 28.7411 3.88579 31.1758 7.43989 34.7858C10.994 38.3959 22.3839 33.9183 29.9119 32.687C37.4399 31.4556 39.5947 28.0135 39.7066 24.3474C39.8186 20.6814 36.7962 17.5191 35.9567 14.1329C35.1171 10.7467 35.0331 5.42951 31.8708 3.16272Z" fill="#EDEFF5"/>
|
||||
<rect x="9.54102" y="3.2583" width="20.4275" height="34.8387" rx="2" fill="#1C01A9"/>
|
||||
<g filter="url(#filter0_i_0_1)">
|
||||
<path d="M12.0596 7.5957H27.3102V12.4927H12.0596V7.5957Z" fill="#1C01A9"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<rect x="13.3184" y="8.71533" width="12.7322" height="2.65838" fill="#2F80ED"/>
|
||||
</g>
|
||||
<circle opacity="0.2" cx="12.9693" cy="16.2004" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="15.6407" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="15.9205" r="1.04936" fill="#A8026B"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="16.2004" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="15.6407" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="15.9205" r="1.04936" fill="#A8026B"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="20.6778" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="20.1181" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="20.3979" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="29.6322" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="29.0726" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="29.3525" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="34.1094" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="33.5497" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="33.8296" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<path d="M4.48044 2.5646V2.5646C4.71586 3.82448 5.70147 4.81009 6.96135 5.04551V5.04551V5.04551C5.69274 5.26424 4.69916 6.25781 4.48044 7.52642V7.52642V7.52642C4.27825 6.24932 3.27663 5.2477 1.99953 5.04551V5.04551V5.04551C3.26814 4.82679 4.26171 3.83321 4.48044 2.5646V2.5646Z" fill="#2F80ED"/>
|
||||
<path d="M6.43455 11.1051V11.1051C6.56763 11.8173 7.12476 12.3744 7.83692 12.5075V12.5075V12.5075C7.11983 12.6311 6.55819 13.1928 6.43455 13.9099V13.9099V13.9099C6.32026 13.188 5.75408 12.6218 5.03218 12.5075V12.5075V12.5075C5.74928 12.3839 6.31092 11.8222 6.43455 11.1051V11.1051Z" fill="#2F80ED"/>
|
||||
<path d="M36.749 21.8317V21.8317C36.8821 22.5438 37.4392 23.101 38.1514 23.2341V23.2341V23.2341C37.4343 23.3577 36.8726 23.9193 36.749 24.6364V24.6364V24.6364C36.6347 23.9145 36.0685 23.3483 35.3466 23.2341V23.2341V23.2341C36.0637 23.1104 36.6254 22.5488 36.749 21.8317V21.8317Z" fill="#2F80ED"/>
|
||||
<path d="M36.2158 35.3571V35.3571C36.3489 36.0692 36.906 36.6264 37.6182 36.7594V36.7594V36.7594C36.9011 36.8831 36.3394 37.4447 36.2158 38.1618V38.1618V38.1618C36.1015 37.4399 35.5353 36.8737 34.8134 36.7594V36.7594V36.7594C35.5305 36.6358 36.0922 36.0742 36.2158 35.3571V35.3571Z" fill="#2F80ED"/>
|
||||
<path d="M39.6331 31.2371C39.6331 31.5376 39.3895 31.7812 39.089 31.7812C38.7885 31.7812 38.5449 31.5376 38.5449 31.2371C38.5449 30.9366 38.7885 30.693 39.089 30.693C39.3895 30.693 39.6331 30.9366 39.6331 31.2371Z" fill="#2F80ED"/>
|
||||
<defs>
|
||||
<filter id="filter0_i_0_1" x="12.0596" y="7.5957" width="15.2507" height="4.89697" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="10"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.33 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="13.3184" y="8.71533" width="12.7322" height="2.65833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.56 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.4 KiB |
@ -0,0 +1,91 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 3.16272C28.7085 0.895934 24.7626 2.79892 18.9417 2.79892C12.7011 2.79892 7.83168 0.224303 4.16564 1.87542C0.499595 3.52654 0.3037 8.6478 2.12273 11.8941C3.94176 15.1403 5.62086 18.5545 4.16564 23.6478C2.71041 28.7411 3.88579 31.1758 7.43989 34.7858C10.994 38.3959 22.3839 33.9183 29.9119 32.687C37.4399 31.4556 39.5947 28.0135 39.7066 24.3474C39.8186 20.6814 36.7962 17.5191 35.9567 14.1329C35.1171 10.7467 35.0331 5.42951 31.8708 3.16272Z" fill="#EDEFF5"/>
|
||||
<rect x="9.54102" y="3.2583" width="20.4275" height="34.8387" rx="2" fill="#8E94A7"/>
|
||||
<g filter="url(#filter0_i_0_1)">
|
||||
<path d="M12.0596 7.5957H27.3102V12.4927H12.0596V7.5957Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_i_0_1)">
|
||||
<rect x="13.3184" y="8.71533" width="12.7322" height="2.65838" fill="#EDEFF5"/>
|
||||
</g>
|
||||
<circle opacity="0.2" cx="12.9693" cy="16.2004" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="15.6407" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="15.9205" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="12.9693" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="12.9693" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="16.2004" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="15.6407" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="15.9205" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="17.4458" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="17.4458" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="20.6778" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="20.1181" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="20.3979" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="29.6322" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="29.0726" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="29.3525" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="34.1094" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="21.9234" cy="33.5497" r="1.04936" fill="white"/>
|
||||
<circle cx="21.9234" cy="33.8296" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="20.6779" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="20.1182" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="20.398" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="25.1548" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="24.5953" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="24.875" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="29.632" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="29.0723" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="29.3522" r="1.04936" fill="#EDEFF5"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="34.1095" r="1.04936" fill="#0C0C0C"/>
|
||||
<circle opacity="0.2" cx="26.4009" cy="33.5498" r="1.04936" fill="white"/>
|
||||
<circle cx="26.4009" cy="33.8298" r="1.04936" fill="#EDEFF5"/>
|
||||
<path d="M4.48068 2.5646V2.5646C4.7161 3.82448 5.70171 4.81009 6.96159 5.04551V5.04551V5.04551C5.69299 5.26424 4.69941 6.25781 4.48068 7.52642V7.52642V7.52642C4.2785 6.24932 3.27688 5.2477 1.99978 5.04551V5.04551V5.04551C3.26838 4.82679 4.26196 3.83321 4.48068 2.5646V2.5646Z" fill="#EDEFF5"/>
|
||||
<path d="M6.43455 11.1051V11.1051C6.56763 11.8173 7.12476 12.3744 7.83692 12.5075V12.5075V12.5075C7.11983 12.6311 6.55819 13.1928 6.43455 13.9099V13.9099V13.9099C6.32026 13.188 5.75408 12.6218 5.03218 12.5075V12.5075V12.5075C5.74928 12.3839 6.31092 11.8222 6.43455 11.1051V11.1051Z" fill="#EDEFF5"/>
|
||||
<path d="M36.749 21.8317V21.8317C36.8821 22.5438 37.4392 23.101 38.1514 23.2341V23.2341V23.2341C37.4343 23.3577 36.8726 23.9193 36.749 24.6364V24.6364V24.6364C36.6347 23.9145 36.0685 23.3483 35.3466 23.2341V23.2341V23.2341C36.0637 23.1104 36.6254 22.5488 36.749 21.8317V21.8317Z" fill="#EDEFF5"/>
|
||||
<path d="M36.2158 35.3571V35.3571C36.3489 36.0692 36.906 36.6264 37.6182 36.7594V36.7594V36.7594C36.9011 36.8831 36.3394 37.4447 36.2158 38.1618V38.1618V38.1618C36.1015 37.4399 35.5353 36.8737 34.8134 36.7594V36.7594V36.7594C35.5305 36.6358 36.0922 36.0742 36.2158 35.3571V35.3571Z" fill="#EDEFF5"/>
|
||||
<circle cx="39.089" cy="31.2371" r="0.544112" fill="#EDEFF5"/>
|
||||
<defs>
|
||||
<filter id="filter0_i_0_1" x="12.0596" y="7.5957" width="15.2507" height="4.89697" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="10"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.33 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
<filter id="filter1_i_0_1" x="13.3184" y="8.71533" width="12.7322" height="2.65833" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.56 0"/>
|
||||
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_0_1"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.2 KiB |
111
public/assets/images/status/icon_deal_status_102.svg
Normal file
@ -0,0 +1,111 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83997C28.7085 0.57318 24.7626 2.47616 18.9417 2.47616C12.7011 2.47616 7.83168 -0.0984508 4.16564 1.55267C0.499595 3.20378 0.3037 8.32505 2.12273 11.5713C3.94176 14.8176 5.62086 18.2318 4.16564 23.325C2.71041 28.4183 3.88579 30.853 7.43989 34.4631C10.994 38.0732 22.3839 33.5955 29.9119 32.3642C37.4399 31.1329 39.5947 27.6907 39.7066 24.0247C39.8186 20.3586 36.7962 17.1963 35.9567 13.8101C35.1171 10.4239 35.0331 5.10676 31.8708 2.83997Z" fill="#EDEFF5"/>
|
||||
<path d="M6.71167 34.8874L2.83378 21.9551C2.47847 20.7702 3.03903 19.503 4.15482 18.9689L8.91799 33.9389L6.71167 34.8874Z" fill="#0C0C0C"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M25.6802 12.2016C25.7839 11.6577 26.3098 11.3016 26.8533 11.4072L34.4648 12.8863C34.7238 12.9366 34.9524 13.0873 35.1008 13.3054L36.4153 15.2373C36.5645 15.4565 36.6205 15.7259 36.571 15.9864L34.3364 27.7562C34.2331 28.3002 33.7076 28.6567 33.164 28.5515L23.9192 26.7628C23.378 26.6581 23.0236 26.1352 23.1268 25.5938L25.6802 12.2016Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="27.1602" y="14.3221" width="3.06023" height="3.34271" transform="rotate(10.9501 27.1602 14.3221)" fill="#8E94A7"/>
|
||||
<rect x="31.0195" y="15.0687" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 31.0195 15.0687)" fill="#8E94A7"/>
|
||||
<rect x="30.7285" y="16.5707" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.7285 16.5707)" fill="#8E94A7"/>
|
||||
<rect x="30.4385" y="18.0731" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.4385 18.0731)" fill="#8E94A7"/>
|
||||
<rect x="26.29" y="18.826" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 26.29 18.826)" fill="#8E94A7"/>
|
||||
<rect x="25.999" y="20.328" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.999 20.328)" fill="#8E94A7"/>
|
||||
<rect x="25.708" y="21.8304" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.708 21.8304)" fill="#8E94A7"/>
|
||||
<rect x="25.418" y="23.3329" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.418 23.3329)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M34.4379 15.1506L34.8625 12.9559L36.6498 15.587L34.4379 15.1506Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M15.0027 7.00365C15.0012 6.44999 15.4499 6.00049 16.0035 6.00094L23.7574 6.00723C24.0213 6.00744 24.2743 6.11191 24.4615 6.29786L26.119 7.94488C26.3071 8.13174 26.4133 8.38564 26.4142 8.65075L26.456 20.6308C26.4579 21.1845 26.0096 21.6343 25.456 21.6343H16.0397C15.4885 21.6343 15.0412 21.1882 15.0397 20.637L15.0027 7.00365Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="16.8582" y="8.80432" width="3.06023" height="3.34271" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="8.80432" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="10.3345" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="11.8646" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="13.3918" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="14.9219" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="16.452" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="17.9822" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<g filter="url(#filter3_d_0_1)">
|
||||
<path d="M24.1611 8.23541V6L26.4157 8.24371L24.1611 8.23541Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_0_1)">
|
||||
<path d="M1.29864 14.6882C1.13388 14.1596 1.42996 13.5977 1.95911 13.4348L9.3698 11.1535C9.62196 11.0759 9.89457 11.101 10.1282 11.2235L12.1979 12.3083C12.4327 12.4313 12.6091 12.6426 12.6882 12.8956L16.2621 24.3302C16.4273 24.8587 16.1317 25.4207 15.6027 25.5841L6.60548 28.3618C6.07879 28.5244 5.51983 28.2302 5.35579 27.7039L1.29864 14.6882Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="3.60278" y="15.8615" width="3.06023" height="3.34271" transform="rotate(-17.1573 3.60278 15.8615)" fill="#8E94A7"/>
|
||||
<rect x="7.35938" y="14.7018" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.35938 14.7018)" fill="#8E94A7"/>
|
||||
<rect x="7.81055" y="16.1637" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.81055 16.1637)" fill="#8E94A7"/>
|
||||
<rect x="8.2627" y="17.6256" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 8.2627 17.6256)" fill="#8E94A7"/>
|
||||
<rect x="4.95801" y="20.2443" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 4.95801 20.2443)" fill="#8E94A7"/>
|
||||
<rect x="5.40918" y="21.7062" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.40918 21.7062)" fill="#8E94A7"/>
|
||||
<rect x="5.86035" y="23.1681" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.86035 23.1681)" fill="#8E94A7"/>
|
||||
<rect x="6.31152" y="24.6305" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 6.31152 24.6305)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter5_d_0_1)">
|
||||
<path d="M10.4133 13.1634L9.75391 11.0275L12.57 12.5063L10.4133 13.1634Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<path d="M18.8773 19.7319L17.4957 17.6699C14.1828 17.6493 7.31779 17.608 6.36103 17.608C5.16509 17.608 4.67021 18.6596 4.75269 19.2989C4.83517 19.9381 5.06199 22.1032 5.18571 23.0723C5.30942 24.0414 6.15484 31.2377 6.40227 33.3616C6.64971 35.4854 7.45389 35.5679 8.36116 35.6091C8.99027 35.6377 21.0974 35.6271 29.464 35.6148C31.4854 35.6118 33.1836 34.1013 33.4257 32.0945C33.9965 27.3622 34.7028 21.5145 34.7545 21.1134C34.837 20.4742 34.5896 19.7319 33.2905 19.7319H18.8773Z" fill="#1C01A9" stroke="#1C01A9"/>
|
||||
<circle cx="31.5172" cy="33.5265" r="4.24768" fill="#A8026B"/>
|
||||
<path d="M29.332 33.6501L31.3528 35.8152L34.3839 31.8149" stroke="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="22.1089" y="10.3887" width="15.4797" height="19.1813" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="23.438" y="1.95593" width="24.2119" height="24.6311" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="14.0027" y="5.00098" width="13.4534" height="17.6333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_0_1" x="13.1611" y="-5" width="24.2546" height="24.2437" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_0_1" x="0.253174" y="10.1093" width="17.0547" height="19.2974" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_0_1" x="-1.24609" y="0.0274658" width="24.8162" height="24.136" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.7 KiB |
111
public/assets/images/status/icon_deal_status_102_inactive.svg
Normal file
@ -0,0 +1,111 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83997C28.7085 0.57318 24.7626 2.47616 18.9417 2.47616C12.7011 2.47616 7.83168 -0.0984508 4.16564 1.55267C0.499595 3.20378 0.3037 8.32505 2.12273 11.5713C3.94176 14.8176 5.62086 18.2318 4.16564 23.325C2.71041 28.4183 3.88579 30.853 7.43989 34.4631C10.994 38.0732 22.3839 33.5955 29.9119 32.3642C37.4399 31.1329 39.5947 27.6907 39.7066 24.0247C39.8186 20.3586 36.7962 17.1963 35.9567 13.8101C35.1171 10.4239 35.0331 5.10676 31.8708 2.83997Z" fill="#EDEFF5"/>
|
||||
<path d="M6.71167 34.8874L2.83378 21.9551C2.47847 20.7702 3.03903 19.503 4.15482 18.9689L8.91799 33.9389L6.71167 34.8874Z" fill="#8E94A7"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M25.6802 12.2016C25.7839 11.6577 26.3098 11.3016 26.8533 11.4072L34.4648 12.8863C34.7238 12.9366 34.9524 13.0873 35.1008 13.3054L36.4153 15.2373C36.5645 15.4565 36.6205 15.7259 36.571 15.9864L34.3364 27.7562C34.2331 28.3002 33.7076 28.6567 33.164 28.5515L23.9192 26.7628C23.378 26.6581 23.0236 26.1352 23.1268 25.5938L25.6802 12.2016Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="27.1602" y="14.3221" width="3.06023" height="3.34271" transform="rotate(10.9501 27.1602 14.3221)" fill="#8E94A7"/>
|
||||
<rect x="31.0195" y="15.0687" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 31.0195 15.0687)" fill="#8E94A7"/>
|
||||
<rect x="30.7285" y="16.5707" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.7285 16.5707)" fill="#8E94A7"/>
|
||||
<rect x="30.4385" y="18.0731" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.4385 18.0731)" fill="#8E94A7"/>
|
||||
<rect x="26.29" y="18.826" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 26.29 18.826)" fill="#8E94A7"/>
|
||||
<rect x="25.999" y="20.328" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.999 20.328)" fill="#8E94A7"/>
|
||||
<rect x="25.708" y="21.8304" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.708 21.8304)" fill="#8E94A7"/>
|
||||
<rect x="25.418" y="23.3329" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.418 23.3329)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M34.4379 15.1506L34.8625 12.9559L36.6498 15.587L34.4379 15.1506Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M15.0027 7.00365C15.0012 6.44999 15.4499 6.00049 16.0035 6.00094L23.7574 6.00723C24.0213 6.00744 24.2743 6.11191 24.4615 6.29786L26.119 7.94488C26.3071 8.13174 26.4133 8.38564 26.4142 8.65075L26.456 20.6308C26.4579 21.1845 26.0096 21.6343 25.456 21.6343H16.0397C15.4885 21.6343 15.0412 21.1882 15.0397 20.637L15.0027 7.00365Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="16.8582" y="8.80432" width="3.06023" height="3.34271" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="8.80432" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="10.3345" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="11.8646" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="13.3918" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="14.9219" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="16.452" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="17.9822" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<g filter="url(#filter3_d_0_1)">
|
||||
<path d="M24.1611 8.23541V6L26.4157 8.24371L24.1611 8.23541Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_0_1)">
|
||||
<path d="M1.29864 14.6882C1.13388 14.1596 1.42996 13.5977 1.95911 13.4348L9.3698 11.1535C9.62196 11.0759 9.89457 11.101 10.1282 11.2235L12.1979 12.3083C12.4327 12.4313 12.6091 12.6426 12.6882 12.8956L16.2621 24.3302C16.4273 24.8587 16.1317 25.4207 15.6027 25.5841L6.60548 28.3618C6.07879 28.5244 5.51983 28.2302 5.35579 27.7039L1.29864 14.6882Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="3.60278" y="15.8615" width="3.06023" height="3.34271" transform="rotate(-17.1573 3.60278 15.8615)" fill="#8E94A7"/>
|
||||
<rect x="7.35938" y="14.7018" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.35938 14.7018)" fill="#8E94A7"/>
|
||||
<rect x="7.81055" y="16.1637" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.81055 16.1637)" fill="#8E94A7"/>
|
||||
<rect x="8.2627" y="17.6256" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 8.2627 17.6256)" fill="#8E94A7"/>
|
||||
<rect x="4.95801" y="20.2443" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 4.95801 20.2443)" fill="#8E94A7"/>
|
||||
<rect x="5.40918" y="21.7062" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.40918 21.7062)" fill="#8E94A7"/>
|
||||
<rect x="5.86035" y="23.1681" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.86035 23.1681)" fill="#8E94A7"/>
|
||||
<rect x="6.31152" y="24.6305" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 6.31152 24.6305)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter5_d_0_1)">
|
||||
<path d="M10.4133 13.1634L9.75391 11.0275L12.57 12.5063L10.4133 13.1634Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<path d="M18.8773 19.7319L17.4957 17.6699C14.1828 17.6493 7.31779 17.608 6.36103 17.608C5.16509 17.608 4.67021 18.6596 4.75269 19.2989C4.83517 19.9381 5.06199 22.1032 5.18571 23.0723C5.30942 24.0414 6.15484 31.2377 6.40227 33.3616C6.64971 35.4854 7.45389 35.5679 8.36116 35.6091C8.99027 35.6377 21.0974 35.6271 29.464 35.6148C31.4854 35.6118 33.1836 34.1013 33.4257 32.0945C33.9965 27.3622 34.7028 21.5145 34.7545 21.1134C34.837 20.4742 34.5896 19.7319 33.2905 19.7319H18.8773Z" fill="#8E94A7" stroke="#8E94A7"/>
|
||||
<circle cx="31.5172" cy="33.5265" r="4.24768" fill="#8E94A7"/>
|
||||
<path d="M29.332 33.6501L31.3528 35.8152L34.3839 31.8149" stroke="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="22.1089" y="10.3887" width="15.4797" height="19.1813" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="23.438" y="1.95593" width="24.2119" height="24.6311" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="14.0027" y="5.00098" width="13.4534" height="17.6333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_0_1" x="13.1611" y="-5" width="24.2546" height="24.2437" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_0_1" x="0.253174" y="10.1093" width="17.0547" height="19.2974" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_0_1" x="-1.24609" y="0.0274658" width="24.8162" height="24.136" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.7 KiB |
31
public/assets/images/status/icon_deal_status_103.svg
Normal file
@ -0,0 +1,31 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80762 5.95459C6.80762 4.85002 7.70305 3.95459 8.80762 3.95459H23.6125C24.1413 3.95459 24.6486 4.16403 25.0234 4.5371L33.364 12.8392C33.7411 13.2145 33.9531 13.7246 33.9531 14.2567V35.9829C33.9531 37.0875 33.0577 37.9829 31.9531 37.9829H8.80762C7.70305 37.9829 6.80762 37.0875 6.80762 35.9829V5.95459Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="11.2295" y="10.6035" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="14.2356" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="17.8674" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="21.4993" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="25.1313" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="28.7632" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="32.3951" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="20.0156" y="21.3226" width="11.6129" height="2.25806" rx="1.12903" transform="rotate(45 20.0156 21.3226)" fill="#1C01A9"/>
|
||||
<rect x="13.5801" y="16.1613" width="11.0261" height="10.8958" rx="5.44788" fill="#1C01A9"/>
|
||||
<rect x="14.8701" y="17.4518" width="8.3871" height="8.3871" rx="4.19355" fill="#EDEFF5"/>
|
||||
<path d="M19.0633 20.0123C17.2488 20.0123 16.5229 21.6456 16.5229 21.6456C16.5229 21.6456 17.2488 23.2785 19.0633 23.2785C20.8778 23.2785 21.6036 21.6456 21.6036 21.6456C21.6036 21.6456 20.8778 20.0123 19.0633 20.0123Z" fill="#A8026B" stroke="#A8026B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M19.0635 22.5528C19.5646 22.5528 19.9708 22.1466 19.9708 21.6455C19.9708 21.1445 19.5646 20.7383 19.0635 20.7383C18.5624 20.7383 18.1562 21.1445 18.1562 21.6455C18.1562 22.1466 18.5624 22.5528 19.0635 22.5528Z" fill="white"/>
|
||||
<path d="M24.4385 13.3696V3.95459L33.9254 13.3696H24.4385Z" fill="#1C01A9"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80762" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,31 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80762 5.95459C6.80762 4.85002 7.70305 3.95459 8.80762 3.95459H23.6125C24.1413 3.95459 24.6486 4.16403 25.0234 4.5371L33.364 12.8392C33.7411 13.2145 33.9531 13.7246 33.9531 14.2567V35.9829C33.9531 37.0875 33.0577 37.9829 31.9531 37.9829H8.80762C7.70305 37.9829 6.80762 37.0875 6.80762 35.9829V5.95459Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<rect x="11.2295" y="10.6035" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="14.2356" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="17.8674" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="21.4993" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="25.1313" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="28.7632" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="32.3951" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="20.0156" y="21.3226" width="11.6129" height="2.25806" rx="1.12903" transform="rotate(45 20.0156 21.3226)" fill="white"/>
|
||||
<rect x="13.5801" y="16.1613" width="11.0261" height="10.8958" rx="5.44788" fill="white"/>
|
||||
<rect x="14.8701" y="17.4518" width="8.3871" height="8.3871" rx="4.19355" fill="#8E94A7"/>
|
||||
<path d="M19.0633 20.0123C17.2488 20.0123 16.5229 21.6456 16.5229 21.6456C16.5229 21.6456 17.2488 23.2785 19.0633 23.2785C20.8778 23.2785 21.6036 21.6456 21.6036 21.6456C21.6036 21.6456 20.8778 20.0123 19.0633 20.0123Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M19.0635 22.5528C19.5646 22.5528 19.9708 22.1466 19.9708 21.6455C19.9708 21.1445 19.5646 20.7383 19.0635 20.7383C18.5624 20.7383 18.1562 21.1445 18.1562 21.6455C18.1562 22.1466 18.5624 22.5528 19.0635 22.5528Z" fill="white"/>
|
||||
<path d="M24.4385 13.3696V3.95459L33.9254 13.3696H24.4385Z" fill="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80762" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
25
public/assets/images/status/icon_deal_status_104.svg
Normal file
@ -0,0 +1,25 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80762 5.95459C6.80762 4.85002 7.70305 3.95459 8.80762 3.95459H23.6125C24.1413 3.95459 24.6486 4.16403 25.0234 4.5371L33.364 12.8392C33.7411 13.2145 33.9531 13.7246 33.9531 14.2567V35.9829C33.9531 37.0875 33.0577 37.9829 31.9531 37.9829H8.80762C7.70305 37.9829 6.80762 37.0875 6.80762 35.9829V5.95459Z" fill="white"/>
|
||||
</g>
|
||||
<path d="M26.0366 25.7494C26.3961 25.1883 27.2161 25.1883 27.5756 25.7494V25.7494C27.8303 26.1469 28.3457 26.285 28.765 26.0681V26.0681C29.357 25.7619 30.067 26.1719 30.0978 26.8376V26.8376C30.1197 27.3092 30.497 27.6865 30.9685 27.7083V27.7083C31.6343 27.7391 32.0442 28.4492 31.7381 29.0412V29.0412C31.5212 29.4604 31.6593 29.9759 32.0567 30.2306V30.2306C32.6179 30.5901 32.6179 31.41 32.0567 31.7696V31.7696C31.6593 32.0243 31.5212 32.5397 31.7381 32.959V32.959C32.0442 33.5509 31.6343 34.261 30.9685 34.2918V34.2918C30.497 34.3136 30.1197 34.691 30.0978 35.1625V35.1625C30.067 35.8283 29.357 36.2382 28.765 35.932V35.932C28.3457 35.7151 27.8303 35.8533 27.5756 36.2507V36.2507C27.2161 36.8119 26.3961 36.8119 26.0366 36.2507V36.2507C25.7819 35.8533 25.2665 35.7151 24.8472 35.932V35.932C24.2552 36.2382 23.5452 35.8283 23.5144 35.1625V35.1625C23.4925 34.691 23.1152 34.3136 22.6437 34.2918V34.2918C21.9779 34.261 21.568 33.5509 21.8742 32.959V32.959C22.091 32.5397 21.9529 32.0243 21.5555 31.7696V31.7696C20.9943 31.41 20.9943 30.5901 21.5555 30.2306V30.2306C21.9529 29.9759 22.091 29.4604 21.8742 29.0412V29.0412C21.568 28.4492 21.9779 27.7391 22.6437 27.7083V27.7083C23.1152 27.6865 23.4925 27.3092 23.5144 26.8376V26.8376C23.5452 26.1719 24.2552 25.7619 24.8472 26.0681V26.0681C25.2665 26.285 25.7819 26.1469 26.0366 25.7494V25.7494Z" fill="#A8026B"/>
|
||||
<path d="M24.884 32.3712C24.884 32.3057 24.8597 32.249 24.8112 32.2011C24.7627 32.1532 24.7052 32.1293 24.6388 32.1293C24.5699 32.1293 24.5118 32.1532 24.4645 32.2011C24.4173 32.249 24.3936 32.3057 24.3936 32.3712C24.3936 32.4392 24.4173 32.4966 24.4645 32.5432C24.5118 32.5898 24.5699 32.6131 24.6388 32.6131C24.7052 32.6131 24.7627 32.5898 24.8112 32.5432C24.8597 32.4966 24.884 32.4392 24.884 32.3712ZM25.4969 30.4357V32.8551C25.4969 32.9206 25.4726 32.9773 25.4241 33.0252C25.3756 33.0731 25.3181 33.097 25.2517 33.097H24.1485C24.0821 33.097 24.0246 33.0731 23.9761 33.0252C23.9276 32.9773 23.9033 32.9206 23.9033 32.8551V30.4357C23.9033 30.3702 23.9276 30.3135 23.9761 30.2656C24.0246 30.2177 24.0821 30.1938 24.1485 30.1938H25.2517C25.3181 30.1938 25.3756 30.2177 25.4241 30.2656C25.4726 30.3135 25.4969 30.3702 25.4969 30.4357ZM30.0324 30.4357C30.0324 30.6524 29.9621 30.8402 29.8217 30.999C29.86 31.1098 29.8791 31.2056 29.8791 31.2863C29.8868 31.4778 29.8319 31.6504 29.7144 31.8042C29.7578 31.9453 29.7578 32.0927 29.7144 32.2464C29.6761 32.3901 29.6072 32.5085 29.5076 32.6018C29.5305 32.884 29.468 33.1121 29.3199 33.286C29.1564 33.4775 28.9049 33.5758 28.5652 33.5809H28.0711C27.9025 33.5809 27.7186 33.5613 27.5194 33.5223C27.3203 33.4832 27.1651 33.4467 27.054 33.4126C26.9429 33.3786 26.7891 33.3288 26.5924 33.2633C26.2783 33.155 26.0766 33.0995 25.9872 33.097C25.9208 33.0945 25.8633 33.0699 25.8148 33.0233C25.7663 32.9767 25.742 32.9206 25.742 32.8551V30.4319C25.742 30.3689 25.765 30.3141 25.811 30.2675C25.8569 30.2209 25.9119 30.195 25.9757 30.19C26.037 30.1849 26.134 30.1106 26.2668 29.967C26.3996 29.8233 26.5286 29.6708 26.6537 29.5095C26.8274 29.2903 26.9563 29.1391 27.0406 29.0559C27.0866 29.0106 27.1262 28.9501 27.1594 28.8745C27.1926 28.7989 27.2149 28.7377 27.2264 28.6911C27.2379 28.6445 27.2551 28.5683 27.2781 28.4624C27.296 28.3641 27.312 28.2873 27.326 28.2318C27.34 28.1764 27.3649 28.1109 27.4007 28.0353C27.4365 27.9596 27.4799 27.8966 27.5309 27.8462C27.5795 27.7984 27.6369 27.7744 27.7033 27.7744C27.8208 27.7744 27.9261 27.7876 28.0193 27.8141C28.1126 27.8406 28.1892 27.8733 28.2492 27.9124C28.3092 27.9515 28.3603 28.0025 28.4024 28.0655C28.4445 28.1285 28.4752 28.1852 28.4943 28.2356C28.5135 28.286 28.5288 28.349 28.5403 28.4246C28.5518 28.5002 28.5582 28.5569 28.5595 28.5947C28.5607 28.6325 28.5614 28.6817 28.5614 28.7422C28.5614 28.8379 28.5493 28.9337 28.525 29.0295C28.5007 29.1252 28.4765 29.2008 28.4522 29.2563C28.428 29.3117 28.3928 29.3823 28.3469 29.468C28.3392 29.4831 28.3264 29.5058 28.3086 29.536C28.2907 29.5662 28.2766 29.594 28.2664 29.6192C28.2562 29.6444 28.246 29.6746 28.2358 29.7099H29.2969C29.4961 29.7099 29.6684 29.7817 29.814 29.9254C29.9596 30.069 30.0324 30.2391 30.0324 30.4357Z" fill="white"/>
|
||||
<rect x="11.2295" y="10.6035" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="14.2356" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="17.8674" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2295" y="21.4993" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<path d="M24.4385 13.3696V3.95459L33.9254 13.3696H24.4385Z" fill="#1C01A9"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80762" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
@ -0,0 +1,25 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80762 5.95459C6.80762 4.85002 7.70305 3.95459 8.80762 3.95459H23.6125C24.1413 3.95459 24.6486 4.16403 25.0234 4.5371L33.364 12.8392C33.7411 13.2145 33.9531 13.7246 33.9531 14.2567V35.9829C33.9531 37.0875 33.0577 37.9829 31.9531 37.9829H8.80762C7.70305 37.9829 6.80762 37.0875 6.80762 35.9829V5.95459Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<path d="M26.0366 25.7494C26.3961 25.1883 27.2161 25.1883 27.5756 25.7494V25.7494C27.8303 26.1469 28.3457 26.285 28.765 26.0681V26.0681C29.357 25.7619 30.067 26.1719 30.0978 26.8376V26.8376C30.1197 27.3092 30.497 27.6865 30.9685 27.7083V27.7083C31.6343 27.7391 32.0442 28.4492 31.7381 29.0412V29.0412C31.5212 29.4604 31.6593 29.9759 32.0567 30.2306V30.2306C32.6179 30.5901 32.6179 31.41 32.0567 31.7696V31.7696C31.6593 32.0243 31.5212 32.5397 31.7381 32.959V32.959C32.0442 33.5509 31.6343 34.261 30.9685 34.2918V34.2918C30.497 34.3136 30.1197 34.691 30.0978 35.1625V35.1625C30.067 35.8283 29.357 36.2382 28.765 35.932V35.932C28.3457 35.7151 27.8303 35.8533 27.5756 36.2507V36.2507C27.2161 36.8119 26.3961 36.8119 26.0366 36.2507V36.2507C25.7819 35.8533 25.2665 35.7151 24.8472 35.932V35.932C24.2552 36.2382 23.5452 35.8283 23.5144 35.1625V35.1625C23.4925 34.691 23.1152 34.3136 22.6437 34.2918V34.2918C21.9779 34.261 21.568 33.5509 21.8742 32.959V32.959C22.091 32.5397 21.9529 32.0243 21.5555 31.7696V31.7696C20.9943 31.41 20.9943 30.5901 21.5555 30.2306V30.2306C21.9529 29.9759 22.091 29.4604 21.8742 29.0412V29.0412C21.568 28.4492 21.9779 27.7391 22.6437 27.7083V27.7083C23.1152 27.6865 23.4925 27.3092 23.5144 26.8376V26.8376C23.5452 26.1719 24.2552 25.7619 24.8472 26.0681V26.0681C25.2665 26.285 25.7819 26.1469 26.0366 25.7494V25.7494Z" fill="white"/>
|
||||
<path d="M24.884 32.3712C24.884 32.3057 24.8597 32.249 24.8112 32.2011C24.7627 32.1532 24.7052 32.1293 24.6388 32.1293C24.5699 32.1293 24.5118 32.1532 24.4645 32.2011C24.4173 32.249 24.3936 32.3057 24.3936 32.3712C24.3936 32.4392 24.4173 32.4966 24.4645 32.5432C24.5118 32.5898 24.5699 32.6131 24.6388 32.6131C24.7052 32.6131 24.7627 32.5898 24.8112 32.5432C24.8597 32.4966 24.884 32.4392 24.884 32.3712ZM25.4969 30.4357V32.8551C25.4969 32.9206 25.4726 32.9773 25.4241 33.0252C25.3756 33.0731 25.3181 33.097 25.2517 33.097H24.1485C24.0821 33.097 24.0246 33.0731 23.9761 33.0252C23.9276 32.9773 23.9033 32.9206 23.9033 32.8551V30.4357C23.9033 30.3702 23.9276 30.3135 23.9761 30.2656C24.0246 30.2177 24.0821 30.1938 24.1485 30.1938H25.2517C25.3181 30.1938 25.3756 30.2177 25.4241 30.2656C25.4726 30.3135 25.4969 30.3702 25.4969 30.4357ZM30.0324 30.4357C30.0324 30.6524 29.9621 30.8402 29.8217 30.999C29.86 31.1098 29.8791 31.2056 29.8791 31.2863C29.8868 31.4778 29.8319 31.6504 29.7144 31.8042C29.7578 31.9453 29.7578 32.0927 29.7144 32.2464C29.6761 32.3901 29.6072 32.5085 29.5076 32.6018C29.5305 32.884 29.468 33.1121 29.3199 33.286C29.1564 33.4775 28.9049 33.5758 28.5652 33.5809H28.0711C27.9025 33.5809 27.7186 33.5613 27.5194 33.5223C27.3203 33.4832 27.1651 33.4467 27.054 33.4126C26.9429 33.3786 26.7891 33.3288 26.5924 33.2633C26.2783 33.155 26.0766 33.0995 25.9872 33.097C25.9208 33.0945 25.8633 33.0699 25.8148 33.0233C25.7663 32.9767 25.742 32.9206 25.742 32.8551V30.4319C25.742 30.3689 25.765 30.3141 25.811 30.2675C25.8569 30.2209 25.9119 30.195 25.9757 30.19C26.037 30.1849 26.134 30.1106 26.2668 29.967C26.3996 29.8233 26.5286 29.6708 26.6537 29.5095C26.8274 29.2903 26.9563 29.1391 27.0406 29.0559C27.0866 29.0106 27.1262 28.9501 27.1594 28.8745C27.1926 28.7989 27.2149 28.7377 27.2264 28.6911C27.2379 28.6445 27.2551 28.5683 27.2781 28.4624C27.296 28.3641 27.312 28.2873 27.326 28.2318C27.34 28.1764 27.3649 28.1109 27.4007 28.0353C27.4365 27.9596 27.4799 27.8966 27.5309 27.8462C27.5795 27.7984 27.6369 27.7744 27.7033 27.7744C27.8208 27.7744 27.9261 27.7876 28.0193 27.8141C28.1126 27.8406 28.1892 27.8733 28.2492 27.9124C28.3092 27.9515 28.3603 28.0025 28.4024 28.0655C28.4445 28.1285 28.4752 28.1852 28.4943 28.2356C28.5135 28.286 28.5288 28.349 28.5403 28.4246C28.5518 28.5002 28.5582 28.5569 28.5595 28.5947C28.5607 28.6325 28.5614 28.6817 28.5614 28.7422C28.5614 28.8379 28.5493 28.9337 28.525 29.0295C28.5007 29.1252 28.4765 29.2008 28.4522 29.2563C28.428 29.3117 28.3928 29.3823 28.3469 29.468C28.3392 29.4831 28.3264 29.5058 28.3086 29.536C28.2907 29.5662 28.2766 29.594 28.2664 29.6192C28.2562 29.6444 28.246 29.6746 28.2358 29.7099H29.2969C29.4961 29.7099 29.6684 29.7817 29.814 29.9254C29.9596 30.069 30.0324 30.2391 30.0324 30.4357Z" fill="#8E94A7"/>
|
||||
<rect x="11.2295" y="10.6035" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="14.2356" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="17.8674" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<rect x="11.2295" y="21.4993" width="18.3582" height="0.670509" rx="0.335254" fill="white"/>
|
||||
<path d="M24.4385 13.3696V3.95459L33.9254 13.3696H24.4385Z" fill="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80762" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.1 KiB |
111
public/assets/images/status/icon_deal_status_105.svg
Normal file
@ -0,0 +1,111 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83997C28.7085 0.57318 24.7626 2.47616 18.9417 2.47616C12.7011 2.47616 7.83168 -0.0984508 4.16564 1.55267C0.499595 3.20378 0.3037 8.32505 2.12273 11.5713C3.94176 14.8176 5.62086 18.2318 4.16564 23.325C2.71041 28.4183 3.88579 30.853 7.43989 34.4631C10.994 38.0732 22.3839 33.5955 29.9119 32.3642C37.4399 31.1329 39.5947 27.6907 39.7066 24.0247C39.8186 20.3586 36.7962 17.1963 35.9567 13.8101C35.1171 10.4239 35.0331 5.10676 31.8708 2.83997Z" fill="#EDEFF5"/>
|
||||
<path d="M6.71167 34.8874L2.83378 21.9551C2.47847 20.7702 3.03903 19.503 4.15482 18.9689L8.91799 33.9389L6.71167 34.8874Z" fill="#0C0C0C"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M25.6802 12.2016C25.7839 11.6577 26.3098 11.3016 26.8533 11.4072L34.4648 12.8863C34.7238 12.9366 34.9524 13.0873 35.1008 13.3054L36.4153 15.2373C36.5645 15.4565 36.6205 15.7259 36.571 15.9864L34.3364 27.7562C34.2331 28.3002 33.7076 28.6567 33.164 28.5515L23.9192 26.7628C23.378 26.6581 23.0236 26.1352 23.1268 25.5938L25.6802 12.2016Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="27.1602" y="14.3221" width="3.06023" height="3.34271" transform="rotate(10.9501 27.1602 14.3221)" fill="#8E94A7"/>
|
||||
<rect x="31.0195" y="15.0687" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 31.0195 15.0687)" fill="#8E94A7"/>
|
||||
<rect x="30.7285" y="16.5707" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.7285 16.5707)" fill="#8E94A7"/>
|
||||
<rect x="30.4385" y="18.0731" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.4385 18.0731)" fill="#8E94A7"/>
|
||||
<rect x="26.29" y="18.826" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 26.29 18.826)" fill="#8E94A7"/>
|
||||
<rect x="25.999" y="20.328" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.999 20.328)" fill="#8E94A7"/>
|
||||
<rect x="25.708" y="21.8304" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.708 21.8304)" fill="#8E94A7"/>
|
||||
<rect x="25.418" y="23.3329" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.418 23.3329)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M34.4379 15.1506L34.8625 12.9559L36.6498 15.587L34.4379 15.1506Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M15.0027 7.00365C15.0012 6.44999 15.4499 6.00049 16.0035 6.00094L23.7574 6.00723C24.0213 6.00744 24.2743 6.11191 24.4615 6.29786L26.119 7.94488C26.3071 8.13174 26.4133 8.38564 26.4142 8.65075L26.456 20.6308C26.4579 21.1845 26.0096 21.6343 25.456 21.6343H16.0397C15.4885 21.6343 15.0412 21.1882 15.0397 20.637L15.0027 7.00365Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="16.8582" y="8.80432" width="3.06023" height="3.34271" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="8.80432" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="10.3345" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="11.8646" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="13.3918" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="14.9219" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="16.452" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="17.9822" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<g filter="url(#filter3_d_0_1)">
|
||||
<path d="M24.1611 8.23541V6L26.4157 8.24371L24.1611 8.23541Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_0_1)">
|
||||
<path d="M1.29864 14.6882C1.13388 14.1596 1.42996 13.5977 1.95911 13.4348L9.3698 11.1535C9.62196 11.0759 9.89457 11.101 10.1282 11.2235L12.1979 12.3083C12.4327 12.4313 12.6091 12.6426 12.6882 12.8956L16.2621 24.3302C16.4273 24.8587 16.1317 25.4207 15.6027 25.5841L6.60548 28.3618C6.07879 28.5244 5.51983 28.2302 5.35579 27.7039L1.29864 14.6882Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="3.60278" y="15.8615" width="3.06023" height="3.34271" transform="rotate(-17.1573 3.60278 15.8615)" fill="#8E94A7"/>
|
||||
<rect x="7.35938" y="14.7018" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.35938 14.7018)" fill="#8E94A7"/>
|
||||
<rect x="7.81055" y="16.1637" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.81055 16.1637)" fill="#8E94A7"/>
|
||||
<rect x="8.2627" y="17.6256" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 8.2627 17.6256)" fill="#8E94A7"/>
|
||||
<rect x="4.95801" y="20.2443" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 4.95801 20.2443)" fill="#8E94A7"/>
|
||||
<rect x="5.40918" y="21.7062" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.40918 21.7062)" fill="#8E94A7"/>
|
||||
<rect x="5.86035" y="23.1681" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.86035 23.1681)" fill="#8E94A7"/>
|
||||
<rect x="6.31152" y="24.6305" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 6.31152 24.6305)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter5_d_0_1)">
|
||||
<path d="M10.4133 13.1634L9.75391 11.0275L12.57 12.5063L10.4133 13.1634Z" fill="#2F80ED"/>
|
||||
</g>
|
||||
<path d="M18.8773 19.7319L17.4957 17.6699C14.1828 17.6493 7.31779 17.608 6.36103 17.608C5.16509 17.608 4.67021 18.6596 4.75269 19.2989C4.83517 19.9381 5.06199 22.1032 5.18571 23.0723C5.30942 24.0414 6.15484 31.2377 6.40227 33.3616C6.64971 35.4854 7.45389 35.5679 8.36116 35.6091C8.99027 35.6377 21.0974 35.6271 29.464 35.6148C31.4854 35.6118 33.1836 34.1013 33.4257 32.0945C33.9965 27.3622 34.7028 21.5145 34.7545 21.1134C34.837 20.4742 34.5896 19.7319 33.2905 19.7319H18.8773Z" fill="#1C01A9" stroke="#1C01A9"/>
|
||||
<circle cx="31.5172" cy="33.5265" r="4.24768" fill="#A8026B"/>
|
||||
<path d="M29.332 33.6501L31.3528 35.8152L34.3839 31.8149" stroke="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="22.1089" y="10.3887" width="15.4797" height="19.1813" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="23.438" y="1.95593" width="24.2119" height="24.6311" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="14.0027" y="5.00098" width="13.4534" height="17.6333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_0_1" x="13.1611" y="-5" width="24.2546" height="24.2437" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_0_1" x="0.253174" y="10.1093" width="17.0547" height="19.2974" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_0_1" x="-1.24609" y="0.0274658" width="24.8162" height="24.136" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.7 KiB |
111
public/assets/images/status/icon_deal_status_105_inactive.svg
Normal file
@ -0,0 +1,111 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83997C28.7085 0.57318 24.7626 2.47616 18.9417 2.47616C12.7011 2.47616 7.83168 -0.0984508 4.16564 1.55267C0.499595 3.20378 0.3037 8.32505 2.12273 11.5713C3.94176 14.8176 5.62086 18.2318 4.16564 23.325C2.71041 28.4183 3.88579 30.853 7.43989 34.4631C10.994 38.0732 22.3839 33.5955 29.9119 32.3642C37.4399 31.1329 39.5947 27.6907 39.7066 24.0247C39.8186 20.3586 36.7962 17.1963 35.9567 13.8101C35.1171 10.4239 35.0331 5.10676 31.8708 2.83997Z" fill="#EDEFF5"/>
|
||||
<path d="M6.71167 34.8874L2.83378 21.9551C2.47847 20.7702 3.03903 19.503 4.15482 18.9689L8.91799 33.9389L6.71167 34.8874Z" fill="#8E94A7"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M25.6802 12.2016C25.7839 11.6577 26.3098 11.3016 26.8533 11.4072L34.4648 12.8863C34.7238 12.9366 34.9524 13.0873 35.1008 13.3054L36.4153 15.2373C36.5645 15.4565 36.6205 15.7259 36.571 15.9864L34.3364 27.7562C34.2331 28.3002 33.7076 28.6567 33.164 28.5515L23.9192 26.7628C23.378 26.6581 23.0236 26.1352 23.1268 25.5938L25.6802 12.2016Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="27.1602" y="14.3221" width="3.06023" height="3.34271" transform="rotate(10.9501 27.1602 14.3221)" fill="#8E94A7"/>
|
||||
<rect x="31.0195" y="15.0687" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 31.0195 15.0687)" fill="#8E94A7"/>
|
||||
<rect x="30.7285" y="16.5707" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.7285 16.5707)" fill="#8E94A7"/>
|
||||
<rect x="30.4385" y="18.0731" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(10.9501 30.4385 18.0731)" fill="#8E94A7"/>
|
||||
<rect x="26.29" y="18.826" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 26.29 18.826)" fill="#8E94A7"/>
|
||||
<rect x="25.999" y="20.328" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.999 20.328)" fill="#8E94A7"/>
|
||||
<rect x="25.708" y="21.8304" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.708 21.8304)" fill="#8E94A7"/>
|
||||
<rect x="25.418" y="23.3329" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(10.9501 25.418 23.3329)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter1_d_0_1)">
|
||||
<path d="M34.4379 15.1506L34.8625 12.9559L36.6498 15.587L34.4379 15.1506Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_0_1)">
|
||||
<path d="M15.0027 7.00365C15.0012 6.44999 15.4499 6.00049 16.0035 6.00094L23.7574 6.00723C24.0213 6.00744 24.2743 6.11191 24.4615 6.29786L26.119 7.94488C26.3071 8.13174 26.4133 8.38564 26.4142 8.65075L26.456 20.6308C26.4579 21.1845 26.0096 21.6343 25.456 21.6343H16.0397C15.4885 21.6343 15.0412 21.1882 15.0397 20.637L15.0027 7.00365Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="16.8582" y="8.80432" width="3.06023" height="3.34271" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="8.80432" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="10.3345" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="20.7896" y="11.8646" width="3.78998" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="13.3918" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="14.9219" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="16.452" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<rect x="16.8596" y="17.9822" width="7.7212" height="0.282483" rx="0.141241" fill="#8E94A7"/>
|
||||
<g filter="url(#filter3_d_0_1)">
|
||||
<path d="M24.1611 8.23541V6L26.4157 8.24371L24.1611 8.23541Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<g filter="url(#filter4_d_0_1)">
|
||||
<path d="M1.29864 14.6882C1.13388 14.1596 1.42996 13.5977 1.95911 13.4348L9.3698 11.1535C9.62196 11.0759 9.89457 11.101 10.1282 11.2235L12.1979 12.3083C12.4327 12.4313 12.6091 12.6426 12.6882 12.8956L16.2621 24.3302C16.4273 24.8587 16.1317 25.4207 15.6027 25.5841L6.60548 28.3618C6.07879 28.5244 5.51983 28.2302 5.35579 27.7039L1.29864 14.6882Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="3.60278" y="15.8615" width="3.06023" height="3.34271" transform="rotate(-17.1573 3.60278 15.8615)" fill="#8E94A7"/>
|
||||
<rect x="7.35938" y="14.7018" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.35938 14.7018)" fill="#8E94A7"/>
|
||||
<rect x="7.81055" y="16.1637" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 7.81055 16.1637)" fill="#8E94A7"/>
|
||||
<rect x="8.2627" y="17.6256" width="3.78998" height="0.282483" rx="0.141241" transform="rotate(-17.1573 8.2627 17.6256)" fill="#8E94A7"/>
|
||||
<rect x="4.95801" y="20.2443" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 4.95801 20.2443)" fill="#8E94A7"/>
|
||||
<rect x="5.40918" y="21.7062" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.40918 21.7062)" fill="#8E94A7"/>
|
||||
<rect x="5.86035" y="23.1681" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 5.86035 23.1681)" fill="#8E94A7"/>
|
||||
<rect x="6.31152" y="24.6305" width="7.7212" height="0.282483" rx="0.141241" transform="rotate(-17.1573 6.31152 24.6305)" fill="#8E94A7"/>
|
||||
<g filter="url(#filter5_d_0_1)">
|
||||
<path d="M10.4133 13.1634L9.75391 11.0275L12.57 12.5063L10.4133 13.1634Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<path d="M18.8773 19.7319L17.4957 17.6699C14.1828 17.6493 7.31779 17.608 6.36103 17.608C5.16509 17.608 4.67021 18.6596 4.75269 19.2989C4.83517 19.9381 5.06199 22.1032 5.18571 23.0723C5.30942 24.0414 6.15484 31.2377 6.40227 33.3616C6.64971 35.4854 7.45389 35.5679 8.36116 35.6091C8.99027 35.6377 21.0974 35.6271 29.464 35.6148C31.4854 35.6118 33.1836 34.1013 33.4257 32.0945C33.9965 27.3622 34.7028 21.5145 34.7545 21.1134C34.837 20.4742 34.5896 19.7319 33.2905 19.7319H18.8773Z" fill="#8E94A7" stroke="#8E94A7"/>
|
||||
<circle cx="31.5172" cy="33.5265" r="4.24768" fill="#8E94A7"/>
|
||||
<path d="M29.332 33.6501L31.3528 35.8152L34.3839 31.8149" stroke="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="22.1089" y="10.3887" width="15.4797" height="19.1813" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_0_1" x="23.438" y="1.95593" width="24.2119" height="24.6311" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_0_1" x="14.0027" y="5.00098" width="13.4534" height="17.6333" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_0_1" x="13.1611" y="-5" width="24.2546" height="24.2437" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter4_d_0_1" x="0.253174" y="10.1093" width="17.0547" height="19.2974" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter5_d_0_1" x="-1.24609" y="0.0274658" width="24.8162" height="24.136" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="5.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.7 KiB |
12
public/assets/images/status/icon_deal_status_106.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<path d="M7.19336 3.9032H34.8063C35.9108 3.9032 36.8063 4.79863 36.8063 5.9032V30.2903C36.8063 31.3949 35.9108 32.2903 34.8063 32.2903H7.19336C6.08879 32.2903 5.19336 31.3949 5.19336 30.2903V5.9032C5.19336 4.79863 6.08879 3.9032 7.19336 3.9032Z" fill="#1C01A9"/>
|
||||
<path d="M27.9619 36.9155V34.2258H31.349V36.934C31.349 37.4019 30.7731 37.6246 30.4584 37.2784C30.0651 36.8458 29.3902 36.8298 28.9769 37.2431L28.9113 37.3087C28.5609 37.6591 27.9619 37.4109 27.9619 36.9155Z" fill="#A8026B"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9035 14.2467C14.8595 13.7717 15.5164 12.7852 15.5164 11.6453C15.5164 10.0419 14.2166 8.74207 12.6132 8.74207C11.0098 8.74207 9.70996 10.0419 9.70996 11.6453C9.70996 12.9094 10.5178 13.9848 11.6454 14.3833V21.6453H12.7745L13.9035 20.355V19.0646H13.2583V18.4195H13.9035V17.7743H13.2583V17.1292H13.9035V16.484L12.9358 15.8388L13.9035 15.1937V14.2467ZM13.9039 11.613C13.9039 12.3256 13.3262 12.9033 12.6136 12.9033C11.9009 12.9033 11.3232 12.3256 11.3232 11.613C11.3232 10.9003 11.9009 10.3226 12.6136 10.3226C13.3262 10.3226 13.9039 10.9003 13.9039 11.613Z" fill="white"/>
|
||||
<path d="M27.7738 13.5806H19.0641C18.7078 13.5806 18.4189 13.8694 18.4189 14.2257C18.4189 14.582 18.7078 14.8709 19.0641 14.8709H27.7738C28.1301 14.8709 28.4189 14.582 28.4189 14.2257C28.4189 13.8694 28.1301 13.5806 27.7738 13.5806Z" fill="#2F80ED"/>
|
||||
<path d="M33.2577 9.38708H19.3867C18.8522 9.38708 18.4189 9.82036 18.4189 10.3548C18.4189 10.8893 18.8522 11.3226 19.3867 11.3226H33.2577C33.7921 11.3226 34.2254 10.8893 34.2254 10.3548C34.2254 9.82036 33.7921 9.38708 33.2577 9.38708Z" fill="#EDEFF5"/>
|
||||
<path d="M26.4835 16.1613H19.0641C18.7078 16.1613 18.4189 16.4501 18.4189 16.8064C18.4189 17.1627 18.7078 17.4516 19.0641 17.4516H26.4835C26.8398 17.4516 27.1286 17.1627 27.1286 16.8064C27.1286 16.4501 26.8398 16.1613 26.4835 16.1613Z" fill="#2F80ED"/>
|
||||
<path d="M30.677 18.4193H19.0641C18.7078 18.4193 18.4189 18.7082 18.4189 19.0645C18.4189 19.4208 18.7078 19.7096 19.0641 19.7096H30.677C31.0333 19.7096 31.3222 19.4208 31.3222 19.0645C31.3222 18.7082 31.0333 18.4193 30.677 18.4193Z" fill="#2F80ED"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.3443 22.846C29.9848 22.2849 29.1649 22.2849 28.8053 22.846C28.5507 23.2435 28.0352 23.3816 27.6159 23.1647C27.024 22.8585 26.3139 23.2685 26.2831 23.9342C26.2613 24.4058 25.8839 24.7831 25.4124 24.8049C24.7466 24.8357 24.3367 25.5458 24.6429 26.1378C24.8598 26.557 24.7216 27.0725 24.3242 27.3272C23.763 27.6867 23.763 28.5066 24.3242 28.8662C24.7216 29.1209 24.8598 29.6363 24.6429 30.0556C24.3367 30.6475 24.7466 31.3576 25.4124 31.3884C25.8839 31.4102 26.2613 31.7876 26.2831 32.2591C26.3139 32.9249 27.024 33.3348 27.6159 33.0286C28.0352 32.8118 28.5507 32.9499 28.8053 33.3473C29.1649 33.9085 29.9848 33.9085 30.3443 33.3473C30.599 32.9499 31.1145 32.8118 31.5337 33.0286C32.1257 33.3348 32.8358 32.9249 32.8666 32.2591C32.8884 31.7876 33.2657 31.4102 33.7373 31.3884C34.403 31.3576 34.813 30.6475 34.5068 30.0556C34.2899 29.6363 34.428 29.1209 34.8255 28.8662C35.3866 28.5066 35.3866 27.6867 34.8255 27.3272C34.428 27.0725 34.2899 26.557 34.5068 26.1378C34.813 25.5458 34.403 24.8357 33.7373 24.8049C33.2657 24.7831 32.8884 24.4058 32.8666 23.9342C32.8358 23.2685 32.1257 22.8585 31.5337 23.1647C31.1145 23.3816 30.599 23.2435 30.3443 22.846ZM29.5744 31.3226C31.356 31.3226 32.8002 29.8783 32.8002 28.0968C32.8002 26.3152 31.356 24.871 29.5744 24.871C27.7929 24.871 26.3486 26.3152 26.3486 28.0968C26.3486 29.8783 27.7929 31.3226 29.5744 31.3226Z" fill="#A8026B"/>
|
||||
<circle cx="29.5748" cy="28.0967" r="3.54839" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@ -0,0 +1,12 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<path d="M7.19336 3.9032H34.8063C35.9108 3.9032 36.8063 4.79863 36.8063 5.9032V30.2903C36.8063 31.3949 35.9108 32.2903 34.8063 32.2903H7.19336C6.08879 32.2903 5.19336 31.3949 5.19336 30.2903V5.9032C5.19336 4.79863 6.08879 3.9032 7.19336 3.9032Z" fill="#8E94A7"/>
|
||||
<path d="M27.9619 36.9155V34.2258H31.349V36.934C31.349 37.4019 30.7731 37.6246 30.4584 37.2784C30.0651 36.8458 29.3902 36.8298 28.9769 37.2431L28.9113 37.3087C28.5609 37.6591 27.9619 37.4109 27.9619 36.9155Z" fill="#8E94A7"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.9035 14.2467C14.8595 13.7717 15.5164 12.7852 15.5164 11.6453C15.5164 10.0419 14.2166 8.74207 12.6132 8.74207C11.0098 8.74207 9.70996 10.0419 9.70996 11.6453C9.70996 12.9094 10.5178 13.9848 11.6454 14.3833V21.6453H12.7745L13.9035 20.355V19.0646H13.2583V18.4195H13.9035V17.7743H13.2583V17.1292H13.9035V16.484L12.9358 15.8388L13.9035 15.1937V14.2467ZM13.9039 11.613C13.9039 12.3256 13.3262 12.9033 12.6136 12.9033C11.9009 12.9033 11.3232 12.3256 11.3232 11.613C11.3232 10.9003 11.9009 10.3226 12.6136 10.3226C13.3262 10.3226 13.9039 10.9003 13.9039 11.613Z" fill="white"/>
|
||||
<path d="M27.7738 13.5806H19.0641C18.7078 13.5806 18.4189 13.8694 18.4189 14.2257C18.4189 14.582 18.7078 14.8709 19.0641 14.8709H27.7738C28.1301 14.8709 28.4189 14.582 28.4189 14.2257C28.4189 13.8694 28.1301 13.5806 27.7738 13.5806Z" fill="white"/>
|
||||
<path d="M33.2577 9.38708H19.3867C18.8522 9.38708 18.4189 9.82036 18.4189 10.3548C18.4189 10.8893 18.8522 11.3226 19.3867 11.3226H33.2577C33.7921 11.3226 34.2254 10.8893 34.2254 10.3548C34.2254 9.82036 33.7921 9.38708 33.2577 9.38708Z" fill="#EDEFF5"/>
|
||||
<path d="M26.4835 16.1613H19.0641C18.7078 16.1613 18.4189 16.4501 18.4189 16.8064C18.4189 17.1627 18.7078 17.4516 19.0641 17.4516H26.4835C26.8398 17.4516 27.1286 17.1627 27.1286 16.8064C27.1286 16.4501 26.8398 16.1613 26.4835 16.1613Z" fill="white"/>
|
||||
<path d="M30.677 18.4193H19.0641C18.7078 18.4193 18.4189 18.7082 18.4189 19.0645C18.4189 19.4208 18.7078 19.7096 19.0641 19.7096H30.677C31.0333 19.7096 31.3222 19.4208 31.3222 19.0645C31.3222 18.7082 31.0333 18.4193 30.677 18.4193Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M30.3443 22.846C29.9848 22.2849 29.1649 22.2849 28.8053 22.846C28.5507 23.2435 28.0352 23.3816 27.6159 23.1647C27.024 22.8585 26.3139 23.2685 26.2831 23.9342C26.2613 24.4058 25.8839 24.7831 25.4124 24.8049C24.7466 24.8357 24.3367 25.5458 24.6429 26.1378C24.8598 26.557 24.7216 27.0725 24.3242 27.3272C23.763 27.6867 23.763 28.5066 24.3242 28.8662C24.7216 29.1209 24.8598 29.6363 24.6429 30.0556C24.3367 30.6475 24.7466 31.3576 25.4124 31.3884C25.8839 31.4102 26.2613 31.7876 26.2831 32.2591C26.3139 32.9249 27.024 33.3348 27.6159 33.0286C28.0352 32.8118 28.5507 32.9499 28.8053 33.3473C29.1649 33.9085 29.9848 33.9085 30.3443 33.3473C30.599 32.9499 31.1145 32.8118 31.5337 33.0286C32.1257 33.3348 32.8358 32.9249 32.8666 32.2591C32.8884 31.7876 33.2657 31.4102 33.7373 31.3884C34.403 31.3576 34.813 30.6475 34.5068 30.0556C34.2899 29.6363 34.428 29.1209 34.8255 28.8662C35.3866 28.5066 35.3866 27.6867 34.8255 27.3272C34.428 27.0725 34.2899 26.557 34.5068 26.1378C34.813 25.5458 34.403 24.8357 33.7373 24.8049C33.2657 24.7831 32.8884 24.4058 32.8666 23.9342C32.8358 23.2685 32.1257 22.8585 31.5337 23.1647C31.1145 23.3816 30.599 23.2435 30.3443 22.846ZM29.5744 31.3226C31.356 31.3226 32.8002 29.8783 32.8002 28.0968C32.8002 26.3152 31.356 24.871 29.5744 24.871C27.7929 24.871 26.3486 26.3152 26.3486 28.0968C26.3486 29.8783 27.7929 31.3226 29.5744 31.3226Z" fill="white"/>
|
||||
<circle cx="29.5748" cy="28.0967" r="3.54839" fill="#8E94A7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
26
public/assets/images/status/icon_deal_status_107.svg
Normal file
@ -0,0 +1,26 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80859 5.95459C6.80859 4.85002 7.70402 3.95459 8.80859 3.95459H23.6135C24.1423 3.95459 24.6496 4.16403 25.0244 4.5371L33.365 12.8392C33.7421 13.2145 33.9541 13.7246 33.9541 14.2567V35.9829C33.9541 37.0875 33.0587 37.9829 31.9541 37.9829H8.80859C7.70402 37.9829 6.80859 37.0875 6.80859 35.9829V5.95459Z" fill="white"/>
|
||||
</g>
|
||||
<rect x="11.2305" y="10.6035" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2305" y="14.2356" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2305" y="17.8674" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.2305" y="21.4993" width="18.3582" height="0.670509" rx="0.335254" fill="#2F80ED"/>
|
||||
<rect x="11.3242" y="32.6128" width="7.09677" height="0.322581" rx="0.16129" fill="#2F80ED"/>
|
||||
<path d="M11.6465 30.7057C12.1585 30.8355 13.9199 28.625 14.2271 27.6129C14.6112 26.3479 13.5666 24.807 13.0866 24.7097C12.6065 24.6124 12.4529 25.3548 12.5105 26.5587C12.5579 27.5494 12.7025 32.0681 13.6626 31.5815C13.9665 31.4275 14.2003 31.2176 14.3758 31C14.8023 30.4714 14.9337 29.9649 15.0336 29.5484C15.1666 28.9938 14.5623 28.5806 14.5497 29.7097C14.534 29.9811 14.5765 30.2029 14.6956 30.5161C14.8184 30.8392 15.2888 31.4016 15.6787 31.3226C16.6388 31.128 16.8653 29.8299 16.7693 29.246C16.6733 28.6621 16.2893 28.7329 16.2893 29.4406C16.2893 30.0323 16.5428 31.3869 17.4068 30.7057C18.2709 30.0245 18.5935 29.246 18.5935 28.8568C18.5935 28.4675 18.2439 28.3101 18.0174 28.8568C17.7755 29.4406 17.5988 31.1923 18.6549 30.803C19.4998 30.4916 19.711 29.5055 19.711 29.0514" stroke="black"/>
|
||||
<path d="M24.4395 13.3696V3.95459L33.9264 13.3696H24.4395Z" fill="#1C01A9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.0532 15.8826C33.3594 15.324 32.344 15.4336 31.7854 16.1274L30.5713 17.6354L33.0839 19.6584L34.298 18.1504C34.8567 17.4565 34.7471 16.4412 34.0532 15.8826ZM32.2747 20.6635L29.7621 18.6405L22.8843 27.1831L21.6119 31.3354L25.397 29.2061L32.2747 20.6635Z" fill="#A8026B"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80859" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@ -0,0 +1,26 @@
|
||||
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M31.8708 2.83687C28.7085 0.5739 24.7626 2.47367 18.9417 2.47367C12.7011 2.47367 7.83168 -0.0965986 4.16564 1.55174C0.499595 3.20007 0.3037 8.3127 2.12273 11.5535C3.94176 14.7943 5.62086 18.2027 4.16564 23.2874C2.71041 28.3721 3.88579 30.8027 7.43989 34.4067C10.994 38.0106 22.3839 33.5406 29.9119 32.3113C37.4399 31.0821 39.5947 27.6457 39.7066 23.9858C39.8186 20.326 36.7962 17.169 35.9567 13.7885C35.1171 10.408 35.0331 5.09983 31.8708 2.83687Z" fill="#EDEFF5"/>
|
||||
<g filter="url(#filter0_d_0_1)">
|
||||
<path d="M6.80811 5.95459C6.80811 4.85002 7.70354 3.95459 8.80811 3.95459H23.613C24.1418 3.95459 24.6491 4.16403 25.0239 4.5371L33.3645 12.8392C33.7416 13.2145 33.9536 13.7246 33.9536 14.2567V35.9829C33.9536 37.0875 33.0582 37.9829 31.9536 37.9829H8.8081C7.70353 37.9829 6.80811 37.0875 6.80811 35.9829V5.95459Z" fill="#8E94A7"/>
|
||||
</g>
|
||||
<rect x="11.3971" y="10.7714" width="18.0229" height="0.335254" rx="0.167627" fill="#2F80ED" stroke="white" stroke-width="0.335254"/>
|
||||
<rect x="11.3971" y="14.4035" width="18.0229" height="0.335254" rx="0.167627" fill="#2F80ED" stroke="white" stroke-width="0.335254"/>
|
||||
<rect x="11.3971" y="18.0353" width="18.0229" height="0.335254" rx="0.167627" fill="#2F80ED" stroke="white" stroke-width="0.335254"/>
|
||||
<rect x="11.3971" y="21.6671" width="18.0229" height="0.335254" rx="0.167627" fill="#2F80ED" stroke="white" stroke-width="0.335254"/>
|
||||
<rect x="11.4029" y="32.6936" width="6.93548" height="0.16129" rx="0.0806452" fill="#2F80ED" stroke="white" stroke-width="0.16129"/>
|
||||
<path d="M11.645 30.7057C12.1571 30.8355 13.9184 28.625 14.2257 27.6129C14.6097 26.3479 13.5651 24.807 13.0851 24.7097C12.6051 24.6124 12.4515 25.3548 12.5091 26.5587C12.5565 27.5494 12.7011 32.0681 13.6611 31.5815C13.9651 31.4275 14.1989 31.2176 14.3744 31C14.8008 30.4714 14.9322 29.9649 15.0321 29.5484C15.1652 28.9938 14.5608 28.5806 14.5482 29.7097C14.5325 29.9811 14.575 30.2029 14.6941 30.5161C14.8169 30.8392 15.2873 31.4016 15.6773 31.3226C16.6373 31.128 16.8639 29.8299 16.7679 29.246C16.6719 28.6621 16.2878 28.7329 16.2878 29.4406C16.2878 30.0323 16.5413 31.3869 17.4054 30.7057C18.2694 30.0245 18.592 29.246 18.592 28.8568C18.592 28.4675 18.2424 28.3101 18.016 28.8568C17.7741 29.4406 17.5974 31.1923 18.6534 30.803C19.4983 30.4916 19.7095 29.5055 19.7095 29.0514" stroke="white"/>
|
||||
<path d="M24.4385 13.3696V3.95459L33.9254 13.3696H24.4385Z" fill="#EDEFF5"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.0532 15.8826C33.3594 15.324 32.344 15.4336 31.7854 16.1274L30.5713 17.6354L33.0839 19.6584L34.298 18.1504C34.8567 17.4565 34.7471 16.4412 34.0532 15.8826ZM32.2747 20.6635L29.7621 18.6405L22.8843 27.1831L21.6119 31.3354L25.397 29.2061L32.2747 20.6635Z" fill="white"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_0_1" x="5.80811" y="2.95459" width="29.1455" height="36.0283" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="0.5"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_0_1"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_0_1" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |