kitchen-simulator 11.30.0 → 11.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/assets/img/svg/accessories.svg +4 -4
- package/es/assets/img/svg/bottombar/elevation-back.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-front.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-left.svg +6 -6
- package/es/assets/img/svg/bottombar/elevation-right.svg +7 -7
- package/es/assets/img/svg/bottombar/elevation.svg +13 -13
- package/es/assets/img/svg/detail.svg +77 -77
- package/es/assets/img/svg/filtersActive.svg +19 -19
- package/es/assets/img/svg/invert.svg +12 -12
- package/es/assets/img/svg/menubar/login.svg +84 -84
- package/es/assets/img/svg/menubar/my_projects.svg +85 -85
- package/es/assets/img/svg/menubar/new_project.svg +110 -110
- package/es/assets/img/svg/menubar/save_project.svg +84 -84
- package/es/assets/img/svg/options.svg +3 -3
- package/es/assets/img/svg/positioning.svg +3 -3
- package/es/assets/img/svg/toggleFilters.svg +19 -19
- package/es/assets/img/svg/toolbar/shopping-cart.svg +13 -13
- package/es/assets/img/svg/wizardstep/detail_view.svg +87 -87
- package/es/assets/img/svg/wizardstep/tile_view.svg +95 -95
- package/es/class/vertex.js +7 -1
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
- package/es/events/external/handlers.syncScene.js +33 -0
- package/es/mappings/external-events/mapExternalEventPayload.js +4 -4
- package/es/mappings/external-events/mappers/addItemMapper.js +9 -9
- package/es/shared/domain/asset/sanitize-asset-url.js +5 -5
- package/es/shared/math/line-metrics.js +34 -0
- package/es/utils/helper.js +2 -5
- package/es/utils/skinPanelEngine.js +14 -14
- package/lib/assets/img/svg/accessories.svg +4 -4
- package/lib/assets/img/svg/bottombar/elevation-back.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-front.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-left.svg +6 -6
- package/lib/assets/img/svg/bottombar/elevation-right.svg +7 -7
- package/lib/assets/img/svg/bottombar/elevation.svg +13 -13
- package/lib/assets/img/svg/detail.svg +77 -77
- package/lib/assets/img/svg/filtersActive.svg +19 -19
- package/lib/assets/img/svg/invert.svg +12 -12
- package/lib/assets/img/svg/menubar/login.svg +84 -84
- package/lib/assets/img/svg/menubar/my_projects.svg +85 -85
- package/lib/assets/img/svg/menubar/new_project.svg +110 -110
- package/lib/assets/img/svg/menubar/save_project.svg +84 -84
- package/lib/assets/img/svg/options.svg +3 -3
- package/lib/assets/img/svg/positioning.svg +3 -3
- package/lib/assets/img/svg/toggleFilters.svg +19 -19
- package/lib/assets/img/svg/toolbar/shopping-cart.svg +13 -13
- package/lib/assets/img/svg/wizardstep/detail_view.svg +87 -87
- package/lib/assets/img/svg/wizardstep/tile_view.svg +95 -95
- package/lib/class/vertex.js +7 -1
- package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +556 -556
- package/lib/events/external/handlers.syncScene.js +34 -0
- package/lib/mappings/external-events/mapExternalEventPayload.js +4 -4
- package/lib/mappings/external-events/mappers/addItemMapper.js +9 -9
- package/lib/shared/domain/asset/sanitize-asset-url.js +5 -5
- package/lib/shared/math/line-metrics.js +40 -0
- package/lib/utils/helper.js +2 -5
- package/lib/utils/skinPanelEngine.js +14 -14
- package/package.json +1 -1
|
@@ -1,6 +1,39 @@
|
|
|
1
|
+
import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray";
|
|
2
|
+
import { getLineLength } from "../../shared/math/line-metrics";
|
|
3
|
+
function addLineLengthsToScene(sceneData) {
|
|
4
|
+
if (!(sceneData !== null && sceneData !== void 0 && sceneData.layers)) return;
|
|
5
|
+
Object.values(sceneData.layers).forEach(function (layerData) {
|
|
6
|
+
var _ref, _layerData$unit;
|
|
7
|
+
var unit = (_ref = (_layerData$unit = layerData === null || layerData === void 0 ? void 0 : layerData.unit) !== null && _layerData$unit !== void 0 ? _layerData$unit : sceneData === null || sceneData === void 0 ? void 0 : sceneData.unit) !== null && _ref !== void 0 ? _ref : 'cm';
|
|
8
|
+
var vertices = layerData === null || layerData === void 0 ? void 0 : layerData.vertices;
|
|
9
|
+
var lines = layerData === null || layerData === void 0 ? void 0 : layerData.lines;
|
|
10
|
+
if (!vertices || !lines) return;
|
|
11
|
+
Object.values(lines).forEach(function (line) {
|
|
12
|
+
try {
|
|
13
|
+
var length = getLineLength(line, vertices, unit);
|
|
14
|
+
if (length != null) line.length = length;
|
|
15
|
+
} catch (e) {
|
|
16
|
+
var _line$vertices;
|
|
17
|
+
// Fallback: still provide a usable length value (cm)
|
|
18
|
+
var _ref2 = (_line$vertices = line === null || line === void 0 ? void 0 : line.vertices) !== null && _line$vertices !== void 0 ? _line$vertices : [],
|
|
19
|
+
_ref3 = _slicedToArray(_ref2, 2),
|
|
20
|
+
v0Id = _ref3[0],
|
|
21
|
+
v1Id = _ref3[1];
|
|
22
|
+
var v0 = vertices === null || vertices === void 0 ? void 0 : vertices[v0Id];
|
|
23
|
+
var v1 = vertices === null || vertices === void 0 ? void 0 : vertices[v1Id];
|
|
24
|
+
if (!v0 || !v1) return;
|
|
25
|
+
line.length = Math.hypot(v0.x - v1.x, v0.y - v1.y);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
|
1
30
|
export function handleSyncScene(props, state, layer, layerId, getMoldingDataOfScene2, computeSkinPanels, DEFAULT_MOLDING_PIECE_LENGTH, INTERNAL_EVENT_SYNC_SCENE) {
|
|
2
31
|
var _layer$doorStyle, _props$configData$mol, _props$configData, _props$configData$ski, _props$configData2, _props$onInternalEven;
|
|
3
32
|
var sceneData = state.scene.toJS();
|
|
33
|
+
|
|
34
|
+
// Add `length` field for all walls (lines) in sync payload
|
|
35
|
+
addLineLengthsToScene(sceneData);
|
|
36
|
+
|
|
4
37
|
// get molding data for "ReviewForQuote"
|
|
5
38
|
var currentTexture = (_layer$doorStyle = layer === null || layer === void 0 ? void 0 : layer.doorStyle) !== null && _layer$doorStyle !== void 0 ? _layer$doorStyle : props.state.doorStyle;
|
|
6
39
|
if (currentTexture && currentTexture.toJS) currentTexture = currentTexture.toJS();
|
|
@@ -4,10 +4,10 @@ import { mapAddItemEvent } from "./mappers/addItemMapper";
|
|
|
4
4
|
import { mapChangeDoorStyleEvent } from "./mappers/changeDoorStyleMapper";
|
|
5
5
|
import { mapLoadProjectEvent } from "./mappers/loadProjectMapper";
|
|
6
6
|
|
|
7
|
-
/**
|
|
8
|
-
* Main dispatcher for external event payload mapping.
|
|
9
|
-
* Converts new API formats into legacy internal formats (e.g. assets3d -> structure_json)
|
|
10
|
-
* without changing the behavior of the existing 3D tool.
|
|
7
|
+
/**
|
|
8
|
+
* Main dispatcher for external event payload mapping.
|
|
9
|
+
* Converts new API formats into legacy internal formats (e.g. assets3d -> structure_json)
|
|
10
|
+
* without changing the behavior of the existing 3D tool.
|
|
11
11
|
*/
|
|
12
12
|
export function mapExternalEventPayload(evt, state, defaultTextures) {
|
|
13
13
|
if (isEmpty(evt)) return null;
|
|
@@ -5,15 +5,15 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
|
|
|
5
5
|
import { ITEM_TYPE } from "../../../constants";
|
|
6
6
|
import { isEmpty } from "../../../utils/helper";
|
|
7
7
|
|
|
8
|
-
/**
|
|
9
|
-
* Mapping logic for EXTERNAL_EVENT_ADD_ITEM.
|
|
10
|
-
*
|
|
11
|
-
* Converts the new assets3d payload shape into the legacy structure_json format
|
|
12
|
-
* expected by the existing 3D tool.
|
|
13
|
-
*
|
|
14
|
-
* @param {Object} evt.payload External event payload
|
|
15
|
-
* @param {Immutable.Map} state Planner state
|
|
16
|
-
* @returns {Object|null} Updated event (or null when payload is empty)
|
|
8
|
+
/**
|
|
9
|
+
* Mapping logic for EXTERNAL_EVENT_ADD_ITEM.
|
|
10
|
+
*
|
|
11
|
+
* Converts the new assets3d payload shape into the legacy structure_json format
|
|
12
|
+
* expected by the existing 3D tool.
|
|
13
|
+
*
|
|
14
|
+
* @param {Object} evt.payload External event payload
|
|
15
|
+
* @param {Immutable.Map} state Planner state
|
|
16
|
+
* @returns {Object|null} Updated event (or null when payload is empty)
|
|
17
17
|
*/
|
|
18
18
|
export function mapAddItemEvent(orgEvtPayload, state) {
|
|
19
19
|
var _evtPayload, _evtPayload3;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Strip stray dots from the **path portion** of a GLTF/BIN URL.
|
|
3
|
-
* e.g. `…/B36_36x34.5x24.gltf` → `…/B36_36x345x24.gltf`
|
|
4
|
-
*
|
|
5
|
-
* Leaves the protocol/domain and the final file extension untouched.
|
|
1
|
+
/**
|
|
2
|
+
* Strip stray dots from the **path portion** of a GLTF/BIN URL.
|
|
3
|
+
* e.g. `…/B36_36x34.5x24.gltf` → `…/B36_36x345x24.gltf`
|
|
4
|
+
*
|
|
5
|
+
* Leaves the protocol/domain and the final file extension untouched.
|
|
6
6
|
*/
|
|
7
7
|
export var sanitizeAssetUrl = function sanitizeAssetUrl(url) {
|
|
8
8
|
if (!url) return url;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { convert } from "../../utils/convert-units-lite";
|
|
2
|
+
function getVertexId(lineVertices, index) {
|
|
3
|
+
if (!lineVertices) return null;
|
|
4
|
+
return typeof lineVertices.get === 'function' ? lineVertices.get(index) : lineVertices[index];
|
|
5
|
+
}
|
|
6
|
+
function getVertex(vertices, vertexId) {
|
|
7
|
+
if (!vertices || vertexId == null) return null;
|
|
8
|
+
return typeof vertices.get === 'function' ? vertices.get(vertexId) : vertices[vertexId];
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Computes a line length using its 2 vertices.
|
|
13
|
+
*
|
|
14
|
+
* Assumptions (matches existing DRAG logic):
|
|
15
|
+
* - vertex coordinates are stored in centimeters
|
|
16
|
+
* - result is converted to the provided unit
|
|
17
|
+
*
|
|
18
|
+
* @param {object} line - line object/record with `vertices` (array or immutable List)
|
|
19
|
+
* @param {object} vertices - vertices collection (plain object map or immutable Map)
|
|
20
|
+
* @param {string} unit - target unit (e.g. 'in', 'cm')
|
|
21
|
+
* @returns {number|null}
|
|
22
|
+
*/
|
|
23
|
+
export function getLineLength(line, vertices) {
|
|
24
|
+
var _v0$x, _v1$x, _v0$y, _v1$y;
|
|
25
|
+
var unit = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'cm';
|
|
26
|
+
var lineVertices = line === null || line === void 0 ? void 0 : line.vertices;
|
|
27
|
+
var v0Id = getVertexId(lineVertices, 0);
|
|
28
|
+
var v1Id = getVertexId(lineVertices, 1);
|
|
29
|
+
var v0 = getVertex(vertices, v0Id);
|
|
30
|
+
var v1 = getVertex(vertices, v1Id);
|
|
31
|
+
if (!v0 || !v1) return null;
|
|
32
|
+
var distanceCm = Math.hypot(((_v0$x = v0.x) !== null && _v0$x !== void 0 ? _v0$x : 0) - ((_v1$x = v1.x) !== null && _v1$x !== void 0 ? _v1$x : 0), ((_v0$y = v0.y) !== null && _v0$y !== void 0 ? _v0$y : 0) - ((_v1$y = v1.y) !== null && _v1$y !== void 0 ? _v1$y : 0));
|
|
33
|
+
return convert(distanceCm).from('cm').to(unit);
|
|
34
|
+
}
|
package/es/utils/helper.js
CHANGED
|
@@ -13,6 +13,7 @@ import AWS from 'aws-sdk';
|
|
|
13
13
|
import { GeometryUtils, MoldingUtils } from "./export";
|
|
14
14
|
import { calcDistancesFromHoleToNearestOneOrWall } from "./geometry";
|
|
15
15
|
import { toJSIfNeeded } from "../shared/objects/immutable";
|
|
16
|
+
import { getLineLength } from "../shared/math/line-metrics";
|
|
16
17
|
var s3 = new AWS.S3({
|
|
17
18
|
accessKeyId: process.env.REACT_APP_AWS_ID,
|
|
18
19
|
secretAccessKey: process.env.REACT_APP_AWS_SECRET
|
|
@@ -408,11 +409,7 @@ export function updatePayloadOfInternalEvent(currentObject, layer) {
|
|
|
408
409
|
if (isEmpty(layer)) return updatedPayload;
|
|
409
410
|
if ((currentObject === null || currentObject === void 0 ? void 0 : currentObject.prototype) === 'lines') {
|
|
410
411
|
// caculating length of selected line//
|
|
411
|
-
|
|
412
|
-
var v_b = layer.vertices.get(currentObject.vertices.get(1));
|
|
413
|
-
var distance = GeometryUtils.pointsDistance(v_a.x, v_a.y, v_b.x, v_b.y);
|
|
414
|
-
var _length = convert(distance).from('cm').to(layer.unit);
|
|
415
|
-
updatedPayload.length = _length;
|
|
412
|
+
updatedPayload.length = getLineLength(currentObject, layer.vertices, layer.unit);
|
|
416
413
|
//////////////////////////////////////
|
|
417
414
|
} else if ((currentObject === null || currentObject === void 0 ? void 0 : currentObject.prototype) === 'items') {
|
|
418
415
|
// check this cabinet has warning box
|
|
@@ -137,10 +137,10 @@ function isSnappedWithCornerCabient(srcItem, desItem) {
|
|
|
137
137
|
} else return false;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
/**
|
|
141
|
-
* @param {*} faceSegs
|
|
142
|
-
* @param {*} otherFaces
|
|
143
|
-
* @returns
|
|
140
|
+
/**
|
|
141
|
+
* @param {*} faceSegs
|
|
142
|
+
* @param {*} otherFaces
|
|
143
|
+
* @returns
|
|
144
144
|
*/
|
|
145
145
|
function getTrimmedFaceSegs(faceSegs, otherFaces, cnt) {
|
|
146
146
|
try {
|
|
@@ -301,8 +301,8 @@ function applyGroupingRules(faces) {
|
|
|
301
301
|
};
|
|
302
302
|
}
|
|
303
303
|
|
|
304
|
-
/**
|
|
305
|
-
* Horizontal Grouping (for base cabinets back-to-back : BSV48 48" x 34.5")
|
|
304
|
+
/**
|
|
305
|
+
* Horizontal Grouping (for base cabinets back-to-back : BSV48 48" x 34.5")
|
|
306
306
|
*/
|
|
307
307
|
function applyHorizontalGrouping(faces) {
|
|
308
308
|
var removeIdxs = [];
|
|
@@ -344,8 +344,8 @@ function applyHorizontalGrouping(faces) {
|
|
|
344
344
|
};
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
/**
|
|
348
|
-
* Vertical Grouping (For CT3DR or CT2DR SKUs + stacked wall cabinets)
|
|
347
|
+
/**
|
|
348
|
+
* Vertical Grouping (For CT3DR or CT2DR SKUs + stacked wall cabinets)
|
|
349
349
|
*/
|
|
350
350
|
function applyVerticalGrouping(faces) {
|
|
351
351
|
var removeIdxs = [];
|
|
@@ -436,8 +436,8 @@ function buildMP3SkinPanelArray(bottomHeight, topHeight, mp3SkinPanelArray) {
|
|
|
436
436
|
return skinPanelTypeArray;
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
-
/**
|
|
440
|
-
* Decide which skin panel pieces are needed for a tall cabinet.
|
|
439
|
+
/**
|
|
440
|
+
* Decide which skin panel pieces are needed for a tall cabinet.
|
|
441
441
|
*/
|
|
442
442
|
function resolveTallCabinetBundle(face) {
|
|
443
443
|
var item = face.itemInfo;
|
|
@@ -457,8 +457,8 @@ function resolveTallCabinetBundle(face) {
|
|
|
457
457
|
return face !== null && face !== void 0 && face.skinPanelSKU ? [face.skinPanelSKU] : [];
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
-
/**
|
|
461
|
-
* Converts a face → list of SKUs
|
|
460
|
+
/**
|
|
461
|
+
* Converts a face → list of SKUs
|
|
462
462
|
*/
|
|
463
463
|
function resolveSkinPanelSKU(face) {
|
|
464
464
|
var layout = face.itemInfo.layoutpos;
|
|
@@ -468,8 +468,8 @@ function resolveSkinPanelSKU(face) {
|
|
|
468
468
|
return [face.skinPanelSKU];
|
|
469
469
|
}
|
|
470
470
|
|
|
471
|
-
/**
|
|
472
|
-
* Make skin panel data with grouping skinPanelSKU & doorStyle
|
|
471
|
+
/**
|
|
472
|
+
* Make skin panel data with grouping skinPanelSKU & doorStyle
|
|
473
473
|
*/
|
|
474
474
|
function buildSkinPanelData(faces) {
|
|
475
475
|
var tempResult = [];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M11.05 5.47V20.18L8 20.96" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M16.02 3V17.32L14.13 17.76" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.05 5.47V20.18L8 20.96" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M16.02 3V17.32L14.13 17.76" stroke="#000F33" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M14.5564 21L20.2416 14.9342M21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M8.91868 1L0.994629 4.08224L1.90534 17.3692L9.14126 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M14.5564 21L20.2416 14.9342M21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M8.91868 1L0.994629 4.08224L1.90534 17.3692L9.14126 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M1.90534 17.3692L14.5566 21L14.8953 6.34588L0.994629 4.08224" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" fill="#4C12A1" fill-opacity="0.5" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M1.90534 17.3692L14.5566 21L14.8953 6.34588L0.994629 4.08224" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
6
|
+
</svg>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
-
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
-
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" fill="#4C12A1" fill-opacity="0.5"/>
|
|
6
|
-
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589L14.5564 21Z" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
</svg>
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M14.5566 21L1.90534 17.3692L0.994629 4.08224L14.8953 6.34588L14.5566 21Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
3
|
+
<path d="M8.91868 1L9.14126 12.3969L1.90534 17.3692L0.994629 4.08224L8.91868 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
4
|
+
<path d="M8.9187 1L21.0053 2.53972L20.2418 14.9342L9.14128 12.3969L8.9187 1Z" stroke="#C1CAE4" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="5 3"/>
|
|
5
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589" fill="#4C12A1" fill-opacity="0.5"/>
|
|
6
|
+
<path d="M14.5564 21L20.2416 14.9342L21.0051 2.53973L14.8952 6.34589L14.5564 21Z" stroke="#4C12A1" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</svg>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_1516_100789)">
|
|
3
|
-
<path d="M4.25 6L2 7.125L8 10.125L14 7.125L11.75 6" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M2 10.125L8 13.125L14 10.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M8 7.125V1.875" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M5.75 4.125L8 1.875L10.25 4.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
</g>
|
|
8
|
-
<defs>
|
|
9
|
-
<clipPath id="clip0_1516_100789">
|
|
10
|
-
<rect width="16" height="16" fill="white"/>
|
|
11
|
-
</clipPath>
|
|
12
|
-
</defs>
|
|
13
|
-
</svg>
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_1516_100789)">
|
|
3
|
+
<path d="M4.25 6L2 7.125L8 10.125L14 7.125L11.75 6" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M2 10.125L8 13.125L14 10.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M8 7.125V1.875" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M5.75 4.125L8 1.875L10.25 4.125" stroke="rgba(58, 11, 128, 1)" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
</g>
|
|
8
|
+
<defs>
|
|
9
|
+
<clipPath id="clip0_1516_100789">
|
|
10
|
+
<rect width="16" height="16" fill="white"/>
|
|
11
|
+
</clipPath>
|
|
12
|
+
</defs>
|
|
13
|
+
</svg>
|
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
width="18"
|
|
13
|
-
height="14"
|
|
14
|
-
id="svg3049"
|
|
15
|
-
version="1.1"
|
|
16
|
-
inkscape:version="0.48.4 r9939"
|
|
17
|
-
sodipodi:docname="New document 5">
|
|
18
|
-
<defs
|
|
19
|
-
id="defs3051" />
|
|
20
|
-
<sodipodi:namedview
|
|
21
|
-
id="base"
|
|
22
|
-
pagecolor="#ffffff"
|
|
23
|
-
bordercolor="#666666"
|
|
24
|
-
borderopacity="1.0"
|
|
25
|
-
inkscape:pageopacity="0.0"
|
|
26
|
-
inkscape:pageshadow="2"
|
|
27
|
-
inkscape:zoom="11.197802"
|
|
28
|
-
inkscape:cx="16"
|
|
29
|
-
inkscape:cy="16"
|
|
30
|
-
inkscape:current-layer="layer1"
|
|
31
|
-
showgrid="true"
|
|
32
|
-
inkscape:grid-bbox="true"
|
|
33
|
-
inkscape:document-units="px"
|
|
34
|
-
inkscape:window-width="1920"
|
|
35
|
-
inkscape:window-height="1017"
|
|
36
|
-
inkscape:window-x="-8"
|
|
37
|
-
inkscape:window-y="-8"
|
|
38
|
-
inkscape:window-maximized="1" />
|
|
39
|
-
<metadata
|
|
40
|
-
id="metadata3054">
|
|
41
|
-
<rdf:RDF>
|
|
42
|
-
<cc:Work
|
|
43
|
-
rdf:about="">
|
|
44
|
-
<dc:format>image/svg+xml</dc:format>
|
|
45
|
-
<dc:type
|
|
46
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
47
|
-
<dc:title></dc:title>
|
|
48
|
-
</cc:Work>
|
|
49
|
-
</rdf:RDF>
|
|
50
|
-
</metadata>
|
|
51
|
-
<g
|
|
52
|
-
id="layer1"
|
|
53
|
-
inkscape:label="Layer 1"
|
|
54
|
-
inkscape:groupmode="layer"
|
|
55
|
-
transform="translate(0,-18)">
|
|
56
|
-
<g
|
|
57
|
-
transform="translate(-867,-822.725)"
|
|
58
|
-
clip-path="url(#clip77_0_1)"
|
|
59
|
-
id="g4">
|
|
60
|
-
<path
|
|
61
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
62
|
-
inkscape:connector-curvature="0"
|
|
63
|
-
d="m 868,841.725 h 16"
|
|
64
|
-
id="path6" />
|
|
65
|
-
<path
|
|
66
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
67
|
-
inkscape:connector-curvature="0"
|
|
68
|
-
d="m 868,847.725 h 16"
|
|
69
|
-
id="path8" />
|
|
70
|
-
<path
|
|
71
|
-
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
72
|
-
inkscape:connector-curvature="0"
|
|
73
|
-
d="m 868,853.725 h 16"
|
|
74
|
-
id="path10" />
|
|
75
|
-
</g>
|
|
76
|
-
</g>
|
|
77
|
-
</svg>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
width="18"
|
|
13
|
+
height="14"
|
|
14
|
+
id="svg3049"
|
|
15
|
+
version="1.1"
|
|
16
|
+
inkscape:version="0.48.4 r9939"
|
|
17
|
+
sodipodi:docname="New document 5">
|
|
18
|
+
<defs
|
|
19
|
+
id="defs3051" />
|
|
20
|
+
<sodipodi:namedview
|
|
21
|
+
id="base"
|
|
22
|
+
pagecolor="#ffffff"
|
|
23
|
+
bordercolor="#666666"
|
|
24
|
+
borderopacity="1.0"
|
|
25
|
+
inkscape:pageopacity="0.0"
|
|
26
|
+
inkscape:pageshadow="2"
|
|
27
|
+
inkscape:zoom="11.197802"
|
|
28
|
+
inkscape:cx="16"
|
|
29
|
+
inkscape:cy="16"
|
|
30
|
+
inkscape:current-layer="layer1"
|
|
31
|
+
showgrid="true"
|
|
32
|
+
inkscape:grid-bbox="true"
|
|
33
|
+
inkscape:document-units="px"
|
|
34
|
+
inkscape:window-width="1920"
|
|
35
|
+
inkscape:window-height="1017"
|
|
36
|
+
inkscape:window-x="-8"
|
|
37
|
+
inkscape:window-y="-8"
|
|
38
|
+
inkscape:window-maximized="1" />
|
|
39
|
+
<metadata
|
|
40
|
+
id="metadata3054">
|
|
41
|
+
<rdf:RDF>
|
|
42
|
+
<cc:Work
|
|
43
|
+
rdf:about="">
|
|
44
|
+
<dc:format>image/svg+xml</dc:format>
|
|
45
|
+
<dc:type
|
|
46
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
47
|
+
<dc:title></dc:title>
|
|
48
|
+
</cc:Work>
|
|
49
|
+
</rdf:RDF>
|
|
50
|
+
</metadata>
|
|
51
|
+
<g
|
|
52
|
+
id="layer1"
|
|
53
|
+
inkscape:label="Layer 1"
|
|
54
|
+
inkscape:groupmode="layer"
|
|
55
|
+
transform="translate(0,-18)">
|
|
56
|
+
<g
|
|
57
|
+
transform="translate(-867,-822.725)"
|
|
58
|
+
clip-path="url(#clip77_0_1)"
|
|
59
|
+
id="g4">
|
|
60
|
+
<path
|
|
61
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
62
|
+
inkscape:connector-curvature="0"
|
|
63
|
+
d="m 868,841.725 h 16"
|
|
64
|
+
id="path6" />
|
|
65
|
+
<path
|
|
66
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
67
|
+
inkscape:connector-curvature="0"
|
|
68
|
+
d="m 868,847.725 h 16"
|
|
69
|
+
id="path8" />
|
|
70
|
+
<path
|
|
71
|
+
style="stroke:#4c12a1;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
|
72
|
+
inkscape:connector-curvature="0"
|
|
73
|
+
d="m 868,853.725 h 16"
|
|
74
|
+
id="path10" />
|
|
75
|
+
</g>
|
|
76
|
+
</g>
|
|
77
|
+
</svg>
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<rect width="40" height="40" rx="6" fill="#3A0B80"/>
|
|
3
|
-
<g clip-path="url(#clip0_2782_269361)">
|
|
4
|
-
<path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
<path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
-
<path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
-
<path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
-
<path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
-
<path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
-
<path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
-
<path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
-
</g>
|
|
14
|
-
<defs>
|
|
15
|
-
<clipPath id="clip0_2782_269361">
|
|
16
|
-
<rect width="24" height="24" fill="white" transform="translate(8 8)"/>
|
|
17
|
-
</clipPath>
|
|
18
|
-
</defs>
|
|
19
|
-
</svg>
|
|
1
|
+
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="40" height="40" rx="6" fill="#3A0B80"/>
|
|
3
|
+
<g clip-path="url(#clip0_2782_269361)">
|
|
4
|
+
<path d="M20 14C20 14.5304 20.2107 15.0391 20.5858 15.4142C20.9609 15.7893 21.4696 16 22 16C22.5304 16 23.0391 15.7893 23.4142 15.4142C23.7893 15.0391 24 14.5304 24 14C24 13.4696 23.7893 12.9609 23.4142 12.5858C23.0391 12.2107 22.5304 12 22 12C21.4696 12 20.9609 12.2107 20.5858 12.5858C20.2107 12.9609 20 13.4696 20 14Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M12 14H20" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M24 14H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M14 20C14 20.5304 14.2107 21.0391 14.5858 21.4142C14.9609 21.7893 15.4696 22 16 22C16.5304 22 17.0391 21.7893 17.4142 21.4142C17.7893 21.0391 18 20.5304 18 20C18 19.4696 17.7893 18.9609 17.4142 18.5858C17.0391 18.2107 16.5304 18 16 18C15.4696 18 14.9609 18.2107 14.5858 18.5858C14.2107 18.9609 14 19.4696 14 20Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M12 20H14" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M18 20H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M23 26C23 26.5304 23.2107 27.0391 23.5858 27.4142C23.9609 27.7893 24.4696 28 25 28C25.5304 28 26.0391 27.7893 26.4142 27.4142C26.7893 27.0391 27 26.5304 27 26C27 25.4696 26.7893 24.9609 26.4142 24.5858C26.0391 24.2107 25.5304 24 25 24C24.4696 24 23.9609 24.2107 23.5858 24.5858C23.2107 24.9609 23 25.4696 23 26Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M12 26H23" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
<path d="M27 26H28" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
+
</g>
|
|
14
|
+
<defs>
|
|
15
|
+
<clipPath id="clip0_2782_269361">
|
|
16
|
+
<rect width="24" height="24" fill="white" transform="translate(8 8)"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
</defs>
|
|
19
|
+
</svg>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g clip-path="url(#clip0_2431_146436)">
|
|
3
|
-
<path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
-
<path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
-
<path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
-
</g>
|
|
7
|
-
<defs>
|
|
8
|
-
<clipPath id="clip0_2431_146436">
|
|
9
|
-
<rect width="15" height="15" fill="white"/>
|
|
10
|
-
</clipPath>
|
|
11
|
-
</defs>
|
|
12
|
-
</svg>
|
|
1
|
+
<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g clip-path="url(#clip0_2431_146436)">
|
|
3
|
+
<path d="M7.5 1.875V13.125" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path d="M10 4.375V10.625H13.125L10 4.375Z" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M5 4.375V10.625H1.875L5 4.375Z" fill="#3A0B80" stroke="#3A0B80" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</g>
|
|
7
|
+
<defs>
|
|
8
|
+
<clipPath id="clip0_2431_146436">
|
|
9
|
+
<rect width="15" height="15" fill="white"/>
|
|
10
|
+
</clipPath>
|
|
11
|
+
</defs>
|
|
12
|
+
</svg>
|