feat(测试跟踪): 新增用例页面交互及用例多人评审

--story=1010759 --user=宋昌昌 【测试跟踪】测试跟踪交互改造 --单独分支单独环境测试 https://www.tapd.cn/55049933/s/1332049
This commit is contained in:
song-cc-rock 2022-12-12 12:34:12 +08:00 committed by jianxing
parent 6d3d2e6381
commit adb0024570
403 changed files with 27178 additions and 1880 deletions

View File

@ -5,7 +5,7 @@
<div style="margin: 16px 0 0 16px">
<span class="addition-info-title"> {{ title }}</span>
<el-tooltip class="item" effect="dark" :content="toolTip" placement="top">
<img style="height: 14px; width: 14px; margin-left: 4px" src="/assets/figma/icon_question.svg" />
<img style="height: 14px; width: 14px; margin-left: 4px" src="/assets/module/figma/icon_question.svg" />
</el-tooltip>
<div class="common-amount" @mouseenter="isHover = true">
<span class="addition-info-text">

View File

@ -27,7 +27,7 @@
v-permission-disable="linkPermission"
@click="redirect('createdInWeek')">
+{{ formatAmount(countData.createdInWeek) }}
<img class="main-info-card-right" src="/assets/figma/icon_right_outlined.svg" alt="" />
<img class="main-info-card-right" src="/assets/module/figma/icon_right_outlined.svg" alt="" />
</el-button>
</div>
</el-col>
@ -39,7 +39,7 @@
v-permission-disable="linkPermission"
@click="redirect('fakeError')">
{{ formatAmount(countData.fakeErrorCount) }}
<img class="main-info-card-right" src="/assets/figma/icon_right_outlined.svg" alt="" />
<img class="main-info-card-right" src="/assets/module/figma/icon_right_outlined.svg" alt="" />
</el-button>
</div>
</el-col>

View File

@ -15,7 +15,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">

View File

@ -15,7 +15,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">

View File

@ -15,7 +15,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">

View File

@ -15,7 +15,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">

View File

@ -14,7 +14,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">
@ -82,7 +82,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px; margin-bottom: 8px" src="/assets/figma/icon_none.svg" />
<img style="height: 100px; width: 100px; margin-bottom: 8px" src="/assets/module/figma/icon_none.svg" />
<span class="addition-info-title">{{ $t('home.dashboard.public.no_data') }}</span>
</div>
</template>

View File

@ -14,7 +14,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px" src="/assets/figma/icon_load_error.svg" />
<img style="height: 100px; width: 100px" src="/assets/module/figma/icon_load_error.svg" />
<span class="addition-info-title" style="color: #646a73">{{ $t('home.dashboard.public.load_error') }}</span>
</div>
<div v-show="!loadError">
@ -100,7 +100,7 @@
justify-content: center;
align-items: center;
">
<img style="height: 100px; width: 100px; margin-bottom: 8px" src="/assets/figma/icon_none.svg" />
<img style="height: 100px; width: 100px; margin-bottom: 8px" src="/assets/module/figma/icon_none.svg" />
<span class="addition-info-title">{{ $t('home.dashboard.public.no_data') }}</span>
</div>
</template>

View File

@ -1,8 +1,7 @@
package io.metersphere.base.domain;
import lombok.Data;
import java.io.Serializable;
import lombok.Data;
@Data
public class TestCaseComment implements Serializable {
@ -20,7 +19,9 @@ public class TestCaseComment implements Serializable {
private String type;
private String belongId;
private String description;
private static final long serialVersionUID = 1L;
}
}

View File

@ -573,6 +573,76 @@ public class TestCaseCommentExample {
addCriterion("`type` not between", value1, value2, "type");
return (Criteria) this;
}
public Criteria andBelongIdIsNull() {
addCriterion("belong_id is null");
return (Criteria) this;
}
public Criteria andBelongIdIsNotNull() {
addCriterion("belong_id is not null");
return (Criteria) this;
}
public Criteria andBelongIdEqualTo(String value) {
addCriterion("belong_id =", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdNotEqualTo(String value) {
addCriterion("belong_id <>", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdGreaterThan(String value) {
addCriterion("belong_id >", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdGreaterThanOrEqualTo(String value) {
addCriterion("belong_id >=", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdLessThan(String value) {
addCriterion("belong_id <", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdLessThanOrEqualTo(String value) {
addCriterion("belong_id <=", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdLike(String value) {
addCriterion("belong_id like", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdNotLike(String value) {
addCriterion("belong_id not like", value, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdIn(List<String> values) {
addCriterion("belong_id in", values, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdNotIn(List<String> values) {
addCriterion("belong_id not in", values, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdBetween(String value1, String value2) {
addCriterion("belong_id between", value1, value2, "belongId");
return (Criteria) this;
}
public Criteria andBelongIdNotBetween(String value1, String value2) {
addCriterion("belong_id not between", value1, value2, "belongId");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
@ -667,4 +737,4 @@ public class TestCaseCommentExample {
this(condition, value, secondValue, null);
}
}
}
}

View File

@ -1,8 +1,7 @@
package io.metersphere.base.domain;
import lombok.Data;
import java.io.Serializable;
import lombok.Data;
@Data
public class TestCaseReview implements Serializable {
@ -26,7 +25,9 @@ public class TestCaseReview implements Serializable {
private String createUser;
private String reviewPassRule;
private String description;
private static final long serialVersionUID = 1L;
}
}

View File

@ -773,6 +773,76 @@ public class TestCaseReviewExample {
addCriterion("create_user not between", value1, value2, "createUser");
return (Criteria) this;
}
public Criteria andReviewPassRuleIsNull() {
addCriterion("review_pass_rule is null");
return (Criteria) this;
}
public Criteria andReviewPassRuleIsNotNull() {
addCriterion("review_pass_rule is not null");
return (Criteria) this;
}
public Criteria andReviewPassRuleEqualTo(String value) {
addCriterion("review_pass_rule =", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleNotEqualTo(String value) {
addCriterion("review_pass_rule <>", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleGreaterThan(String value) {
addCriterion("review_pass_rule >", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleGreaterThanOrEqualTo(String value) {
addCriterion("review_pass_rule >=", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleLessThan(String value) {
addCriterion("review_pass_rule <", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleLessThanOrEqualTo(String value) {
addCriterion("review_pass_rule <=", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleLike(String value) {
addCriterion("review_pass_rule like", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleNotLike(String value) {
addCriterion("review_pass_rule not like", value, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleIn(List<String> values) {
addCriterion("review_pass_rule in", values, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleNotIn(List<String> values) {
addCriterion("review_pass_rule not in", values, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleBetween(String value1, String value2) {
addCriterion("review_pass_rule between", value1, value2, "reviewPassRule");
return (Criteria) this;
}
public Criteria andReviewPassRuleNotBetween(String value1, String value2) {
addCriterion("review_pass_rule not between", value1, value2, "reviewPassRule");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
@ -867,4 +937,4 @@ public class TestCaseReviewExample {
this(condition, value, secondValue, null);
}
}
}
}

View File

@ -0,0 +1,14 @@
package io.metersphere.base.domain;
import lombok.Data;
import java.io.Serializable;
@Data
public class TestCaseReviewTestCaseUsers implements Serializable {
private String caseId;
private String reviewId;
private String userId;
private static final long serialVersionUID = 1L;
}

View File

@ -0,0 +1,410 @@
package io.metersphere.base.domain;
import java.util.ArrayList;
import java.util.List;
public class TestCaseReviewTestCaseUsersExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public TestCaseReviewTestCaseUsersExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andCaseIdIsNull() {
addCriterion("case_id is null");
return (Criteria) this;
}
public Criteria andCaseIdIsNotNull() {
addCriterion("case_id is not null");
return (Criteria) this;
}
public Criteria andCaseIdEqualTo(String value) {
addCriterion("case_id =", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdNotEqualTo(String value) {
addCriterion("case_id <>", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdGreaterThan(String value) {
addCriterion("case_id >", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdGreaterThanOrEqualTo(String value) {
addCriterion("case_id >=", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdLessThan(String value) {
addCriterion("case_id <", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdLessThanOrEqualTo(String value) {
addCriterion("case_id <=", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdLike(String value) {
addCriterion("case_id like", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdNotLike(String value) {
addCriterion("case_id not like", value, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdIn(List<String> values) {
addCriterion("case_id in", values, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdNotIn(List<String> values) {
addCriterion("case_id not in", values, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdBetween(String value1, String value2) {
addCriterion("case_id between", value1, value2, "caseId");
return (Criteria) this;
}
public Criteria andCaseIdNotBetween(String value1, String value2) {
addCriterion("case_id not between", value1, value2, "caseId");
return (Criteria) this;
}
public Criteria andReviewIdIsNull() {
addCriterion("review_id is null");
return (Criteria) this;
}
public Criteria andReviewIdIsNotNull() {
addCriterion("review_id is not null");
return (Criteria) this;
}
public Criteria andReviewIdEqualTo(String value) {
addCriterion("review_id =", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdNotEqualTo(String value) {
addCriterion("review_id <>", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdGreaterThan(String value) {
addCriterion("review_id >", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdGreaterThanOrEqualTo(String value) {
addCriterion("review_id >=", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdLessThan(String value) {
addCriterion("review_id <", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdLessThanOrEqualTo(String value) {
addCriterion("review_id <=", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdLike(String value) {
addCriterion("review_id like", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdNotLike(String value) {
addCriterion("review_id not like", value, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdIn(List<String> values) {
addCriterion("review_id in", values, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdNotIn(List<String> values) {
addCriterion("review_id not in", values, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdBetween(String value1, String value2) {
addCriterion("review_id between", value1, value2, "reviewId");
return (Criteria) this;
}
public Criteria andReviewIdNotBetween(String value1, String value2) {
addCriterion("review_id not between", value1, value2, "reviewId");
return (Criteria) this;
}
public Criteria andUserIdIsNull() {
addCriterion("user_id is null");
return (Criteria) this;
}
public Criteria andUserIdIsNotNull() {
addCriterion("user_id is not null");
return (Criteria) this;
}
public Criteria andUserIdEqualTo(String value) {
addCriterion("user_id =", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdNotEqualTo(String value) {
addCriterion("user_id <>", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdGreaterThan(String value) {
addCriterion("user_id >", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdGreaterThanOrEqualTo(String value) {
addCriterion("user_id >=", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdLessThan(String value) {
addCriterion("user_id <", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdLessThanOrEqualTo(String value) {
addCriterion("user_id <=", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdLike(String value) {
addCriterion("user_id like", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdNotLike(String value) {
addCriterion("user_id not like", value, "userId");
return (Criteria) this;
}
public Criteria andUserIdIn(List<String> values) {
addCriterion("user_id in", values, "userId");
return (Criteria) this;
}
public Criteria andUserIdNotIn(List<String> values) {
addCriterion("user_id not in", values, "userId");
return (Criteria) this;
}
public Criteria andUserIdBetween(String value1, String value2) {
addCriterion("user_id between", value1, value2, "userId");
return (Criteria) this;
}
public Criteria andUserIdNotBetween(String value1, String value2) {
addCriterion("user_id not between", value1, value2, "userId");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
}

View File

@ -1,3 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.2031 19.665C12.0738 19.6075 11.9263 19.6075 11.7971 19.665L5.7366 22.3573C5.38518 22.5134 4.99642 22.2309 5.0363 21.8485L5.72406 15.2526C5.73873 15.112 5.69314 14.9717 5.5986 14.8665L1.16526 9.93463C0.908188 9.64865 1.05668 9.19164 1.43275 9.11138L7.91829 7.72725C8.0566 7.69774 8.17593 7.61104 8.24674 7.48862L11.5673 1.74822C11.7598 1.41536 12.2403 1.41536 12.4329 1.74822L15.7534 7.48862C15.8242 7.61104 15.9436 7.69774 16.0819 7.72725L22.5674 9.11138C22.9435 9.19164 23.092 9.64866 22.8349 9.93463L18.4016 14.8665C18.307 14.9717 18.2614 15.112 18.2761 15.2526L18.9639 21.8485C19.0037 22.2309 18.615 22.5134 18.2636 22.3573L12.2031 19.665Z" fill="#1F2329"/>
</svg>

Before

Width:  |  Height:  |  Size: 777 B

View File

@ -1,3 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 17.5C16.1326 17.5 16.2598 17.5527 16.3536 17.6464C16.4473 17.7402 16.5 17.8674 16.5 18V20C16.5 20.0657 16.4871 20.1307 16.4619 20.1913C16.4368 20.252 16.4 20.3071 16.3536 20.3536C16.3071 20.4 16.252 20.4368 16.1913 20.4619C16.1307 20.4871 16.0657 20.5 16 20.5H14C13.9343 20.5 13.8693 20.4871 13.8087 20.4619C13.748 20.4368 13.6929 20.4 13.6464 20.3536C13.6 20.3071 13.5632 20.252 13.5381 20.1913C13.5129 20.1307 13.5 20.0657 13.5 20V18C13.5 17.9343 13.5129 17.8693 13.5381 17.8087C13.5632 17.748 13.6 17.6929 13.6464 17.6464C13.6929 17.6 13.748 17.5632 13.8087 17.5381C13.8693 17.5129 13.9343 17.5 14 17.5H16ZM10 17.5C10.1326 17.5 10.2598 17.5527 10.3536 17.6464C10.4473 17.7402 10.5 17.8674 10.5 18V20C10.5 20.0657 10.4871 20.1307 10.4619 20.1913C10.4368 20.252 10.4 20.3071 10.3536 20.3536C10.3071 20.4 10.252 20.4368 10.1913 20.4619C10.1307 20.4871 10.0657 20.5 10 20.5H8C7.93434 20.5 7.86932 20.4871 7.80866 20.4619C7.748 20.4368 7.69288 20.4 7.64645 20.3536C7.60002 20.3071 7.56319 20.252 7.53806 20.1913C7.51293 20.1307 7.5 20.0657 7.5 20V18C7.5 17.8674 7.55268 17.7402 7.64645 17.6464C7.74021 17.5527 7.86739 17.5 8 17.5H10ZM14 10.5H16C16.1326 10.5 16.2598 10.5527 16.3536 10.6464C16.4473 10.7402 16.5 10.8674 16.5 11V13C16.5 13.0657 16.4871 13.1307 16.4619 13.1913C16.4368 13.252 16.4 13.3071 16.3536 13.3536C16.3071 13.4 16.252 13.4368 16.1913 13.4619C16.1307 13.4871 16.0657 13.5 16 13.5H14C13.9343 13.5 13.8693 13.4871 13.8087 13.4619C13.748 13.4368 13.6929 13.4 13.6464 13.3536C13.6 13.3071 13.5632 13.252 13.5381 13.1913C13.5129 13.1307 13.5 13.0657 13.5 13V11C13.5 10.9343 13.5129 10.8693 13.5381 10.8087C13.5632 10.748 13.6 10.6929 13.6464 10.6464C13.6929 10.6 13.748 10.5632 13.8087 10.5381C13.8693 10.5129 13.9343 10.5 14 10.5V10.5ZM8 10.5H10C10.1326 10.5 10.2598 10.5527 10.3536 10.6464C10.4473 10.7402 10.5 10.8674 10.5 11V13C10.5 13.0657 10.4871 13.1307 10.4619 13.1913C10.4368 13.252 10.4 13.3071 10.3536 13.3536C10.3071 13.4 10.252 13.4368 10.1913 13.4619C10.1307 13.4871 10.0657 13.5 10 13.5H8C7.93434 13.5 7.86932 13.4871 7.80866 13.4619C7.748 13.4368 7.69288 13.4 7.64645 13.3536C7.60002 13.3071 7.56319 13.252 7.53806 13.1913C7.51293 13.1307 7.5 13.0657 7.5 13V11C7.5 10.8674 7.55268 10.7402 7.64645 10.6464C7.74021 10.5527 7.86739 10.5 8 10.5V10.5ZM16 3.5C16.0657 3.5 16.1307 3.51293 16.1913 3.53806C16.252 3.56319 16.3071 3.60002 16.3536 3.64645C16.4 3.69288 16.4368 3.748 16.4619 3.80866C16.4871 3.86932 16.5 3.93434 16.5 4V6C16.5 6.13261 16.4473 6.25979 16.3536 6.35355C16.2598 6.44732 16.1326 6.5 16 6.5H14C13.9343 6.5 13.8693 6.48707 13.8087 6.46194C13.748 6.43681 13.6929 6.39998 13.6464 6.35355C13.6 6.30712 13.5632 6.252 13.5381 6.19134C13.5129 6.13068 13.5 6.06566 13.5 6V4C13.5 3.93434 13.5129 3.86932 13.5381 3.80866C13.5632 3.748 13.6 3.69288 13.6464 3.64645C13.6929 3.60002 13.748 3.56319 13.8087 3.53806C13.8693 3.51293 13.9343 3.5 14 3.5H16V3.5ZM10 3.5C10.0657 3.5 10.1307 3.51293 10.1913 3.53806C10.252 3.56319 10.3071 3.60002 10.3536 3.64645C10.4 3.69288 10.4368 3.748 10.4619 3.80866C10.4871 3.86932 10.5 3.93434 10.5 4V6C10.5 6.13261 10.4473 6.25979 10.3536 6.35355C10.2598 6.44732 10.1326 6.5 10 6.5H8C7.93434 6.5 7.86932 6.48707 7.80866 6.46194C7.748 6.43681 7.69288 6.39998 7.64645 6.35355C7.60002 6.30712 7.56319 6.252 7.53806 6.19134C7.51293 6.13068 7.5 6.06566 7.5 6V4C7.5 3.93434 7.51293 3.86932 7.53806 3.80866C7.56319 3.748 7.60002 3.69288 7.64645 3.64645C7.69288 3.60002 7.748 3.56319 7.80866 3.53806C7.86932 3.51293 7.93434 3.5 8 3.5H10V3.5Z" fill="#1F2329"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -1,3 +0,0 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23ZM10.84 14.2799L16.1433 8.97665C16.3386 8.78138 16.6551 8.78138 16.8504 8.97665L17.5575 9.68375C17.7528 9.87901 17.7528 10.1956 17.5575 10.3909L11.1936 16.7548C10.9983 16.9501 10.6817 16.9501 10.4864 16.7548L6.82603 13.0944C6.63077 12.8991 6.63077 12.5826 6.82603 12.3873L7.53314 11.6802C7.7284 11.4849 8.04498 11.4849 8.24024 11.6802L10.84 14.2799Z" fill="#1F2329"/>
</svg>

Before

Width:  |  Height:  |  Size: 705 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 23C5.925 23 1 18.075 1 12C1 5.925 5.925 1 12 1C18.075 1 23 5.925 23 12C23 18.075 18.075 23 12 23ZM12 10.586L9.025 7.611C8.93124 7.51726 8.80409 7.46461 8.6715 7.46461C8.53892 7.46461 8.41177 7.51726 8.318 7.611L7.611 8.318C7.51727 8.41176 7.46461 8.53892 7.46461 8.6715C7.46461 8.80408 7.51727 8.93124 7.611 9.025L10.586 12L7.611 14.975C7.51727 15.0688 7.46461 15.1959 7.46461 15.3285C7.46461 15.4611 7.51727 15.5882 7.611 15.682L8.318 16.389C8.41177 16.4827 8.53892 16.5354 8.6715 16.5354C8.80409 16.5354 8.93124 16.4827 9.025 16.389L12 13.414L14.975 16.389C15.0688 16.4827 15.1959 16.5354 15.3285 16.5354C15.4611 16.5354 15.5882 16.4827 15.682 16.389L16.389 15.682C16.4827 15.5882 16.5354 15.4611 16.5354 15.3285C16.5354 15.1959 16.4827 15.0688 16.389 14.975L13.414 12L16.389 9.025C16.4827 8.93124 16.5354 8.80408 16.5354 8.6715C16.5354 8.53892 16.4827 8.41176 16.389 8.318L15.682 7.611C15.5882 7.51726 15.4611 7.46461 15.3285 7.46461C15.1959 7.46461 15.0688 7.51726 14.975 7.611L12 10.586Z" fill="#F54A45"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.33301 2.66683V2.00016C5.33301 1.63197 5.63148 1.3335 5.99967 1.3335H9.99967C10.3679 1.3335 10.6663 1.63197 10.6663 2.00016V2.66683H14.239C14.3876 2.66683 14.4415 2.6823 14.4958 2.71135C14.5501 2.7404 14.5928 2.78303 14.6218 2.83736C14.6509 2.89168 14.6663 2.94556 14.6663 3.09414V3.57285C14.6663 3.72144 14.6509 3.77532 14.6218 3.82964C14.5928 3.88396 14.5501 3.92659 14.4958 3.95564C14.4415 3.98469 14.3876 4.00016 14.239 4.00016H13.333V14.0002C13.333 14.3684 13.0345 14.6668 12.6663 14.6668H3.33301C2.96482 14.6668 2.66634 14.3684 2.66634 14.0002V4.00016H1.76032C1.61174 4.00016 1.55785 3.98469 1.50353 3.95564C1.44921 3.92659 1.40658 3.88396 1.37753 3.82964C1.34848 3.77532 1.33301 3.72144 1.33301 3.57285V3.09414C1.33301 2.94556 1.34848 2.89168 1.37753 2.83736C1.40658 2.78303 1.44921 2.7404 1.50353 2.71135C1.55785 2.6823 1.61174 2.66683 1.76032 2.66683H5.33301ZM3.99967 4.00016V13.3335H11.9997V4.00016H3.99967ZM6.33301 6.00016H6.99967C7.18377 6.00016 7.33301 6.1494 7.33301 6.3335V11.0002C7.33301 11.1843 7.18377 11.3335 6.99967 11.3335H6.33301C6.14891 11.3335 5.99967 11.1843 5.99967 11.0002V6.3335C5.99967 6.1494 6.14891 6.00016 6.33301 6.00016ZM8.99967 6.00016H9.66634C9.85044 6.00016 9.99967 6.1494 9.99967 6.3335V11.0002C9.99967 11.1843 9.85044 11.3335 9.66634 11.3335H8.99967C8.81558 11.3335 8.66634 11.1843 8.66634 11.0002V6.3335C8.66634 6.1494 8.81558 6.00016 8.99967 6.00016Z" fill="#646A73"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.33366 6.66795V12.5415C9.33366 12.7026 9.20308 12.8332 9.04199 12.8332H8.45866C8.29758 12.8332 8.16699 12.7026 8.16699 12.5415V6.4165C8.16699 6.33078 8.18548 6.24937 8.2187 6.17605C8.26302 6.06603 8.34235 5.96912 8.45193 5.90371L11.667 3.98454V2.33317H2.33366V4.00489L5.4516 5.86883C5.67459 5.9508 5.83366 6.16508 5.83366 6.4165V10.4998C5.83366 10.6609 5.70307 10.7915 5.54199 10.7915H4.95866C4.79758 10.7915 4.66699 10.6609 4.66699 10.4998V6.68786L1.44339 4.76076C1.37103 4.7175 1.3119 4.66048 1.26737 4.59502C1.20587 4.54155 1.16699 4.46273 1.16699 4.37484V1.74984C1.16699 1.42767 1.42816 1.1665 1.75033 1.1665H12.2503C12.4114 1.1665 12.5572 1.2318 12.6628 1.33736C12.7684 1.44292 12.8337 1.58875 12.8337 1.74984V4.19581C12.8382 4.23677 12.8381 4.27788 12.8337 4.31839V4.37484C12.8337 4.47308 12.7851 4.55997 12.7107 4.61282C12.6703 4.66233 12.6208 4.70574 12.5629 4.74034L9.33366 6.66795Z" fill="#783887"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.33317 6.66795V12.5415C9.33317 12.7026 9.20259 12.8332 9.0415 12.8332H8.45817C8.29709 12.8332 8.1665 12.7026 8.1665 12.5415V6.4165C8.1665 6.33078 8.185 6.24937 8.21821 6.17605C8.26253 6.06603 8.34187 5.96912 8.45144 5.90371L11.6665 3.98454V2.33317H2.33317V4.00489L5.45111 5.86883C5.6741 5.9508 5.83317 6.16508 5.83317 6.4165V10.4998C5.83317 10.6609 5.70259 10.7915 5.5415 10.7915H4.95817C4.79709 10.7915 4.6665 10.6609 4.6665 10.4998V6.68786L1.4429 4.76076C1.37054 4.7175 1.31141 4.66048 1.26688 4.59502C1.20538 4.54155 1.1665 4.46273 1.1665 4.37484V1.74984C1.1665 1.42767 1.42767 1.1665 1.74984 1.1665H12.2498C12.4109 1.1665 12.5568 1.2318 12.6623 1.33736C12.7679 1.44292 12.8332 1.58875 12.8332 1.74984V4.19581C12.8377 4.23677 12.8376 4.27788 12.8332 4.31839V4.37484C12.8332 4.47308 12.7846 4.55997 12.7102 4.61282C12.6698 4.66233 12.6203 4.70574 12.5624 4.74034L9.33317 6.66795Z" fill="#1F2329"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23Z" fill="#FF8800"/>
<path d="M11.5 7C11.2239 7 11 7.22386 11 7.5V13.5C11 13.7761 11.2239 14 11.5 14H12.5C12.7761 14 13 13.7761 13 13.5V7.5C13 7.22386 12.7761 7 12.5 7H11.5Z" fill="white"/>
<path d="M11.5 15C11.2239 15 11 15.2239 11 15.5V16.5C11 16.7761 11.2239 17 11.5 17H12.5C12.7761 17 13 16.7761 13 16.5V15.5C13 15.2239 12.7761 15 12.5 15H11.5Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 594 B

View File

@ -0,0 +1,3 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 12C1 18.075 5.925 23 12 23C18.075 23 23 18.075 23 12C23 5.925 18.075 1 12 1C5.925 1 1 5.925 1 12ZM16.1435 8.97653C16.2373 8.8828 16.3644 8.83014 16.497 8.83014C16.6296 8.83014 16.7567 8.8828 16.8505 8.97653L17.5575 9.68403C17.6512 9.77779 17.7039 9.90495 17.7039 10.0375C17.7039 10.1701 17.6512 10.2973 17.5575 10.391L11.1935 16.755C11.0997 16.8488 10.9726 16.9014 10.84 16.9014C10.7074 16.9014 10.5803 16.8488 10.4865 16.755L6.82651 13.0945C6.73277 13.0008 6.68011 12.8736 6.68011 12.741C6.68011 12.6084 6.73277 12.4813 6.82651 12.3875L7.53301 11.68C7.62677 11.5863 7.75393 11.5336 7.88651 11.5336C8.01909 11.5336 8.14624 11.5863 8.24001 11.68L10.84 14.28L16.1435 8.97653Z" fill="#34C724"/>
</svg>

After

Width:  |  Height:  |  Size: 809 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,4 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9993 5.33301H3.99935V6.66634H11.9993V5.33301Z" fill="#1F2329"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.33268 0.333008C0.964492 0.333008 0.666016 0.631485 0.666016 0.999674V10.9997C0.666016 11.3679 0.964492 11.6663 1.33268 11.6663H3.66602V12.6663C3.66602 12.8974 3.78565 13.112 3.98219 13.2334C4.17874 13.3549 4.42417 13.366 4.63082 13.2626L7.82339 11.6663H14.666C15.0342 11.6663 15.3327 11.3679 15.3327 10.9997V0.999674C15.3327 0.631485 15.0342 0.333008 14.666 0.333008H1.33268ZM1.99935 10.333V1.66634H13.9993V10.333H7.66602C7.56252 10.333 7.46044 10.3571 7.36787 10.4034L4.99935 11.5877V10.9997C4.99935 10.6315 4.70087 10.333 4.33268 10.333H1.99935Z" fill="#1F2329"/>
</svg>

After

Width:  |  Height:  |  Size: 802 B

View File

Before

Width:  |  Height:  |  Size: 714 B

After

Width:  |  Height:  |  Size: 714 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 463 B

After

Width:  |  Height:  |  Size: 463 B

View File

Before

Width:  |  Height:  |  Size: 646 B

After

Width:  |  Height:  |  Size: 646 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 714 B

After

Width:  |  Height:  |  Size: 714 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

Before

Width:  |  Height:  |  Size: 691 B

After

Width:  |  Height:  |  Size: 691 B

View File

Before

Width:  |  Height:  |  Size: 689 B

After

Width:  |  Height:  |  Size: 689 B

View File

@ -0,0 +1,3 @@
<svg width="15" height="12" viewBox="0 0 15 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.24568 0.211889L7.77427 0.683294C7.6441 0.813468 7.6441 1.02452 7.77427 1.1547L11.9528 5.33293L0.56226 5.33321C0.378166 5.33321 0.228927 5.48245 0.228927 5.66654V6.33321C0.228927 6.51731 0.378166 6.66654 0.56226 6.66654L11.9532 6.66626L7.77427 10.8451C7.65411 10.9652 7.64487 11.1543 7.74654 11.2851L7.77427 11.3165L8.24568 11.7879C8.36584 11.908 8.55492 11.9173 8.68568 11.8156L8.71708 11.7879L14.2359 6.26908C14.3095 6.19542 14.3415 6.09587 14.3318 5.99972C14.3415 5.90374 14.3095 5.80428 14.2359 5.73067L8.71708 0.211889C8.58691 0.0817141 8.37585 0.0817141 8.24568 0.211889Z" fill="#646A73"/>
</svg>

After

Width:  |  Height:  |  Size: 712 B

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 508 B

After

Width:  |  Height:  |  Size: 508 B

View File

Before

Width:  |  Height:  |  Size: 845 B

After

Width:  |  Height:  |  Size: 845 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 891 B

After

Width:  |  Height:  |  Size: 891 B

View File

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 303 B

View File

Before

Width:  |  Height:  |  Size: 466 B

After

Width:  |  Height:  |  Size: 466 B

View File

Before

Width:  |  Height:  |  Size: 400 B

After

Width:  |  Height:  |  Size: 400 B

View File

Before

Width:  |  Height:  |  Size: 715 B

After

Width:  |  Height:  |  Size: 715 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.20305 13.1413C8.07381 13.0839 7.9263 13.0839 7.79706 13.1413L4.08771 14.7892C3.73629 14.9453 3.34754 14.6628 3.38742 14.2804L3.80836 10.2434C3.82303 10.1027 3.77745 9.96243 3.68291 9.85726L0.969456 6.83867C0.712388 6.55269 0.86088 6.09568 1.23694 6.01542L5.20645 5.16826C5.34476 5.13874 5.46409 5.05204 5.5349 4.92963L7.56725 1.41619C7.75979 1.08333 8.24032 1.08333 8.43286 1.41619L10.4652 4.92963C10.536 5.05204 10.6554 5.13874 10.7937 5.16826L14.7632 6.01542C15.1392 6.09568 15.2877 6.55269 15.0307 6.83867L12.3172 9.85726C12.2227 9.96243 12.1771 10.1027 12.1917 10.2434L12.6127 14.2804C12.6526 14.6628 12.2638 14.9453 11.9124 14.7892L8.20305 13.1413Z" fill="#FF8800"/>
</svg>

After

Width:  |  Height:  |  Size: 789 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 888 B

After

Width:  |  Height:  |  Size: 888 B

View File

@ -0,0 +1,5 @@
<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6665 0.332031V13.6654H7.33317V0.332031H8.6665Z" fill="#646A73"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.666504 2.66536C0.666504 2.11308 1.11422 1.66536 1.6665 1.66536H6.6665V2.9987H1.99984V10.9987H6.6665V12.332H1.6665C1.11422 12.332 0.666504 11.8843 0.666504 11.332V2.66536Z" fill="#646A73"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.3332 2.66536C15.3332 2.11308 14.8855 1.66536 14.3332 1.66536H9.33317V2.9987H13.9998V10.9987H9.33317V12.332H14.3332C14.8855 12.332 15.3332 11.8843 15.3332 11.332V2.66536Z" fill="#646A73"/>
</svg>

After

Width:  |  Height:  |  Size: 708 B

View File

Before

Width:  |  Height:  |  Size: 523 B

After

Width:  |  Height:  |  Size: 523 B

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 512 B

After

Width:  |  Height:  |  Size: 512 B

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.3335 2.66634V1.99967C5.3335 1.63148 5.63197 1.33301 6.00016 1.33301H10.0002C10.3684 1.33301 10.6668 1.63148 10.6668 1.99967V2.66634H14.2395C14.3881 2.66634 14.442 2.68181 14.4963 2.71086C14.5506 2.73991 14.5933 2.78255 14.6223 2.83687C14.6514 2.89119 14.6668 2.94507 14.6668 3.09366V3.57236C14.6668 3.72095 14.6514 3.77483 14.6223 3.82915C14.5933 3.88347 14.5506 3.9261 14.4963 3.95515C14.442 3.9842 14.3881 3.99967 14.2395 3.99967H13.3335V13.9997C13.3335 14.3679 13.035 14.6663 12.6668 14.6663H3.3335C2.96531 14.6663 2.66683 14.3679 2.66683 13.9997V3.99967H1.76081C1.61222 3.99967 1.55834 3.9842 1.50402 3.95515C1.4497 3.9261 1.40707 3.88347 1.37802 3.82915C1.34897 3.77483 1.3335 3.72095 1.3335 3.57236V3.09366C1.3335 2.94507 1.34897 2.89119 1.37802 2.83687C1.40707 2.78255 1.4497 2.73991 1.50402 2.71086C1.55834 2.68181 1.61222 2.66634 1.76081 2.66634H5.3335ZM4.00016 3.99967V13.333H12.0002V3.99967H4.00016ZM6.3335 5.33301H7.00016C7.18426 5.33301 7.3335 5.48225 7.3335 5.66634V11.6663C7.3335 11.8504 7.18426 11.9997 7.00016 11.9997H6.3335C6.1494 11.9997 6.00016 11.8504 6.00016 11.6663V5.66634C6.00016 5.48225 6.1494 5.33301 6.3335 5.33301ZM9.00016 5.33301H9.66683C9.85092 5.33301 10.0002 5.48225 10.0002 5.66634V11.6663C10.0002 11.8504 9.85092 11.9997 9.66683 11.9997H9.00016C8.81607 11.9997 8.66683 11.8504 8.66683 11.6663V5.66634C8.66683 5.48225 8.81607 5.33301 9.00016 5.33301Z" fill="#F54A45"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 703 B

After

Width:  |  Height:  |  Size: 703 B

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 853 B

After

Width:  |  Height:  |  Size: 853 B

View File

Before

Width:  |  Height:  |  Size: 471 B

After

Width:  |  Height:  |  Size: 471 B

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.6667 11.6663C10.7551 11.6663 10.8399 11.7015 10.9024 11.764C10.9649 11.8265 11 11.9113 11 11.9997V13.333C11 13.3768 10.9914 13.4201 10.9746 13.4606C10.9579 13.501 10.9333 13.5378 10.9024 13.5687C10.8714 13.5997 10.8347 13.6242 10.7942 13.641C10.7538 13.6577 10.7104 13.6663 10.6667 13.6663H9.33333C9.28956 13.6663 9.24621 13.6577 9.20577 13.641C9.16533 13.6242 9.12858 13.5997 9.09763 13.5687C9.06668 13.5378 9.04213 13.501 9.02537 13.4606C9.00862 13.4201 9 13.3768 9 13.333V11.9997C9 11.9559 9.00862 11.9126 9.02537 11.8721C9.04213 11.8317 9.06668 11.7949 9.09763 11.764C9.12858 11.733 9.16533 11.7085 9.20577 11.6917C9.24621 11.675 9.28956 11.6663 9.33333 11.6663H10.6667ZM6.66667 11.6663C6.75507 11.6663 6.83986 11.7015 6.90237 11.764C6.96488 11.8265 7 11.9113 7 11.9997V13.333C7 13.3768 6.99138 13.4201 6.97463 13.4606C6.95788 13.501 6.93332 13.5378 6.90237 13.5687C6.87142 13.5997 6.83467 13.6242 6.79423 13.641C6.75379 13.6577 6.71044 13.6663 6.66667 13.6663H5.33333C5.28956 13.6663 5.24621 13.6577 5.20577 13.641C5.16533 13.6242 5.12858 13.5997 5.09763 13.5687C5.06668 13.5378 5.04213 13.501 5.02537 13.4606C5.00862 13.4201 5 13.3768 5 13.333V11.9997C5 11.9113 5.03512 11.8265 5.09763 11.764C5.16014 11.7015 5.24493 11.6663 5.33333 11.6663H6.66667ZM9.33333 6.99968H10.6667C10.7551 6.99968 10.8399 7.03479 10.9024 7.09731C10.9649 7.15982 11 7.2446 11 7.33301V8.66634C11 8.71012 10.9914 8.75346 10.9746 8.7939C10.9579 8.83434 10.9333 8.87109 10.9024 8.90204C10.8714 8.933 10.8347 8.95755 10.7942 8.9743C10.7538 8.99105 10.7104 8.99968 10.6667 8.99968H9.33333C9.28956 8.99968 9.24621 8.99105 9.20577 8.9743C9.16533 8.95755 9.12858 8.933 9.09763 8.90204C9.06668 8.87109 9.04213 8.83434 9.02537 8.7939C9.00862 8.75346 9 8.71012 9 8.66634V7.33301C9 7.28923 9.00862 7.24589 9.02537 7.20545C9.04213 7.16501 9.06668 7.12826 9.09763 7.09731C9.12858 7.06635 9.16533 7.0418 9.20577 7.02505C9.24621 7.0083 9.28956 6.99968 9.33333 6.99968ZM5.33333 6.99968H6.66667C6.75507 6.99968 6.83986 7.03479 6.90237 7.09731C6.96488 7.15982 7 7.2446 7 7.33301V8.66634C7 8.71012 6.99138 8.75346 6.97463 8.7939C6.95788 8.83434 6.93332 8.87109 6.90237 8.90204C6.87142 8.933 6.83467 8.95755 6.79423 8.9743C6.75379 8.99105 6.71044 8.99968 6.66667 8.99968H5.33333C5.28956 8.99968 5.24621 8.99105 5.20577 8.9743C5.16533 8.95755 5.12858 8.933 5.09763 8.90204C5.06668 8.87109 5.04213 8.83434 5.02537 8.7939C5.00862 8.75346 5 8.71012 5 8.66634V7.33301C5 7.2446 5.03512 7.15982 5.09763 7.09731C5.16014 7.03479 5.24493 6.99968 5.33333 6.99968ZM10.6667 2.33301C10.7104 2.33301 10.7538 2.34163 10.7942 2.35838C10.8347 2.37513 10.8714 2.39969 10.9024 2.43064C10.9333 2.46159 10.9579 2.49834 10.9746 2.53878C10.9914 2.57922 11 2.62257 11 2.66634V3.99967C11 4.08808 10.9649 4.17286 10.9024 4.23538C10.8399 4.29789 10.7551 4.33301 10.6667 4.33301H9.33333C9.28956 4.33301 9.24621 4.32439 9.20577 4.30763C9.16533 4.29088 9.12858 4.26633 9.09763 4.23538C9.06668 4.20442 9.04213 4.16768 9.02537 4.12724C9.00862 4.08679 9 4.04345 9 3.99967V2.66634C9 2.62257 9.00862 2.57922 9.02537 2.53878C9.04213 2.49834 9.06668 2.46159 9.09763 2.43064C9.12858 2.39969 9.16533 2.37513 9.20577 2.35838C9.24621 2.34163 9.28956 2.33301 9.33333 2.33301H10.6667ZM6.66667 2.33301C6.71044 2.33301 6.75379 2.34163 6.79423 2.35838C6.83467 2.37513 6.87142 2.39969 6.90237 2.43064C6.93332 2.46159 6.95788 2.49834 6.97463 2.53878C6.99138 2.57922 7 2.62257 7 2.66634V3.99967C7 4.08808 6.96488 4.17286 6.90237 4.23538C6.83986 4.29789 6.75507 4.33301 6.66667 4.33301H5.33333C5.28956 4.33301 5.24621 4.32439 5.20577 4.30763C5.16533 4.29088 5.12858 4.26633 5.09763 4.23538C5.06668 4.20442 5.04213 4.16768 5.02537 4.12724C5.00862 4.08679 5 4.04345 5 3.99967V2.66634C5 2.62257 5.00862 2.57922 5.02537 2.53878C5.04213 2.49834 5.06668 2.46159 5.09763 2.43064C5.12858 2.39969 5.16533 2.37513 5.20577 2.35838C5.24621 2.34163 5.28956 2.33301 5.33333 2.33301H6.66667Z" fill="#646A73"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 782 B

After

Width:  |  Height:  |  Size: 782 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 441 B

After

Width:  |  Height:  |  Size: 441 B

View File

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 411 B

View File

@ -0,0 +1,7 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#34C724"/>
<path d="M9.26954 14.1553H10.1815C10.1535 13.9073 10.0855 13.6873 9.97754 13.4953C9.86954 13.3033 9.73154 13.1433 9.56354 13.0153C9.39954 12.8833 9.21154 12.7833 8.99954 12.7153C8.79154 12.6473 8.56954 12.6133 8.33354 12.6133C8.00554 12.6133 7.70954 12.6713 7.44554 12.7873C7.18554 12.9033 6.96554 13.0633 6.78554 13.2673C6.60554 13.4713 6.46754 13.7113 6.37154 13.9873C6.27554 14.2593 6.22754 14.5553 6.22754 14.8753C6.22754 15.1873 6.27554 15.4793 6.37154 15.7513C6.46754 16.0193 6.60554 16.2533 6.78554 16.4533C6.96554 16.6533 7.18554 16.8113 7.44554 16.9273C7.70954 17.0393 8.00554 17.0953 8.33354 17.0953C8.59754 17.0953 8.83954 17.0553 9.05954 16.9753C9.27954 16.8953 9.47154 16.7793 9.63554 16.6273C9.79954 16.4753 9.93154 16.2913 10.0315 16.0753C10.1315 15.8593 10.1935 15.6173 10.2175 15.3493H9.30554C9.26954 15.6373 9.16954 15.8693 9.00554 16.0453C8.84554 16.2213 8.62154 16.3093 8.33354 16.3093C8.12154 16.3093 7.94154 16.2693 7.79354 16.1893C7.64554 16.1053 7.52554 15.9953 7.43354 15.8593C7.34154 15.7233 7.27354 15.5713 7.22954 15.4033C7.18954 15.2313 7.16954 15.0553 7.16954 14.8753C7.16954 14.6873 7.18954 14.5053 7.22954 14.3293C7.27354 14.1533 7.34154 13.9973 7.43354 13.8613C7.52554 13.7213 7.64554 13.6113 7.79354 13.5313C7.94154 13.4473 8.12154 13.4053 8.33354 13.4053C8.44954 13.4053 8.55954 13.4253 8.66354 13.4653C8.77154 13.5013 8.86754 13.5533 8.95154 13.6213C9.03554 13.6893 9.10554 13.7693 9.16154 13.8613C9.21754 13.9493 9.25354 14.0473 9.26954 14.1553Z" fill="white"/>
<path d="M11.5028 15.5773H10.5908C10.5868 15.8413 10.6348 16.0693 10.7348 16.2613C10.8348 16.4533 10.9688 16.6113 11.1368 16.7353C11.3088 16.8593 11.5048 16.9493 11.7248 17.0053C11.9488 17.0653 12.1788 17.0953 12.4148 17.0953C12.7068 17.0953 12.9628 17.0613 13.1828 16.9933C13.4068 16.9253 13.5928 16.8313 13.7408 16.7113C13.8928 16.5873 14.0068 16.4413 14.0828 16.2733C14.1588 16.1053 14.1968 15.9233 14.1968 15.7273C14.1968 15.4873 14.1448 15.2913 14.0408 15.1393C13.9408 14.9833 13.8208 14.8593 13.6808 14.7673C13.5408 14.6753 13.3988 14.6093 13.2548 14.5693C13.1148 14.5253 13.0048 14.4953 12.9248 14.4793C12.6568 14.4113 12.4388 14.3553 12.2708 14.3113C12.1068 14.2673 11.9768 14.2233 11.8808 14.1793C11.7888 14.1353 11.7268 14.0873 11.6948 14.0353C11.6628 13.9833 11.6468 13.9153 11.6468 13.8313C11.6468 13.7393 11.6668 13.6633 11.7068 13.6033C11.7468 13.5433 11.7968 13.4933 11.8568 13.4533C11.9208 13.4133 11.9908 13.3853 12.0668 13.3693C12.1428 13.3533 12.2188 13.3453 12.2948 13.3453C12.4108 13.3453 12.5168 13.3553 12.6128 13.3753C12.7128 13.3953 12.8008 13.4293 12.8768 13.4773C12.9528 13.5253 13.0128 13.5913 13.0568 13.6753C13.1048 13.7593 13.1328 13.8653 13.1408 13.9933H14.0528C14.0528 13.7453 14.0048 13.5353 13.9088 13.3633C13.8168 13.1873 13.6908 13.0433 13.5308 12.9313C13.3708 12.8193 13.1868 12.7393 12.9788 12.6913C12.7748 12.6393 12.5608 12.6133 12.3368 12.6133C12.1448 12.6133 11.9528 12.6393 11.7608 12.6913C11.5688 12.7433 11.3968 12.8233 11.2448 12.9313C11.0928 13.0393 10.9688 13.1753 10.8728 13.3393C10.7808 13.4993 10.7348 13.6893 10.7348 13.9093C10.7348 14.1053 10.7708 14.2733 10.8428 14.4133C10.9188 14.5493 11.0168 14.6633 11.1368 14.7553C11.2568 14.8473 11.3928 14.9233 11.5448 14.9833C11.6968 15.0393 11.8528 15.0873 12.0128 15.1273C12.1688 15.1713 12.3228 15.2113 12.4748 15.2473C12.6268 15.2833 12.7628 15.3253 12.8828 15.3733C13.0028 15.4213 13.0988 15.4813 13.1708 15.5533C13.2468 15.6253 13.2848 15.7193 13.2848 15.8353C13.2848 15.9433 13.2568 16.0333 13.2008 16.1053C13.1448 16.1733 13.0748 16.2273 12.9908 16.2673C12.9068 16.3073 12.8168 16.3353 12.7208 16.3513C12.6248 16.3633 12.5348 16.3693 12.4508 16.3693C12.3268 16.3693 12.2068 16.3553 12.0908 16.3273C11.9748 16.2953 11.8728 16.2493 11.7848 16.1893C11.7008 16.1253 11.6328 16.0433 11.5808 15.9433C11.5288 15.8433 11.5028 15.7213 11.5028 15.5773Z" fill="white"/>
<path d="M16.7493 16.9993L18.1713 12.7153H17.1993L16.2333 15.7273H16.2213L15.2673 12.7153H14.3013L15.6873 16.9993H16.7493Z" fill="white"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2EA121"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#D136D1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#3370FF"/>
<path d="M15 1.72408C15 1.6402 15.0871 1.58714 15.1464 1.64646V1.64646L19.8536 6.35357V6.35357C19.9129 6.41288 19.8598 6.50001 19.7759 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.72408Z" fill="#245BDB"/>
<path d="M10.5347 6.53465H9.26733V7.80198H10.5347V9.06931H9.26733V10.3366H10.5347V11.604H9.26733V12.8317H10.5347V16H8V11.604H9.26733V10.3366H8V9.06931H9.26733V7.80198H8V6.53465H9.26733V5.26733H8V4H9.26733V5.26733H10.5347V6.53465Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#34C724"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#2EA121"/>
<path d="M11.308 13.5956L8.33203 17.9996H9.60403L11.98 14.4596L14.284 17.9996H15.676L12.664 13.5956L15.496 9.43164H14.224L11.992 12.7796L9.85603 9.43164H8.48803L11.308 13.5956Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 741 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#14C0FF"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#049FD7"/>
<path d="M8.5 12C9.32843 12 10 11.3284 10 10.5C10 9.67157 9.32843 9 8.5 9C7.67157 9 7 9.67157 7 10.5C7 11.3284 7.67157 12 8.5 12Z" fill="white"/>
<path d="M16.7088 11.1987C16.8162 11.0913 17 11.1674 17 11.3194V18.0483C17 18.1426 16.9236 18.2189 16.8294 18.2189H10.1004L10.0939 18.2188H7.17094C7.01895 18.2188 6.94284 18.0351 7.05031 17.9276L10.7744 14.2035C10.841 14.1369 10.9491 14.1369 11.0157 14.2035L12.3598 15.5477L16.7088 11.1987Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#F54A45"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#D83931"/>
<path d="M17.6081 15.2316C17.3598 14.9368 16.8507 14.7934 16.0516 14.7934C15.5871 14.7934 15.026 14.8425 14.383 14.9392C12.6266 13.6551 12.1362 12.2384 12.1362 12.2384C12.1362 12.2384 12.4362 11.4747 12.4552 10.2274C12.4672 9.43896 12.3451 8.9071 12.0297 8.59811C11.9071 8.478 11.7014 8.40039 11.5057 8.40039C11.3529 8.40039 11.2099 8.44525 11.0927 8.53102C10.1796 9.19913 11.1765 12.3487 11.2032 12.4326C10.7723 13.4931 10.2295 14.6165 9.67082 15.6037C9.4893 15.9244 9.507 15.8994 9.35396 16.1602C9.35396 16.1602 7.80886 16.8859 7.05939 17.7773C6.63594 18.281 6.58241 18.621 6.60489 18.8801L6.60545 18.8858C6.64112 19.1909 7.03175 19.4688 7.42501 19.4688C7.44132 19.4688 7.45773 19.4683 7.4738 19.4673C7.87348 19.4426 8.31146 19.1586 8.81276 18.5991C9.14364 18.2297 9.57364 17.5798 10.0914 16.6668C11.5769 16.2442 12.8842 15.9432 13.9797 15.7716C14.7832 16.204 15.9785 16.6936 16.7922 16.6936C17.0651 16.6936 17.2847 16.638 17.4448 16.5282C17.6363 16.397 17.7177 16.2334 17.7682 15.9306C17.8188 15.6278 17.7484 15.3982 17.6081 15.2316ZM15.8727 15.6003C16.5869 15.6003 16.9736 15.7041 17.1722 15.7912C17.2335 15.8181 17.278 15.844 17.3097 15.8657C17.2537 15.9014 17.1436 15.9466 16.9446 15.9466C16.6147 15.9466 16.1816 15.8314 15.6534 15.6034C15.7285 15.6013 15.8017 15.6003 15.8727 15.6003ZM11.6402 9.03253C11.6407 9.03159 11.6413 9.03062 11.6419 9.02961C11.7951 9.11028 11.8666 9.67679 11.8522 10.0053C11.8329 10.4461 11.8284 10.6164 11.751 10.8872C11.5412 10.3226 11.5263 9.30775 11.6402 9.03253ZM11.6962 13.5014C12.0565 14.0864 12.5908 14.7201 13.1055 15.1725C12.1008 15.3848 11.1362 15.651 10.536 15.8581C11.1794 14.7595 11.654 13.6103 11.6962 13.5014ZM7.56119 18.5462C7.64836 18.401 7.8865 18.1197 8.49046 17.5757C8.07648 18.1983 7.7724 18.5373 7.4639 18.7488C7.48944 18.6821 7.52158 18.6122 7.56119 18.5462Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#F54A45"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#D83931"/>
<path d="M10.1854 13.536V10.392H12.4174C13.0654 10.392 13.5374 10.528 13.8334 10.8C14.1374 11.064 14.2894 11.452 14.2894 11.964C14.2894 12.476 14.1374 12.868 13.8334 13.14C13.5374 13.412 13.0654 13.544 12.4174 13.536H10.1854ZM9.04538 9.432V18H10.1854V14.496H12.8014C13.6654 14.504 14.3174 14.284 14.7574 13.836C15.2054 13.388 15.4294 12.764 15.4294 11.964C15.4294 11.164 15.2054 10.544 14.7574 10.104C14.3174 9.656 13.6654 9.432 12.8014 9.432H9.04538Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1016 B

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#D136D1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#FF8800"/>
<path d="M15 1.72408C15 1.6402 15.0871 1.58714 15.1464 1.64646L19.8536 6.35357C19.9129 6.41288 19.8598 6.50001 19.7759 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.72408Z" fill="#FF8800"/>
<path d="M10.0364 11C9.80989 11 9.59634 11.1055 9.45873 11.2854L8.14964 12.9966C7.94686 13.2617 7.95052 13.6307 8.1585 13.8917L11.4312 17.9987C11.5692 18.1719 11.7786 18.2727 12 18.2727C12.2214 18.2727 12.4308 18.1719 12.5688 17.9987L15.8415 13.8917C16.0495 13.6307 16.0531 13.2617 15.8504 12.9966L14.5413 11.2854C14.4037 11.1055 14.1901 11 13.9636 11H10.0364Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#D136D1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#14C0FF"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#049FD7"/>
<path d="M7.05579 15.5773H6.14379C6.13979 15.8413 6.18779 16.0693 6.28779 16.2613C6.38779 16.4533 6.52179 16.6113 6.68979 16.7353C6.86179 16.8593 7.05779 16.9493 7.27779 17.0053C7.50179 17.0653 7.73179 17.0953 7.96779 17.0953C8.25979 17.0953 8.51579 17.0613 8.73579 16.9933C8.95979 16.9253 9.14579 16.8313 9.29379 16.7113C9.44579 16.5873 9.55979 16.4413 9.63579 16.2733C9.71179 16.1053 9.74979 15.9233 9.74979 15.7273C9.74979 15.4873 9.69779 15.2913 9.59379 15.1393C9.49379 14.9833 9.37379 14.8593 9.23379 14.7673C9.09379 14.6753 8.95179 14.6093 8.80779 14.5693C8.66779 14.5253 8.55779 14.4953 8.47779 14.4793C8.20979 14.4113 7.99179 14.3553 7.82379 14.3113C7.65979 14.2673 7.52979 14.2233 7.43379 14.1793C7.34179 14.1353 7.27979 14.0873 7.24779 14.0353C7.21579 13.9833 7.19979 13.9153 7.19979 13.8313C7.19979 13.7393 7.21979 13.6633 7.25979 13.6033C7.29979 13.5433 7.34979 13.4933 7.40979 13.4533C7.47379 13.4133 7.54379 13.3853 7.61979 13.3693C7.69579 13.3533 7.77179 13.3453 7.84779 13.3453C7.96379 13.3453 8.06979 13.3553 8.16579 13.3753C8.26579 13.3953 8.35379 13.4293 8.42979 13.4773C8.50579 13.5253 8.56579 13.5913 8.60979 13.6753C8.65779 13.7593 8.68579 13.8653 8.69379 13.9933H9.60579C9.60579 13.7453 9.55779 13.5353 9.46179 13.3633C9.36979 13.1873 9.24379 13.0433 9.08379 12.9313C8.92379 12.8193 8.73979 12.7393 8.53179 12.6913C8.32779 12.6393 8.11379 12.6133 7.88979 12.6133C7.69779 12.6133 7.50579 12.6393 7.31379 12.6913C7.12179 12.7433 6.94979 12.8233 6.79779 12.9313C6.64579 13.0393 6.52179 13.1753 6.42579 13.3393C6.33379 13.4993 6.28779 13.6893 6.28779 13.9093C6.28779 14.1053 6.32379 14.2733 6.39579 14.4133C6.47179 14.5493 6.56979 14.6633 6.68979 14.7553C6.80979 14.8473 6.94579 14.9233 7.09779 14.9833C7.24979 15.0393 7.40579 15.0873 7.56579 15.1273C7.72179 15.1713 7.87579 15.2113 8.02779 15.2473C8.17979 15.2833 8.31579 15.3253 8.43579 15.3733C8.55579 15.4213 8.65179 15.4813 8.72379 15.5533C8.79979 15.6253 8.83779 15.7193 8.83779 15.8353C8.83779 15.9433 8.80979 16.0333 8.75379 16.1053C8.69779 16.1733 8.62779 16.2273 8.54379 16.2673C8.45979 16.3073 8.36979 16.3353 8.27379 16.3513C8.17779 16.3633 8.08779 16.3693 8.00379 16.3693C7.87979 16.3693 7.75979 16.3553 7.64379 16.3273C7.52779 16.2953 7.42579 16.2493 7.33779 16.1893C7.25379 16.1253 7.18579 16.0433 7.13379 15.9433C7.08179 15.8433 7.05579 15.7213 7.05579 15.5773Z" fill="white"/>
<path d="M13.1303 15.8593C13.2103 15.7513 13.2743 15.6173 13.3223 15.4573C13.3703 15.2973 13.3943 15.1033 13.3943 14.8753C13.3943 14.6873 13.3723 14.5053 13.3283 14.3293C13.2883 14.1533 13.2223 13.9973 13.1303 13.8613C13.0383 13.7213 12.9183 13.6113 12.7703 13.5313C12.6223 13.4473 12.4423 13.4053 12.2303 13.4053C12.0183 13.4053 11.8383 13.4473 11.6903 13.5313C11.5423 13.6113 11.4223 13.7213 11.3303 13.8613C11.2383 13.9973 11.1703 14.1533 11.1263 14.3293C11.0863 14.5053 11.0663 14.6873 11.0663 14.8753C11.0663 15.0553 11.0863 15.2313 11.1263 15.4033C11.1703 15.5713 11.2383 15.7233 11.3303 15.8593C11.4223 15.9953 11.5423 16.1053 11.6903 16.1893C11.8383 16.2693 12.0183 16.3093 12.2303 16.3093C12.3303 16.3093 12.4063 16.3053 12.4583 16.2973C12.5103 16.2893 12.5603 16.2733 12.6083 16.2493L12.2063 15.8833L12.6443 15.4153L13.1303 15.8593ZM13.2683 16.8493C12.9843 17.0133 12.6383 17.0953 12.2303 17.0953C11.9023 17.0953 11.6063 17.0393 11.3423 16.9273C11.0823 16.8113 10.8623 16.6533 10.6823 16.4533C10.5023 16.2533 10.3643 16.0193 10.2683 15.7513C10.1723 15.4793 10.1243 15.1873 10.1243 14.8753C10.1243 14.5553 10.1723 14.2593 10.2683 13.9873C10.3643 13.7113 10.5023 13.4713 10.6823 13.2673C10.8623 13.0633 11.0823 12.9033 11.3423 12.7873C11.6063 12.6713 11.9023 12.6133 12.2303 12.6133C12.5623 12.6133 12.8583 12.6713 13.1183 12.7873C13.3783 12.9033 13.5983 13.0633 13.7783 13.2673C13.9583 13.4713 14.0963 13.7113 14.1923 13.9873C14.2883 14.2593 14.3363 14.5553 14.3363 14.8753C14.3363 15.1873 14.2883 15.4773 14.1923 15.7453C14.0963 16.0133 13.9583 16.2493 13.7783 16.4533L14.3123 16.9393L13.8743 17.3953L13.2683 16.8493Z" fill="white"/>
<path d="M14.9802 12.7153V16.9993H18.0102V16.2073H15.9222V12.7153H14.9802Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#3370FF"/>
<path d="M11.4351 10.3916V17.9996H12.5751V10.3916H15.4311V9.43164H8.5791V10.3916H11.4351Z" fill="white"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#245BDB"/>
</svg>

After

Width:  |  Height:  |  Size: 654 B

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#8F959E"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#646A73"/>
<path d="M14.2875 9.86539C13.7417 9.34836 13.0255 9.0918 12.1348 9.0918C11.1342 9.0918 10.35 9.4126 9.78187 10.066C9.30059 10.6274 9.0413 11.1656 9.00422 12.014C9.00335 12.0339 9.0026 12.0707 9.00198 12.1131C8.99994 12.2517 9.11238 12.3645 9.25099 12.3645H9.84204C9.97951 12.3645 10.0909 12.2535 10.0931 12.1161C10.0938 12.0747 10.0946 12.039 10.0956 12.0199C10.1246 11.4338 10.2775 11.1272 10.5503 10.7861C10.8948 10.3269 11.4001 10.1009 12.0939 10.1009C12.7129 10.1009 13.1771 10.2588 13.4974 10.5791C13.8028 10.8973 13.962 11.3304 13.962 11.8736C13.962 12.2445 13.8276 12.5977 13.5544 12.949C13.4674 13.0578 13.342 13.1872 12.9383 13.5908C12.3007 14.1484 11.9068 14.6019 11.6988 15.0478C11.5277 15.3898 11.4405 15.7785 11.4405 16.1963V16.4782C11.4405 16.6162 11.5524 16.7282 11.6905 16.7282H12.2951C12.4331 16.7282 12.5451 16.6162 12.5451 16.4782V16.1963C12.5451 15.8423 12.6322 15.5247 12.8129 15.2151C12.9481 14.9851 13.1218 14.8048 13.4246 14.5399C14.0316 13.9907 14.3684 13.6635 14.5193 13.4715C14.8816 12.9933 15.0666 12.4455 15.0666 11.8463C15.0666 11.0194 14.807 10.356 14.2875 9.86539ZM11.7042 17.8191C11.5661 17.8191 11.4542 17.931 11.4542 18.0691V18.66C11.4542 18.798 11.5661 18.91 11.7042 18.91H12.2951C12.4331 18.91 12.5451 18.798 12.5451 18.66V18.0691C12.5451 17.931 12.4331 17.8191 12.2951 17.8191H11.7042Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,6 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#D136D1"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#14C0FF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.5 11.5C7.5 11.2239 7.72386 11 8 11H13.3971C13.6733 11 13.8971 11.2239 13.8971 11.5V12.1723L15.8207 11.4333C15.9744 11.3742 16.1474 11.3946 16.2831 11.4879C16.4189 11.5812 16.5 11.7353 16.5 11.9V16.3C16.5 16.4647 16.4189 16.6188 16.2831 16.7121C16.1474 16.8054 15.9744 16.8258 15.8207 16.7667L13.8971 16.0277V16.7C13.8971 16.9761 13.6733 17.2 13.3971 17.2H8C7.72386 17.2 7.5 16.9761 7.5 16.7V11.5ZM9 13C9.27614 13 9.5 12.7761 9.5 12.5C9.5 12.2239 9.27614 12 9 12C8.72386 12 8.5 12.2239 8.5 12.5C8.5 12.7761 8.72386 13 9 13Z" fill="white"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#049FD7"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#3370FF"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#245BDB"/>
<path d="M15.1209 17.9996L17.4129 9.43164H16.2729L14.5329 16.5596H14.5089L12.6129 9.43164H11.3769L9.45687 16.5596H9.43287L7.75287 9.43164H6.58887L8.78487 17.9996H9.97287L11.9529 10.7996H11.9769L13.9329 17.9996H15.1209Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 783 B

View File

@ -0,0 +1,8 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4 2.5C4 1.94772 4.44772 1.5 5 1.5H14.7929C14.9255 1.5 15.0527 1.55268 15.1464 1.64645L19.8536 6.35355C19.9473 6.44732 20 6.5745 20 6.70711V21.5C20 22.0523 19.5523 22.5 19 22.5H5C4.44772 22.5 4 22.0523 4 21.5V2.5Z" fill="#F54A45"/>
<path d="M15 1.54492C15.054 1.56949 15.1037 1.6037 15.1464 1.64646L19.8536 6.35357C19.8963 6.39632 19.9305 6.44602 19.9551 6.50001H16C15.4477 6.50001 15 6.0523 15 5.50001V1.54492Z" fill="#D83931"/>
<path opacity="0.8" d="M8.43359 12.342C8.43832 12.3302 8.4431 12.3184 8.44792 12.3066C10.8219 12.6247 12.6527 14.6582 12.6527 17.1192C12.6527 17.7709 12.5244 18.3925 12.2916 18.9603C11.2667 18.823 10.3431 18.366 9.6243 17.6929C9.84804 17.1347 9.97114 16.5253 9.97114 15.8872C9.97114 14.4885 9.37984 13.228 8.43359 12.342Z" fill="white"/>
<path d="M7.59039 15.309C7.21394 14.6191 7 13.8278 7 12.9865C7 12.7602 7.01547 12.5376 7.04542 12.3196C7.29044 12.2815 7.54153 12.2617 7.79723 12.2617C10.4791 12.2617 12.6531 14.4358 12.6531 17.1176C12.6531 17.2851 12.6446 17.4507 12.628 17.6139C11.7819 16.1886 10.2273 15.2332 8.44951 15.2332C8.15634 15.2332 7.86924 15.2592 7.59039 15.309Z" fill="white"/>
<path opacity="0.8" fill-rule="evenodd" clip-rule="evenodd" d="M15.5668 15.6183C15.5621 15.6301 15.5573 15.6419 15.5525 15.6537C13.1785 15.3356 11.3477 13.3021 11.3477 10.8411C11.3477 10.1894 11.476 9.56777 11.7088 9C12.7337 9.13733 13.6573 9.59433 14.3761 10.2674C14.1524 10.8256 14.0293 11.435 14.0293 12.0731C14.0293 13.4718 14.6206 14.7323 15.5668 15.6183Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.4104 12.6506C16.7868 13.3405 17.0008 14.1318 17.0008 14.9731C17.0008 15.1994 16.9853 15.422 16.9553 15.64C16.7103 15.6781 16.4592 15.6979 16.2035 15.6979C13.5217 15.6979 11.3477 13.5238 11.3477 10.842C11.3477 10.6744 11.3561 10.5089 11.3727 10.3457C12.2188 11.771 13.7735 12.7264 15.5512 12.7264C15.8444 12.7264 16.1315 12.7004 16.4104 12.6506Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 845 B

After

Width:  |  Height:  |  Size: 845 B

View File

@ -0,0 +1,4 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 3.66667C1 3.29848 1.32561 3 1.72727 3H7.82325C8.09872 3 8.35055 3.14267 8.47374 3.36852L9 4.33333H16.2727C16.6744 4.33333 17 4.63181 17 5V14.3333C17 14.7015 16.6744 15 16.2727 15H1.72727C1.32561 15 1 14.7015 1 14.3333V3.66667Z" fill="#8F959E"/>
<path d="M9.48625 8.34685C9.45451 8.23672 9.4375 8.12035 9.4375 8C9.4375 7.30964 9.99714 6.75 10.6875 6.75C11.3779 6.75 11.9375 7.30964 11.9375 8C11.9375 8.69036 11.3779 9.25 10.6875 9.25C10.3428 9.25 10.0306 9.11045 9.80449 8.88476L8.45125 9.6844C8.48299 9.79453 8.5 9.9109 8.5 10.0312C8.5 10.1141 8.49194 10.195 8.47657 10.2734L10.2003 11.1008C10.4296 10.8289 10.7728 10.6563 11.1562 10.6563C11.8466 10.6563 12.4063 11.2159 12.4063 11.9062C12.4063 12.5966 11.8466 13.1563 11.1562 13.1563C10.4659 13.1563 9.90625 12.5966 9.90625 11.9062C9.90625 11.8234 9.91431 11.7425 9.92968 11.6641L8.20592 10.8367C7.97662 11.1086 7.63348 11.2813 7.25 11.2813C6.55964 11.2813 6 10.7216 6 10.0312C6 9.34089 6.55964 8.78125 7.25 8.78125C7.59473 8.78125 7.90687 8.9208 8.13301 9.14649L9.48625 8.34685Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 433 B

After

Width:  |  Height:  |  Size: 433 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 401 B

After

Width:  |  Height:  |  Size: 401 B

View File

@ -0,0 +1,3 @@
<svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0.666667C0 0.298477 0.325611 0 0.727273 0H6.82325C7.09872 0 7.35055 0.142668 7.47374 0.368524L8 1.33333H15.2727C15.6744 1.33333 16 1.63181 16 2V11.3333C16 11.7015 15.6744 12 15.2727 12H0.727273C0.325611 12 0 11.7015 0 11.3333V0.666667ZM1.81818 2.66667C1.61735 2.66667 1.45455 2.81591 1.45455 3V3.66667C1.45455 3.85076 1.61735 4 1.81818 4H14.1818C14.3826 4 14.5455 3.85076 14.5455 3.66667V3C14.5455 2.81591 14.3826 2.66667 14.1818 2.66667H1.81818Z" fill="#783887"/>
</svg>

After

Width:  |  Height:  |  Size: 582 B

View File

Before

Width:  |  Height:  |  Size: 910 B

After

Width:  |  Height:  |  Size: 910 B

View File

Before

Width:  |  Height:  |  Size: 470 B

After

Width:  |  Height:  |  Size: 470 B

View File

@ -0,0 +1,4 @@
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.35384 10.2487H6.62451L13.3786 3.49447C13.6106 3.26241 13.6111 2.88631 13.3797 2.65363L11.334 0.597225C11.1015 0.364727 10.7246 0.364727 10.4921 0.597225L10.0722 1.01709L10.0738 1.01875L3.75849 7.38268V9.65336C3.75849 9.98216 4.02504 10.2487 4.35384 10.2487ZM10.8942 1.84338L12.0999 3.0554L11.0796 4.07666L9.88016 2.87724L10.8942 1.84338ZM10.238 4.91901L6.12234 9.03865H6.12053L4.96855 7.88486L9.04634 3.72734L10.238 4.91901Z" fill="#646A73"/>
<path d="M7.76297 1.31588H1.44324C1.0779 1.31588 0.781738 1.61204 0.781738 1.97737V12.5614C0.781738 12.9267 1.0779 13.2229 1.44324 13.2229H12.0272C12.3926 13.2229 12.6887 12.9267 12.6887 12.5614V6.16128L11.3574 7.5006V11.898H2.11298V2.64068H6.46224L7.76297 1.31588Z" fill="#646A73"/>
</svg>

After

Width:  |  Height:  |  Size: 846 B

Some files were not shown because too many files have changed in this diff Show More