Merge branch 'master' of github.com:Ultimaker/Cura

This commit is contained in:
Jaime van Kessel 2021-06-01 11:41:16 +02:00
commit fc87c6a90c
No known key found for this signature in database
GPG key ID: 3710727397403C91
285 changed files with 1518 additions and 1246 deletions

View file

@ -197,7 +197,7 @@
{
"label": "Build Plate Adhesion",
"type": "category",
"icon": "Adhesion",
"icon": "category_adhesion",
"description": "Adhesion",
"children":
{
@ -232,7 +232,7 @@
"material":
{
"label": "Material",
"icon": "Spool",
"icon": "category_material",
"description": "Material",
"type": "category",
"children":

View file

@ -28,7 +28,7 @@
"label": "Machine",
"type": "category",
"description": "Machine specific settings",
"icon": "Printer",
"icon": "category_machine",
"children":
{
"machine_name":
@ -765,7 +765,7 @@
{
"label": "Quality",
"type": "category",
"icon": "PrintQuality",
"icon": "category_layer_height",
"description": "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)",
"children":
{
@ -1001,7 +1001,7 @@
"shell":
{
"label": "Walls",
"icon": "PrintShell",
"icon": "category_shell",
"description": "Shell",
"type": "category",
"children":
@ -1346,7 +1346,7 @@
"top_bottom":
{
"label": "Top/Bottom",
"icon": "PrintTopBottom",
"icon": "category_topbottom",
"description": "Top/Bottom",
"type": "category",
"children":
@ -1822,7 +1822,7 @@
"infill":
{
"label": "Infill",
"icon": "Infill1",
"icon": "category_infill",
"description": "Infill",
"type": "category",
"children":
@ -2161,7 +2161,7 @@
"material":
{
"label": "Material",
"icon": "Spool",
"icon": "category_material",
"description": "Material",
"type": "category",
"children":
@ -2766,7 +2766,7 @@
"speed":
{
"label": "Speed",
"icon": "SpeedOMeter",
"icon": "category_speed",
"description": "Speed",
"type": "category",
"children":
@ -3672,7 +3672,7 @@
"travel":
{
"label": "Travel",
"icon": "PrintTravel",
"icon": "category_travel",
"description": "travel",
"type": "category",
"children":
@ -3977,7 +3977,7 @@
"cooling":
{
"label": "Cooling",
"icon": "Fan",
"icon": "category_cool",
"description": "Cooling",
"type": "category",
"children":
@ -4127,7 +4127,7 @@
{
"label": "Support",
"type": "category",
"icon": "Support",
"icon": "category_support",
"description": "Support",
"children":
{
@ -5167,7 +5167,7 @@
{
"label": "Build Plate Adhesion",
"type": "category",
"icon": "Adhesion",
"icon": "category_adhesion",
"description": "Adhesion",
"children":
{
@ -5821,7 +5821,7 @@
{
"label": "Dual Extrusion",
"type": "category",
"icon": "DualExtrusion",
"icon": "category_dual",
"description": "Settings used for printing with multiple extruders.",
"children":
{
@ -6036,7 +6036,7 @@
{
"label": "Mesh Fixes",
"type": "category",
"icon": "Bandage",
"icon": "category_fixes",
"description": "Make the meshes more suited for 3D printing.",
"children":
{
@ -6162,7 +6162,7 @@
{
"label": "Special Modes",
"type": "category",
"icon": "BlackMagic",
"icon": "category_blackmagic",
"description": "Non-traditional ways to print your models.",
"children":
{
@ -6335,7 +6335,7 @@
{
"label": "Experimental",
"type": "category",
"icon": "Experiment",
"icon": "category_experimental",
"description": "Features that haven't completely been fleshed out yet.",
"children":
{

View file

@ -52,7 +52,7 @@ Item
width: parent.width + 2
height: parent.height + 2
visible: hasAvatar
source: UM.Theme.getIcon("CircleOutline")
source: UM.Theme.getIcon("circle_outline")
sourceSize: Qt.size(parent.width, parent.height)
color: UM.Theme.getColor("account_widget_outline_active")
}

View file

@ -18,27 +18,27 @@ Row // Sync state icon + message
{
name: "idle"
when: syncState == Cura.AccountSyncState.IDLE
PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight")}
PropertyChanges { target: icon; source: UM.Theme.getIcon("update")}
},
State
{
name: "syncing"
when: syncState == Cura.AccountSyncState.SYNCING
PropertyChanges { target: icon; source: UM.Theme.getIcon("ArrowDoubleCircleRight") }
PropertyChanges { target: icon; source: UM.Theme.getIcon("update") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Checking...")}
},
State
{
name: "up_to_date"
when: syncState == Cura.AccountSyncState.SUCCESS
PropertyChanges { target: icon; source: UM.Theme.getIcon("CheckCircle") }
PropertyChanges { target: icon; source: UM.Theme.getIcon("checked") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Account synced")}
},
State
{
name: "error"
when: syncState == Cura.AccountSyncState.ERROR
PropertyChanges { target: icon; source: UM.Theme.getIcon("Warning") }
PropertyChanges { target: icon; source: UM.Theme.getIcon("warning_light") }
PropertyChanges { target: stateLabel; text: catalog.i18nc("@label", "Something went wrong...")}
}
]

View file

@ -60,7 +60,7 @@ Item
leftPadding: UM.Theme.getSize("narrow_margin").width //Need more space than usual here for wide text.
rightPadding: UM.Theme.getSize("narrow_margin").width
iconSource: popup.opened ? UM.Theme.getIcon("ChevronSingleUp") : UM.Theme.getIcon("ChevronSingleDown")
iconSource: popup.opened ? UM.Theme.getIcon("arrow_top") : UM.Theme.getIcon("arrow_bottom")
color: UM.Theme.getColor("action_panel_secondary")
visible: (devicesModel.deviceCount > 1)
@ -113,4 +113,4 @@ Item
}
UM.OutputDevicesModel { id: devicesModel }
}
}

View file

@ -57,7 +57,7 @@ Column
width: parent.width
text: preSlicedData ? catalog.i18nc("@label", "No time estimation available") : PrintInformation.currentPrintTime.getDisplayString(UM.DurationFormat.Long)
source: UM.Theme.getIcon("Clock")
source: UM.Theme.getIcon("clock")
font: UM.Theme.getFont("medium_bold")
}
@ -99,7 +99,7 @@ Column
}
return totalWeights + "g · " + totalLengths.toFixed(2) + "m"
}
source: UM.Theme.getIcon("Spool")
source: UM.Theme.getIcon("spool")
font: UM.Theme.getFont("default")
}
}
@ -142,4 +142,4 @@ Column
height: UM.Theme.getSize("action_button").height
}
}
}
}

View file

@ -11,7 +11,7 @@ UM.RecolorImage
{
id: widget
source: UM.Theme.getIcon("Information")
source: UM.Theme.getIcon("info")
width: visible ? UM.Theme.getSize("section_icon").width : 0
height: UM.Theme.getSize("section_icon").height
@ -58,4 +58,4 @@ UM.RecolorImage
arrowSize: UM.Theme.getSize("default_arrow").width
}
}
}
}

View file

@ -65,7 +65,7 @@ Column
visible: widget.backendState == UM.Backend.Error
text: catalog.i18nc("@label:PrintjobStatus", "Unable to slice")
source: UM.Theme.getIcon("Warning")
source: UM.Theme.getIcon("warning")
iconColor: UM.Theme.getColor("warning")
}

View file

@ -32,7 +32,7 @@ CheckBox
height: Math.round(parent.height / 2.5)
sourceSize.height: width
color: UM.Theme.getColor("checkbox_mark")
source: UM.Theme.getIcon("Check")
source: UM.Theme.getIcon("check")
opacity: checkbox.checked
Behavior on opacity { NumberAnimation { duration: 100; } }
}

View file

@ -165,7 +165,7 @@ Item
verticalCenter: parent.verticalCenter
margins: background.padding
}
source: UM.Theme.getIcon("Pen")
source: UM.Theme.getIcon("pencil")
visible: source != ""
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height

View file

@ -59,11 +59,11 @@ Cura.RoundedRectangle
anchors.fill: parent
sourceSize.width: width
color: closeButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
source: UM.Theme.getIcon("Cancel")
source: UM.Theme.getIcon("cross1")
}
background: Item {}
onClicked: toggleContent() // Will hide the popup item
}
}
}

View file

@ -178,7 +178,7 @@ Item
verticalCenter: parent.verticalCenter
margins: background.padding
}
source: expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
source: expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
visible: source != ""
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height

View file

@ -22,7 +22,7 @@ Item
id: mainIcon
anchors.fill: parent
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: extruderEnabled ? materialColor: UM.Theme.getColor("disabled")
}
@ -32,14 +32,15 @@ Item
width: height
height: Math.round(parent.height / 2)
radius: Math.round(width)
radius: Math.round(width / 2)
color: UM.Theme.getColor("toolbar_background")
anchors
{
horizontalCenter: parent.horizontalCenter
top: parent.top
topMargin: (parent.height - height) / 2
// The circle needs to be slightly off center (so it sits in the middle of the square bit of the icon)
topMargin: (parent.height - height) / 2 - 0.1 * parent.height
}
Label
@ -63,9 +64,9 @@ Item
anchors.fill: parent
anchors.margins: UM.Theme.getSize("thick_lining").width
sourceSize.height: width
source: UM.Theme.getIcon("Cancel")
source: UM.Theme.getIcon("cross1")
visible: !extruderEnabled
color: UM.Theme.getColor("text")
}
}
}
}

View file

@ -66,7 +66,7 @@ Item
sourceSize.width: width
sourceSize.height: width
color: control.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
source: UM.Theme.getIcon("Pen")
source: UM.Theme.getIcon("pencil")
}
}
}

View file

@ -93,7 +93,7 @@ Button
id: icon
anchors.verticalCenter: unknownMaterialMessage.verticalCenter
source: UM.Theme.getIcon("Warning")
source: UM.Theme.getIcon("warning")
color: UM.Theme.getColor("warning")
width: UM.Theme.getSize("section_icon").width
height: width

View file

@ -39,7 +39,7 @@ Item
anchors.left: parent.left
anchors.verticalCenter: label.verticalCenter
source: UM.Theme.getIcon("Warning")
source: UM.Theme.getIcon("warning")
color: UM.Theme.getColor("warning")
width: UM.Theme.getSize("section_icon").width
height: width

View file

@ -206,7 +206,7 @@ Cura.ExpandablePopup
anchors.right: parent.right
iconSource: UM.Theme.getIcon("ChevronSingleRight")
iconSource: UM.Theme.getIcon("arrow_right")
isIconOnRightSide: true
onClicked:
@ -222,7 +222,7 @@ Cura.ExpandablePopup
visible: popupItem.configuration_method == ConfigurationMenu.ConfigurationMethod.Custom
text: catalog.i18nc("@label", "Configurations")
iconSource: UM.Theme.getIcon("ChevronSingleLeft")
iconSource: UM.Theme.getIcon("arrow_left")
onClicked:
{

View file

@ -314,7 +314,7 @@ Item
anchors.centerIn: parent
background: UM.RecolorImage
{
source: UM.Theme.getIcon("Guide")
source: UM.Theme.getIcon("printing_guideline")
color: instructionButton.hovered ? UM.Theme.getColor("primary") : UM.Theme.getColor("icon")
}
visible: selectors.instructionLink != ""
@ -388,7 +388,7 @@ Item
{
id: warningImage
anchors.left: parent.left
source: UM.Theme.getIcon("Warning")
source: UM.Theme.getIcon("warning")
width: UM.Theme.getSize("section_icon").width
height: UM.Theme.getSize("section_icon").height
sourceSize.width: width

View file

@ -53,7 +53,7 @@ Button
anchors.left: parent.left
width: height
height: parent.height - UM.Theme.getSize("narrow_margin").height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: extruderColor
visible: showExtruderSwatches && extruderColor != ""
}
@ -168,12 +168,12 @@ Button
{
switch (meshType) {
case "support_mesh":
return UM.Theme.getIcon("MeshTypeSupport");
return UM.Theme.getIcon("pos_print_as_support");
case "cutting_mesh":
case "infill_mesh":
return UM.Theme.getIcon("MeshTypeIntersect");
return UM.Theme.getIcon("pos_modify_overlaps");
case "anti_overhang_mesh":
return UM.Theme.getIcon("BlockSupportOverlaps");
return UM.Theme.getIcon("pos_modify_dont_support_overlap");
}
return "";
}

View file

@ -48,7 +48,7 @@ Item
sourceSize.width: width
anchors.left: parent.left
color: openCloseButton.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
source: objectSelector.opened ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleUp")
source: objectSelector.opened ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_top")
}
Label

View file

@ -66,7 +66,7 @@ Item
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
color: "black"
source: brand_section.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
source: brand_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
}
}
}
@ -144,4 +144,4 @@ Item
expanded = materialList.expandedBrands.indexOf(sectionName) > -1
}
}
}
}

View file

@ -122,7 +122,7 @@ Rectangle
}
}
}
source: materialSlot.is_favorite ? UM.Theme.getIcon("StarFilled") : UM.Theme.getIcon("Star")
source: materialSlot.is_favorite ? UM.Theme.getIcon("favorites_star_full") : UM.Theme.getIcon("favorites_star_empty")
}
}
}
}

View file

@ -78,7 +78,7 @@ Item
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
color: "black"
source: material_type_section.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
source: material_type_section.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
}
}
@ -134,4 +134,4 @@ Item
expanded = materialList.expandedTypes.indexOf(materialBrand + "_" + materialName) > -1
}
}
}
}

View file

@ -158,7 +158,7 @@ Item
anchors.rightMargin: UM.Theme.getSize("default_margin").width
color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button");
iconSource: UM.Theme.getIcon("StarFilled")
iconSource: UM.Theme.getIcon("star")
onClicked:
{
@ -176,7 +176,7 @@ Item
{
id: downArrow
source: UM.Theme.getIcon("ChevronSingleDown")
source: UM.Theme.getIcon("arrow_bottom")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height

View file

@ -18,7 +18,7 @@ Item
UM.RecolorImage
{
source: UM.Theme.getIcon("Information")
source: UM.Theme.getIcon("info")
color: UM.Theme.getColor("icon")
anchors.fill: parent
}
@ -33,4 +33,4 @@ Item
}
onExited: base.hideTooltip()
}
}
}

View file

@ -142,7 +142,7 @@ Item
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
text: catalog.i18nc("@button", "Recommended")
iconSource: UM.Theme.getIcon("ChevronSingleLeft")
iconSource: UM.Theme.getIcon("arrow_left")
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Custom
onClicked: currentModeIndex = PrintSetupSelectorContents.Mode.Recommended
}
@ -156,7 +156,7 @@ Item
leftPadding: UM.Theme.getSize("default_margin").width
rightPadding: UM.Theme.getSize("default_margin").width
text: catalog.i18nc("@button", "Custom")
iconSource: UM.Theme.getIcon("ChevronSingleRight")
iconSource: UM.Theme.getIcon("arrow_right")
isIconOnRightSide: true
visible: currentModeIndex == PrintSetupSelectorContents.Mode.Recommended
onClicked:
@ -233,10 +233,10 @@ Item
height: UM.Theme.getSize("drag_icon").height
anchors.centerIn: parent
source: UM.Theme.getIcon("ThreeDots")
source: UM.Theme.getIcon("resize")
color: UM.Theme.getColor("small_button_text")
}
}
}
}
}
}

View file

@ -15,7 +15,7 @@ RowLayout
Cura.IconWithText
{
source: UM.Theme.getIcon("PrintQuality")
source: UM.Theme.getIcon("category_layer_height")
text:
{
if (Cura.MachineManager.activeStack)
@ -50,7 +50,7 @@ RowLayout
Cura.IconWithText
{
source: UM.Theme.getIcon("Infill1")
source: UM.Theme.getIcon("category_infill")
text: Cura.MachineManager.activeStack ? parseInt(infillDensity.properties.value) + "%" : "0%"
font: UM.Theme.getFont("medium")
@ -65,7 +65,7 @@ RowLayout
Cura.IconWithText
{
source: UM.Theme.getIcon("Support")
source: UM.Theme.getIcon("category_support")
text: supportEnabled.properties.value == "True" ? enabledText : disabledText
font: UM.Theme.getFont("medium")
@ -80,7 +80,7 @@ RowLayout
Cura.IconWithText
{
source: UM.Theme.getIcon("Adhesion")
source: UM.Theme.getIcon("category_adhesion")
text: platformAdhesionType.properties.value != "skirt" && platformAdhesionType.properties.value != "none" ? enabledText : disabledText
font: UM.Theme.getFont("medium")
@ -92,4 +92,4 @@ RowLayout
watchedProperties: [ "value"]
}
}
}
}

View file

@ -25,7 +25,7 @@ Item
id: enableAdhesionRowTitle
anchors.top: parent.top
anchors.left: parent.left
source: UM.Theme.getIcon("Adhesion")
source: UM.Theme.getIcon("category_adhesion")
text: catalog.i18nc("@label", "Adhesion")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@ -87,4 +87,4 @@ Item
watchedProperties: [ "value", "resolve", "enabled" ]
storeIndex: 0
}
}
}

View file

@ -29,21 +29,21 @@ Item
var density = parseInt(infillDensity.properties.value)
if (parseInt(infillSteps.properties.value) != 0)
{
return UM.Theme.getIcon("InfillGradual")
return UM.Theme.getIcon("gradual")
}
if (density <= 0)
{
return UM.Theme.getIcon("Infill0")
return UM.Theme.getIcon("hollow")
}
if (density < 40)
{
return UM.Theme.getIcon("Infill3")
return UM.Theme.getIcon("sparse")
}
if (density < 90)
{
return UM.Theme.getIcon("Infill2")
return UM.Theme.getIcon("dense")
}
return UM.Theme.getIcon("Solid")
return UM.Theme.getIcon("solid")
}
}
@ -61,7 +61,7 @@ Item
id: infillRowTitle
anchors.top: parent.top
anchors.left: parent.left
source: UM.Theme.getIcon("Infill1")
source: UM.Theme.getIcon("category_infill")
text: catalog.i18nc("@label", "Infill") + " (%)"
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@ -252,4 +252,4 @@ Item
watchedProperties: ["value", "enabled"]
storeIndex: 0
}
}
}

View file

@ -48,7 +48,7 @@ Item
Cura.IconWithText
{
id: profileLabel
source: UM.Theme.getIcon("PrintQuality")
source: UM.Theme.getIcon("category_layer_height")
text: catalog.i18nc("@label", "Profiles")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@ -69,7 +69,7 @@ Item
}
color: hovered ? UM.Theme.getColor("setting_control_button_hover") : UM.Theme.getColor("setting_control_button")
iconSource: UM.Theme.getIcon("ArrowReset")
iconSource: UM.Theme.getIcon("reset")
onClicked:
{
@ -198,4 +198,4 @@ Item
}
}
}
}

View file

@ -26,7 +26,7 @@ Item
anchors.top: parent.top
anchors.left: parent.left
visible: enableSupportCheckBox.visible
source: UM.Theme.getIcon("Support")
source: UM.Theme.getIcon("category_support")
text: catalog.i18nc("@label", "Support")
font: UM.Theme.getFont("medium")
width: labelColumnWidth
@ -162,7 +162,7 @@ Item
x: supportExtruderCombobox.width - width - supportExtruderCombobox.rightPadding
y: supportExtruderCombobox.topPadding + Math.round((supportExtruderCombobox.availableHeight - height) / 2)
source: UM.Theme.getIcon("ChevronSingleDown")
source: UM.Theme.getIcon("arrow_bottom")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@ -229,7 +229,7 @@ Item
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: supportExtruderCombobox.color
}
}
@ -299,7 +299,7 @@ Item
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: supportExtruderCombobox.model.getItem(index).color
}
}
@ -342,4 +342,4 @@ Item
watchedProperties: ["value"]
storeIndex: 0
}
}
}

View file

@ -102,7 +102,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
iconSource: UM.Theme.getIcon("ChevronSingleUp");
iconSource: UM.Theme.getIcon("arrow_top");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -119,7 +119,7 @@ Item
Layout.column: 0
Layout.preferredWidth: width
Layout.preferredHeight: height
iconSource: UM.Theme.getIcon("ChevronSingleLeft");
iconSource: UM.Theme.getIcon("arrow_left");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -136,7 +136,7 @@ Item
Layout.column: 2
Layout.preferredWidth: width
Layout.preferredHeight: height
iconSource: UM.Theme.getIcon("ChevronSingleRight");
iconSource: UM.Theme.getIcon("arrow_right");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -153,7 +153,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
iconSource: UM.Theme.getIcon("ChevronSingleDown");
iconSource: UM.Theme.getIcon("arrow_bottom");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -170,7 +170,7 @@ Item
Layout.column: 1
Layout.preferredWidth: width
Layout.preferredHeight: height
iconSource: UM.Theme.getIcon("House");
iconSource: UM.Theme.getIcon("home");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -200,7 +200,7 @@ Item
Button
{
iconSource: UM.Theme.getIcon("ChevronSingleUp");
iconSource: UM.Theme.getIcon("arrow_top");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -213,7 +213,7 @@ Item
Button
{
iconSource: UM.Theme.getIcon("House");
iconSource: UM.Theme.getIcon("home");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height
@ -226,7 +226,7 @@ Item
Button
{
iconSource: UM.Theme.getIcon("ChevronSingleDown");
iconSource: UM.Theme.getIcon("arrow_bottom");
style: UM.Theme.styles.monitor_button_style
width: height
height: UM.Theme.getSize("setting_control").height

View file

@ -93,11 +93,11 @@ Cura.ExpandablePopup
{
if (isGroup)
{
return UM.Theme.getIcon("PrinterTriple")
return UM.Theme.getIcon("printer_group")
}
else if (isNetworkPrinter || isCloudRegistered)
{
return UM.Theme.getIcon("Printer")
return UM.Theme.getIcon("printer_single")
}
else
{
@ -118,25 +118,7 @@ Cura.ExpandablePopup
leftMargin: UM.Theme.getSize("thick_margin").width
}
source:
{
if (connectionStatus == "printer_connected")
{
return UM.Theme.getIcon("CheckBlueBG", "low")
}
else if (connectionStatus == "printer_cloud_connected")
{
return UM.Theme.getIcon("CloudBlueBG", "low")
}
else if (connectionStatus == "printer_cloud_not_available")
{
return UM.Theme.getIcon("CloudGreyBG", "low")
}
else
{
return ""
}
}
source: UM.Theme.getIcon(connectionStatus)
width: UM.Theme.getSize("printer_status_icon").width
height: UM.Theme.getSize("printer_status_icon").height

View file

@ -93,7 +93,7 @@ Button
height: UM.Theme.getSize("standard_arrow").height
sourceSize.height: width
color: UM.Theme.getColor("setting_control_button")
source: definition.expanded ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
source: definition.expanded ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
}
}
@ -154,7 +154,7 @@ Button
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
iconSource: UM.Theme.getIcon("Sliders")
iconSource: UM.Theme.getIcon("settings")
onClicked: Cura.Actions.configureSettingVisibility.trigger(definition)
}
@ -195,7 +195,7 @@ Button
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
iconSource: UM.Theme.getIcon("Information")
iconSource: UM.Theme.getIcon("notice")
onEntered: base.showTooltip(catalog.i18nc("@label","Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."))

View file

@ -151,7 +151,7 @@ SettingItem
height: Math.round(parent.height / 2.5)
sourceSize.height: width
color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text");
source: UM.Theme.getIcon("Check")
source: UM.Theme.getIcon("check")
opacity: control.checked ? 1 : 0
Behavior on opacity { NumberAnimation { duration: 100; } }
}

View file

@ -104,7 +104,7 @@ SettingItem
x: control.width - width - control.rightPadding
y: control.topPadding + Math.round((control.availableHeight - height) / 2)
source: UM.Theme.getIcon("ChevronSingleDown")
source: UM.Theme.getIcon("arrow_bottom")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@ -171,7 +171,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: control.color
}
}
@ -240,7 +240,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: control.model.getItem(index).color
}
}

View file

@ -179,7 +179,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button")
iconSource: UM.Theme.getIcon("Link")
iconSource: UM.Theme.getIcon("link")
onEntered:
{
@ -208,7 +208,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
iconSource: UM.Theme.getIcon("ArrowReset")
iconSource: UM.Theme.getIcon("reset")
onClicked:
{
@ -324,7 +324,7 @@ Item
color: UM.Theme.getColor("setting_control_button")
hoverColor: UM.Theme.getColor("setting_control_button_hover")
iconSource: UM.Theme.getIcon("Function")
iconSource: UM.Theme.getIcon("formula")
onEntered: { hoverTimer.stop(); base.showTooltip(catalog.i18nc("@label", "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value.")) }
onExited: base.showTooltip(base.createTooltipText())

View file

@ -105,7 +105,7 @@ SettingItem
x: control.width - width - control.rightPadding
y: control.topPadding + Math.round((control.availableHeight - height) / 2)
source: UM.Theme.getIcon("ChevronSingleDown")
source: UM.Theme.getIcon("arrow_bottom")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor
@ -172,7 +172,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: control.color
}
}
@ -237,7 +237,7 @@ SettingItem
sourceSize.width: width
sourceSize.height: height
source: UM.Theme.getIcon("Extruder", "medium")
source: UM.Theme.getIcon("extruder_button")
color: control.model.getItem(index).color
}
}

View file

@ -65,7 +65,7 @@ Item
anchors.right: clearFilterButton.left
anchors.rightMargin: Math.round(UM.Theme.getSize("thick_margin").width)
placeholderText: "<img align='middle' src='"+ UM.Theme.getIcon("Magnifier") +"'>" + "<div vertical-align=bottom>" + catalog.i18nc("@label:textbox", "Search settings")
placeholderText: "<img align='middle' src='"+ UM.Theme.getIcon("search") +"'>" + "<div vertical-align=bottom>" + catalog.i18nc("@label:textbox", "Search settings")
style: TextFieldStyle
{
@ -133,7 +133,7 @@ Item
UM.SimpleButton
{
id: clearFilterButton
iconSource: UM.Theme.getIcon("Cancel")
iconSource: UM.Theme.getIcon("cross1")
visible: findingSettings
height: Math.round(parent.height * 0.4)
@ -193,7 +193,7 @@ Item
sourceSize.width: width
sourceSize.height: height
color: control.hovered ? UM.Theme.getColor("small_button_text_hover") : UM.Theme.getColor("small_button_text")
source: UM.Theme.getIcon("Hamburger")
source: UM.Theme.getIcon("menu")
}
}
label: Label {}

View file

@ -18,7 +18,7 @@ Row
ViewOrientationButton
{
iconSource: UM.Theme.getIcon("View3D")
iconSource: UM.Theme.getIcon("view_3d")
onClicked: Cura.Actions.view3DCamera.trigger()
UM.TooltipArea
@ -31,7 +31,7 @@ Row
ViewOrientationButton
{
iconSource: UM.Theme.getIcon("ViewFront")
iconSource: UM.Theme.getIcon("view_front")
onClicked: Cura.Actions.viewFrontCamera.trigger()
UM.TooltipArea
@ -44,7 +44,7 @@ Row
ViewOrientationButton
{
iconSource: UM.Theme.getIcon("ViewTop")
iconSource: UM.Theme.getIcon("view_top")
onClicked: Cura.Actions.viewTopCamera.trigger()
UM.TooltipArea
@ -57,7 +57,7 @@ Row
ViewOrientationButton
{
iconSource: UM.Theme.getIcon("ViewLeft")
iconSource: UM.Theme.getIcon("view_left")
onClicked: Cura.Actions.viewLeftSideCamera.trigger()
UM.TooltipArea
@ -70,7 +70,7 @@ Row
ViewOrientationButton
{
iconSource: UM.Theme.getIcon("ViewRight")
iconSource: UM.Theme.getIcon("view_right")
onClicked: Cura.Actions.viewRightSideCamera.trigger()
UM.TooltipArea

View file

@ -143,7 +143,7 @@ Item
sourceSize.width: width
sourceSize.height: height
color: UM.Theme.getColor("text")
source: base.currentSection == section ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleRight")
source: base.currentSection == section ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_right")
}
Label

View file

@ -229,7 +229,7 @@ Item
width: height
sourceSize.height: width
color: UM.Theme.getColor("text_link")
source: UM.Theme.getIcon("LinkExternal")
source: UM.Theme.getIcon("external_link")
}
Label

View file

@ -112,7 +112,7 @@ Item
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
source: UM.Theme.getIcon("Plugin")
source: UM.Theme.getIcon("package")
sourceSize.width: width
sourceSize.height: height
}
@ -142,7 +142,7 @@ Item
anchors.horizontalCenter: parent.horizontalCenter
fillMode: Image.PreserveAspectFit
width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
source: UM.Theme.getIcon("Spool")
source: UM.Theme.getIcon("material_spool")
sourceSize.width: width
sourceSize.height: height
}
@ -172,7 +172,7 @@ Item
anchors.horizontalCenter: communityColumn.horizontalCenter
fillMode: Image.PreserveAspectFit
width: UM.Theme.getSize("welcome_wizard_cloud_content_image").width
source: UM.Theme.getIcon("PrinterTriple", "medium")
source: UM.Theme.getIcon("group")
sourceSize.width: width
sourceSize.height: height
}

View file

@ -27,7 +27,7 @@ Cura.RoundedRectangle
cornerSide: contentShown ? Cura.RoundedRectangle.Direction.Up : Cura.RoundedRectangle.Direction.All
property string title: ""
property url rightIconSource: UM.Theme.getIcon("ChevronSingleDown")
property url rightIconSource: UM.Theme.getIcon("arrow_bottom")
// If the tab is under hovering state
property bool hovered: false

View file

@ -49,7 +49,7 @@ Item
anchors.left: parent.left
anchors.right: parent.right
height: UM.Theme.getSize("expandable_component_content_header").height
rightIconSource: contentShown ? UM.Theme.getIcon("ChevronSingleDown") : UM.Theme.getIcon("ChevronSingleLeft")
rightIconSource: contentShown ? UM.Theme.getIcon("arrow_bottom") : UM.Theme.getIcon("arrow_left")
contentShown: base.contentShown
}

View file

@ -58,7 +58,7 @@ CheckBox
height: Math.round(parent.height / 2.5)
sourceSize.height: width
color: !enabled ? UM.Theme.getColor("setting_control_disabled_text") : UM.Theme.getColor("setting_control_text")
source: UM.Theme.getIcon("Check")
source: UM.Theme.getIcon("check")
opacity: control.checked ? 1 : 0
Behavior on opacity { NumberAnimation { duration: 100; } }
}

View file

@ -62,7 +62,7 @@ ComboBox
x: control.width - width - control.rightPadding
y: control.topPadding + Math.round((control.availableHeight - height) / 2)
source: UM.Theme.getIcon("ChevronSingleDown")
source: UM.Theme.getIcon("arrow_bottom")
width: UM.Theme.getSize("standard_arrow").width
height: UM.Theme.getSize("standard_arrow").height
sourceSize.width: width + 5 * screenScaleFactor

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="78px" height="53px" viewBox="0 0 78 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.6 (67491) - http://www.bohemiancoding.com/sketch -->
<title>Group-cloud Copy</title>
<desc>Created with Sketch.</desc>
<g id="Sign-in-/Message-restyle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard" transform="translate(-162.000000, -16.000000)">
<g id="Group-cloud-Copy" transform="translate(162.000000, 16.000000)">
<path d="M71.6139989,39.7264219 C71.5196898,37.5579439 70.9711289,35.5059663 70.0601048,33.6613194 L71.6937566,33.6613194 C72.8434847,33.6613194 73.787904,32.731337 73.787904,31.5991845 L73.8289659,31.5991845 L73.8289659,6.57052798 C73.8289659,6.1257538 73.4594104,5.80228166 73.0487931,5.80228166 L58.158788,5.80228166 L58.158788,25.1687374 C57.4862997,25.0807183 56.800231,25.0352941 56.103441,25.0352941 C55.374501,25.0352941 54.6572944,25.0850068 53.9550947,25.1811929 L53.9550947,5.80228166 L53.8935021,5.80228166 L53.8935021,4.68260671 C53.7612249,4.35507342 53.4329996,4.13943248 53.0774006,4.13943248 L24.4830482,4.13943248 C23.9749094,4.13943248 23.605354,4.54882691 23.605354,5.0037096 L23.605354,33.1609482 C23.605354,34.4346197 24.6678259,35.4808499 25.9612699,35.4808499 L41.3906551,35.4808499 C40.8638727,37.0247578 40.5782993,38.67857 40.5782993,40.3983852 C40.5782993,41.0436856 40.6185041,41.6796936 40.6965701,42.3040902 L25.2683535,42.3040902 C24.7602147,42.3495785 24.252076,42.5315316 23.8825205,42.8499495 L23.605354,43.122879 C23.3281874,43.5777618 22.7738542,43.6687383 22.219521,43.6687383 L19.7250218,43.6687383 C19.5864385,43.6687383 19.4478552,43.5322734 19.4478552,43.3958088 L19.4478552,39.7264219 L5.21483793,39.7264219 C4.76315904,39.7668558 4.31148018,39.928592 3.98298644,40.2116301 L3.73661615,40.4542343 C3.49024586,40.8585745 2.99750527,40.9394424 2.50476467,40.9394424 L0.287432013,40.9394424 C0.164246864,40.9394424 0.0410617159,40.8181403 0.0410617159,40.6968382 L0.0410617159,2.5675603 C0.0410617159,2.44625825 0.164246864,2.3249562 0.287432013,2.3249562 L19.4478552,2.3249562 L19.4478552,0.50037096 C19.4478552,0.363906153 19.5864385,0.227441345 19.7250218,0.227441345 L57.8816214,0.227441345 C58.0202046,0.227441345 58.158788,0.363906153 58.158788,0.50037096 L58.158788,2.3249562 L77.3192117,2.3249562 C77.4423969,2.3249562 77.565582,2.44625825 77.565582,2.5675603 L77.565582,40.6968382 C77.565582,40.8181403 77.4423969,40.9394424 77.3192117,40.9394424 L75.101879,40.9394424 C74.6502001,40.8990083 74.1985212,40.7372724 73.8700276,40.4542343 L73.6236573,40.2116301 C73.377287,39.8072899 72.8845464,39.7264219 72.3918058,39.7264219 L71.6139989,39.7264219 Z M19.4478552,5.80228166 L4.51678875,5.80228166 C4.06510989,5.80228166 3.73661615,6.16618781 3.73661615,6.57052798 L3.73661615,31.5991845 C3.73661615,32.731337 4.68103562,33.6613194 5.83076366,33.6613194 L19.4478552,33.6613194 L19.4478552,5.80228166 Z" id="Combined-Shape" fill="#E5E5E5" fill-rule="nonzero"></path>
<g id="Group" transform="translate(43.578299, 28.035294)" fill="#3282FF">
<path d="M12.5251415,24.7888094 C5.60769686,24.7888094 1.77635684e-14,19.2396454 1.77635684e-14,12.3944047 C1.77635684e-14,5.54916401 5.60769686,-4.26325641e-14 12.5251415,-4.26325641e-14 C19.4425861,-4.26325641e-14 25.050283,5.54916401 25.050283,12.3944047 C25.050283,19.2396454 19.4425861,24.7888094 12.5251415,24.7888094 Z M17.9438152,10.4266859 C17.7896596,9.07601357 16.6334927,8.04314651 15.2460924,8.04314651 C14.8607034,8.04314651 14.5523922,8.12259783 14.244081,8.28150044 C13.5503809,7.16918208 12.3171362,6.45412027 11.0068137,6.45412027 C8.84863548,6.45412027 7.15292402,8.20204914 7.15292402,10.4266859 C7.15292402,10.4266859 7.15292402,10.4266859 7.15292402,10.5061372 C5.84260152,10.6650398 4.8405902,11.8568095 4.8405902,13.2074818 C4.8405902,14.7170567 6.0738349,15.9882777 7.53831299,15.9882777 C8.69447989,15.9882777 16.1710259,15.9882777 17.5584262,15.9882777 C19.0229043,15.9882777 20.256149,14.7170567 20.256149,13.2074818 C20.256149,11.7773582 19.2541376,10.6650398 17.9438152,10.4266859 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="78px" height="53px" viewBox="0 0 78 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.6 (67491) - http://www.bohemiancoding.com/sketch -->
<title>Group-cloud Copy</title>
<desc>Created with Sketch.</desc>
<g id="Sign-in-/Message-restyle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard" transform="translate(-162.000000, -16.000000)">
<g id="Group-cloud-Copy" transform="translate(162.000000, 16.000000)">
<path d="M71.6139989,39.7264219 C71.5196898,37.5579439 70.9711289,35.5059663 70.0601048,33.6613194 L71.6937566,33.6613194 C72.8434847,33.6613194 73.787904,32.731337 73.787904,31.5991845 L73.8289659,31.5991845 L73.8289659,6.57052798 C73.8289659,6.1257538 73.4594104,5.80228166 73.0487931,5.80228166 L58.158788,5.80228166 L58.158788,25.1687374 C57.4862997,25.0807183 56.800231,25.0352941 56.103441,25.0352941 C55.374501,25.0352941 54.6572944,25.0850068 53.9550947,25.1811929 L53.9550947,5.80228166 L53.8935021,5.80228166 L53.8935021,4.68260671 C53.7612249,4.35507342 53.4329996,4.13943248 53.0774006,4.13943248 L24.4830482,4.13943248 C23.9749094,4.13943248 23.605354,4.54882691 23.605354,5.0037096 L23.605354,33.1609482 C23.605354,34.4346197 24.6678259,35.4808499 25.9612699,35.4808499 L41.3906551,35.4808499 C40.8638727,37.0247578 40.5782993,38.67857 40.5782993,40.3983852 C40.5782993,41.0436856 40.6185041,41.6796936 40.6965701,42.3040902 L25.2683535,42.3040902 C24.7602147,42.3495785 24.252076,42.5315316 23.8825205,42.8499495 L23.605354,43.122879 C23.3281874,43.5777618 22.7738542,43.6687383 22.219521,43.6687383 L19.7250218,43.6687383 C19.5864385,43.6687383 19.4478552,43.5322734 19.4478552,43.3958088 L19.4478552,39.7264219 L5.21483793,39.7264219 C4.76315904,39.7668558 4.31148018,39.928592 3.98298644,40.2116301 L3.73661615,40.4542343 C3.49024586,40.8585745 2.99750527,40.9394424 2.50476467,40.9394424 L0.287432013,40.9394424 C0.164246864,40.9394424 0.0410617159,40.8181403 0.0410617159,40.6968382 L0.0410617159,2.5675603 C0.0410617159,2.44625825 0.164246864,2.3249562 0.287432013,2.3249562 L19.4478552,2.3249562 L19.4478552,0.50037096 C19.4478552,0.363906153 19.5864385,0.227441345 19.7250218,0.227441345 L57.8816214,0.227441345 C58.0202046,0.227441345 58.158788,0.363906153 58.158788,0.50037096 L58.158788,2.3249562 L77.3192117,2.3249562 C77.4423969,2.3249562 77.565582,2.44625825 77.565582,2.5675603 L77.565582,40.6968382 C77.565582,40.8181403 77.4423969,40.9394424 77.3192117,40.9394424 L75.101879,40.9394424 C74.6502001,40.8990083 74.1985212,40.7372724 73.8700276,40.4542343 L73.6236573,40.2116301 C73.377287,39.8072899 72.8845464,39.7264219 72.3918058,39.7264219 L71.6139989,39.7264219 Z M19.4478552,5.80228166 L4.51678875,5.80228166 C4.06510989,5.80228166 3.73661615,6.16618781 3.73661615,6.57052798 L3.73661615,31.5991845 C3.73661615,32.731337 4.68103562,33.6613194 5.83076366,33.6613194 L19.4478552,33.6613194 L19.4478552,5.80228166 Z" id="Combined-Shape" fill="#E5E5E5" fill-rule="nonzero"></path>
<g id="Group" transform="translate(43.578299, 28.035294)" fill="#3282FF">
<path d="M12.5251415,24.7888094 C5.60769686,24.7888094 1.77635684e-14,19.2396454 1.77635684e-14,12.3944047 C1.77635684e-14,5.54916401 5.60769686,-4.26325641e-14 12.5251415,-4.26325641e-14 C19.4425861,-4.26325641e-14 25.050283,5.54916401 25.050283,12.3944047 C25.050283,19.2396454 19.4425861,24.7888094 12.5251415,24.7888094 Z M17.9438152,10.4266859 C17.7896596,9.07601357 16.6334927,8.04314651 15.2460924,8.04314651 C14.8607034,8.04314651 14.5523922,8.12259783 14.244081,8.28150044 C13.5503809,7.16918208 12.3171362,6.45412027 11.0068137,6.45412027 C8.84863548,6.45412027 7.15292402,8.20204914 7.15292402,10.4266859 C7.15292402,10.4266859 7.15292402,10.4266859 7.15292402,10.5061372 C5.84260152,10.6650398 4.8405902,11.8568095 4.8405902,13.2074818 C4.8405902,14.7170567 6.0738349,15.9882777 7.53831299,15.9882777 C8.69447989,15.9882777 16.1710259,15.9882777 17.5584262,15.9882777 C19.0229043,15.9882777 20.256149,14.7170567 20.256149,13.2074818 C20.256149,11.7773582 19.2541376,10.6650398 17.9438152,10.4266859 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="78px" height="53px" viewBox="0 0 78 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 52.6 (67491) - http://www.bohemiancoding.com/sketch -->
<title>Group-cloud Copy</title>
<desc>Created with Sketch.</desc>
<g id="Sign-in-/Message-restyle" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Artboard" transform="translate(-162.000000, -16.000000)">
<g id="Group-cloud-Copy" transform="translate(162.000000, 16.000000)">
<path d="M71.6139989,39.7264219 C71.5196898,37.5579439 70.9711289,35.5059663 70.0601048,33.6613194 L71.6937566,33.6613194 C72.8434847,33.6613194 73.787904,32.731337 73.787904,31.5991845 L73.8289659,31.5991845 L73.8289659,6.57052798 C73.8289659,6.1257538 73.4594104,5.80228166 73.0487931,5.80228166 L58.158788,5.80228166 L58.158788,25.1687374 C57.4862997,25.0807183 56.800231,25.0352941 56.103441,25.0352941 C55.374501,25.0352941 54.6572944,25.0850068 53.9550947,25.1811929 L53.9550947,5.80228166 L53.8935021,5.80228166 L53.8935021,4.68260671 C53.7612249,4.35507342 53.4329996,4.13943248 53.0774006,4.13943248 L24.4830482,4.13943248 C23.9749094,4.13943248 23.605354,4.54882691 23.605354,5.0037096 L23.605354,33.1609482 C23.605354,34.4346197 24.6678259,35.4808499 25.9612699,35.4808499 L41.3906551,35.4808499 C40.8638727,37.0247578 40.5782993,38.67857 40.5782993,40.3983852 C40.5782993,41.0436856 40.6185041,41.6796936 40.6965701,42.3040902 L25.2683535,42.3040902 C24.7602147,42.3495785 24.252076,42.5315316 23.8825205,42.8499495 L23.605354,43.122879 C23.3281874,43.5777618 22.7738542,43.6687383 22.219521,43.6687383 L19.7250218,43.6687383 C19.5864385,43.6687383 19.4478552,43.5322734 19.4478552,43.3958088 L19.4478552,39.7264219 L5.21483793,39.7264219 C4.76315904,39.7668558 4.31148018,39.928592 3.98298644,40.2116301 L3.73661615,40.4542343 C3.49024586,40.8585745 2.99750527,40.9394424 2.50476467,40.9394424 L0.287432013,40.9394424 C0.164246864,40.9394424 0.0410617159,40.8181403 0.0410617159,40.6968382 L0.0410617159,2.5675603 C0.0410617159,2.44625825 0.164246864,2.3249562 0.287432013,2.3249562 L19.4478552,2.3249562 L19.4478552,0.50037096 C19.4478552,0.363906153 19.5864385,0.227441345 19.7250218,0.227441345 L57.8816214,0.227441345 C58.0202046,0.227441345 58.158788,0.363906153 58.158788,0.50037096 L58.158788,2.3249562 L77.3192117,2.3249562 C77.4423969,2.3249562 77.565582,2.44625825 77.565582,2.5675603 L77.565582,40.6968382 C77.565582,40.8181403 77.4423969,40.9394424 77.3192117,40.9394424 L75.101879,40.9394424 C74.6502001,40.8990083 74.1985212,40.7372724 73.8700276,40.4542343 L73.6236573,40.2116301 C73.377287,39.8072899 72.8845464,39.7264219 72.3918058,39.7264219 L71.6139989,39.7264219 Z M19.4478552,5.80228166 L4.51678875,5.80228166 C4.06510989,5.80228166 3.73661615,6.16618781 3.73661615,6.57052798 L3.73661615,31.5991845 C3.73661615,32.731337 4.68103562,33.6613194 5.83076366,33.6613194 L19.4478552,33.6613194 L19.4478552,5.80228166 Z" id="Combined-Shape" fill="#E5E5E5" fill-rule="nonzero"></path>
<g id="Group" transform="translate(43.578299, 28.035294)" fill="#3282FF">
<path d="M12.5251415,24.7888094 C5.60769686,24.7888094 1.77635684e-14,19.2396454 1.77635684e-14,12.3944047 C1.77635684e-14,5.54916401 5.60769686,-4.26325641e-14 12.5251415,-4.26325641e-14 C19.4425861,-4.26325641e-14 25.050283,5.54916401 25.050283,12.3944047 C25.050283,19.2396454 19.4425861,24.7888094 12.5251415,24.7888094 Z M17.9438152,10.4266859 C17.7896596,9.07601357 16.6334927,8.04314651 15.2460924,8.04314651 C14.8607034,8.04314651 14.5523922,8.12259783 14.244081,8.28150044 C13.5503809,7.16918208 12.3171362,6.45412027 11.0068137,6.45412027 C8.84863548,6.45412027 7.15292402,8.20204914 7.15292402,10.4266859 C7.15292402,10.4266859 7.15292402,10.4266859 7.15292402,10.5061372 C5.84260152,10.6650398 4.8405902,11.8568095 4.8405902,13.2074818 C4.8405902,14.7170567 6.0738349,15.9882777 7.53831299,15.9882777 C8.69447989,15.9882777 16.1710259,15.9882777 17.5584262,15.9882777 C19.0229043,15.9882777 20.256149,14.7170567 20.256149,13.2074818 C20.256149,11.7773582 19.2541376,10.6650398 17.9438152,10.4266859 Z" id="Combined-Shape"></path>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M11.07 3L3 11.071V27h15.931L27 18.93V3H11.07zm10.175 8.235h-6.071c-2.02.013-3.016 1.414-3.016 3.115 0 1.702.996 3.125 3.016 3.136h6.071v3.433h-6.071c-3.996 0-6.419-2.743-6.419-6.568 0-3.826 2.423-6.548 6.419-6.548h6.071v3.432z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 371 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
<path d="M8.4 2.7c.3-.3.7-.3 1 0 .3.3.3.7 0 1l-4 3.8c-.3.3-.7.3-1 0L.6 3.6c-.3-.3-.3-.7 0-1 .3-.3.7-.3 1 0L5 5.8l3.4-3.1z"/>
</svg>

After

Width:  |  Height:  |  Size: 197 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
<path d="M7.4 8.5c.3.3.3.7 0 1-.3.3-.7.3-1 0L2.6 5.6c-.3-.3-.3-.7 0-1L6.4.7c.3-.3.7-.3 1 0 .3.3.3.7 0 1L4.2 5.1l3.2 3.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 196 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10">
<path d="M2.6 1.7c-.3-.3-.3-.7 0-1 .3-.3.7-.3 1 0l3.8 3.9c.3.3.3.7 0 1L3.5 9.5c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1l3.1-3.4-3-3.4z"/>
</svg>

After

Width:  |  Height:  |  Size: 200 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="-415 293.3 10 10">
<path d="M-413.5 300.8c-.3.3-.7.3-1 0s-.3-.7 0-1l3.9-3.8c.3-.3.7-.3 1 0l3.9 3.8c.3.3.3.7 0 1-.3.3-.7.3-1 0l-3.3-3.2-3.5 3.2z"/>
</svg>

After

Width:  |  Height:  |  Size: 207 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<path d="M0 24.4h6v2.1H0zm0 3.5h3V30H0zM0 21h9v2.1H0zm0-7h15v2.1H0zm0 3.5h12v2.1H0zm0-7h18v2.1H0zm0-7h24v2.1H0zM0 7h21v2.1H0zm0-7h27v2.1H0z"/>
</svg>

After

Width:  |  Height:  |  Size: 215 B

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="none" stroke="black" stroke-linecap="round" stroke-linejoin="round">
<polyline points="0 6 7 9 14 6" />
<polyline points="0 8 7 11 14 8" />
<polyline points="0 10 7 13 14 10" />
<polygon points="0 3.75 7 1 14 3.75 7 6.5" fill="black" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 438 B

View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M4.97 15.713h20.001v1H4.97zm10 2.899l-2.992 5.181h2.492v3.287h1v-3.287h2.493zm0-7.401l2.993-5.181H15.47V3h-1v3.03h-2.492z"/>
<path d="M25.236 11.715l-.529-.848c-2.156 1.345-5.795 2.147-9.737 2.147-3.902 0-7.521-.791-9.683-2.115l-.522.854c2.312 1.416 6.127 2.262 10.206 2.262 4.119 0 7.957-.86 10.265-2.3z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 461 B

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M21 11l3-8H6l3 8-6 16h24zm-11.063-.352L7.443 4h15.113l-2.493 6.648-.131.352.132.352L25.559 26l-21.111-.008 5.49-14.64.13-.352z"/>
<text style="line-height:125%" x="8.428" y="19.917" transform="scale(1.05639 .94662)" font-weight="400" font-size="18.843" font-family="Sans" letter-spacing="0" word-spacing="0">
<tspan x="8.428" y="19.917" style="-inkscape-font-specification:'gargi Medium'" font-weight="500" font-family="gargi">?</tspan>
</text>
<path d="M10.34 23.666l-.76-1.186-1.496-.107 1.21-.707.076-1.444.76 1.186 1.496.107-1.21.707zm6.538-.254l1.746-1.965-.172-2.754 2 1.848 2.707-.073-1.746 1.964.172 2.754-2-1.847zm-3.901-7.059l1.646.62 1.58-.739-.62 1.646.738 1.58-1.646-.62-1.579.738.62-1.646z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 900 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M15.032 14.949c.009-4.516 2.462-8.45 6.102-10.574A12.151 12.151 0 0 0 17.6 3a12.254 12.254 0 0 0-2.598 11.963c-3.195-3.209-4.239-7.74-3.156-11.824a12.202 12.202 0 0 0-3.499 1.542c.218 4.5 2.857 8.359 6.645 10.311-4.54-.009-8.491-2.486-10.608-6.156A12.15 12.15 0 0 0 3 12.388a12.25 12.25 0 0 0 12.003 2.632c-3.217 3.205-7.764 4.248-11.856 3.148a12.152 12.152 0 0 0 1.56 3.51c4.508-.213 8.371-2.854 10.325-6.646-.008 4.534-2.479 8.482-6.142 10.601A12.13 12.13 0 0 0 12.45 27a12.258 12.258 0 0 0 2.611-11.979c3.189 3.203 4.236 7.723 3.161 11.803a12.244 12.244 0 0 0 3.496-1.57c-.233-4.481-2.868-8.316-6.643-10.263 4.511.01 8.44 2.458 10.567 6.089a12.186 12.186 0 0 0 1.357-3.543 12.255 12.255 0 0 0-11.938-2.575c3.194-3.182 7.699-4.231 11.77-3.169a12.151 12.151 0 0 0-1.553-3.485c-4.471.238-8.303 2.871-10.246 6.641z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 958 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M25.735 25.192l-5.367-14.001 2.684-6.999h-7.553v-2.5h-1v2.5h-7.55l2.683 6.999-5.367 14.001h10.234v2.5h1v-2.5h10.236zm-20.016-1l4.846-12.644.137-.357-.137-.358-2.162-5.641h6.096v19h-8.78z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 331 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path style="isolation:auto;mix-blend-mode:normal" d="M9 3l1 8-7 16h24l-7-16 1-8H9zm1.443 1h9.114l-.494 6.648-.131.352.132.352 1.172 3.127H9.766l1.171-3.127.131-.352-.13-.352L10.443 4zm3.412 4.861a1.591 1.57 0 0 0-1.591 1.569A1.591 1.57 0 0 0 13.855 12a1.591 1.57 0 0 0 1.592-1.57 1.591 1.57 0 0 0-1.592-1.569zm-.197 7.428c1.212 0 2.194.939 2.194 2.096 0 1.156-.983 2.094-2.194 2.094-1.21-.001-2.19-.939-2.191-2.094-.001-1.157.98-2.095 2.191-2.096zm-3.863 4.902a1.602 1.602 0 0 1 1.601 1.602 1.602 1.602 0 0 1-1.601 1.602 1.602 1.602 0 0 1-1.602-1.602 1.602 1.602 0 0 1 1.602-1.602z" overflow="visible"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 737 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M21 11l3-8H6l3 8-6 16h24l-6-16zm-11.063-.352L7.443 4h15.113l-2.493 6.648-.131.352.132.352 3.676 9.802-10.236-3.518 4.842-2.364-8.75-3.008.342-.911.13-.353-.131-.352zM25.557 26H4.443l4.8-12.801 6.492 2.232-4.841 2.364 13.3 4.572L25.557 26z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 383 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M27 3.013V3H3v24h24V3.013zM12.891 26.078l-8.967-8.967v-.133l9.081-9.08 9.112 9.113-9.066 9.066h-.16zM3.923 8.618l3.527 3.528-3.527 3.528V8.618zm0 9.798l3.511 3.51-3.511 3.512v-7.022zM26.077 9.87l-5.946-5.946h5.929l.017 5.946zm-7.253-5.947l3.309 3.308-4.246 4.245-4.23-4.23 3.322-3.323h1.845zm-3.151 0l-2.669 2.67-2.67-2.67h5.339zm-11.75 0h5.104l3.323 3.323-4.247 4.247-4.18-4.182V3.923zm.666 22.155l3.498-3.5 3.499 3.5H4.589zm9.765 0l3.515-3.514 3.514 3.514h-7.029zm11.723 0h-3.389l-4.166-4.166 4.246-4.248 3.309 3.309v5.105zm0-6.41l-2.655-2.656 2.655-2.656v5.312zm-3.308-3.309l-4.229-4.231 4.245-4.246 3.292 3.293v1.876l-3.308 3.308z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 779 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M3 24.992h9v2H3zM3 16.5h18v4H3zM3 3.007h24v9H3z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 192 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 19">
<path d="M0 0h19v.905H0V0zm0 18.095h1.738l1.726-.905H15.6l1.698.905H19V19h-1.702l-1.699-.905H3.463l-1.725.895L0 19v-.905zM18.136.905H19v17.19h-.864V.905zM0 .905h.864v17.19H0V.905zm2.59 1.81h13.82V15.38H2.59V2.714zm.865.904h12.09v10.857H3.455V3.62zm4.318 0h3.454v2.714H7.773V3.62zm-2.591 9.952h8.636v.905H5.182v-.905zm3.454-7.238h1.728v.905H8.636v-.905z" fill-rule="evenodd"/>
</svg>

After

Width:  |  Height:  |  Size: 448 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M2.995 1H5.67v24H2.995zm21.33 0H27v24h-2.675zM8.992 3.284c-.368 0-.669.224-.669.5v18.433c0 .276.3.5.669.5.369 0 .669-.224.669-.5V3.784c0-.276-.299-.5-.669-.5m4.003 0c-.368 0-.669.224-.669.5v18.433c0 .276.3.5.669.5.371 0 .669-.224.669-.5V3.784c0-.276-.298-.5-.669-.5m4.004 0c-.371 0-.669.224-.669.5v24.451c0 .277.298.5.669.5.368 0 .669-.223.669-.5V3.784c0-.276-.301-.5-.669-.5m4.003 0c-.368 0-.669.224-.669.5v18.433c0 .276.3.5.669.5.37 0 .669-.224.669-.5V3.784c-.001-.276-.3-.5-.669-.5"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 629 B

View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M21 11l3-8H6l3 8-6 16h24zm-11.063-.352L7.443 4h15.113l-2.493 6.648-.131.352.132.352L25.559 26l-21.111-.008 5.49-14.64.13-.352z"/>
<path d="M18 11l3-8H9l3 8-6 16h18zm-5.063-.352L10.443 4h9.113l-2.493 6.648-.131.352.132.352L22.559 26l-15.111-.008 5.49-14.64.13-.352z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 421 B

View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M20.337 11l3-8H6.663l3 8-6 16h22.674zm-9.737-.352L8.106 4h13.787L19.4 10.648l-.13.352.131.352 5.496 14.654-19.797.006 5.5-14.66.13-.352z"/>
<path d="M25.4 3l-3 8 6 16h1.062l-6-16 3-8zM3.538 3l3 8-6 16H1.6l6-16-3-8H3.538z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 377 B

View file

@ -0,0 +1,20 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M26.975,14.499c-0.075-1.82-0.548-3.536-1.346-5.06l0.014-0.008l-0.5-0.865l-0.019,0.011
c-0.947-1.49-2.211-2.755-3.701-3.702l0.011-0.019l-0.867-0.5L20.559,4.37c-1.522-0.798-3.238-1.27-5.059-1.345V3h-1v0.025
c-1.82,0.075-3.536,0.547-5.06,1.346L9.433,4.357l-0.865,0.5l0.01,0.018c-1.49,0.947-2.754,2.212-3.701,3.702L4.857,8.566
l-0.5,0.865l0.014,0.008c-0.798,1.523-1.27,3.239-1.346,5.06H3v1h0.025c0.075,1.82,0.547,3.537,1.345,5.06l-0.013,0.008
l0.5,0.865l0.017-0.01C7.003,24.771,10.737,27,15,27s7.996-2.229,10.125-5.577l0.018,0.01l0.5-0.867l-0.013-0.008
c0.798-1.522,1.27-3.238,1.345-5.059H27v-1H26.975z M24.759,20.056l-0.503,0.865C22.298,23.971,18.885,26,15,26
c-3.886,0-7.299-2.03-9.256-5.08l-0.503-0.863c-0.716-1.376-1.142-2.921-1.216-4.558h2.976v-1H4.025
c0.074-1.637,0.501-3.182,1.217-4.557l2.58,1.489l0.5-0.865L5.745,9.078c0.858-1.337,1.996-2.476,3.334-3.334l1.488,2.577
l0.865-0.5l-1.489-2.58c1.375-0.715,2.92-1.142,4.557-1.216V7h1V4.025c1.637,0.074,3.181,0.5,4.556,1.216L18.568,7.82l0.867,0.5
l1.485-2.576c1.338,0.859,2.477,1.997,3.335,3.335l-2.575,1.488l0.5,0.865l2.577-1.49c0.716,1.376,1.143,2.92,1.217,4.557
l-2.973,0.002v1l2.973-0.002C25.9,17.136,25.475,18.681,24.759,20.056z"/>
<path d="M18.365,9.278l-4.186,4.606c-0.207,0.136-0.373,0.323-0.492,0.542l-0.001,0.001l0,0
c-0.115,0.213-0.186,0.452-0.186,0.711c0,0.828,0.672,1.5,1.5,1.5c0.535,0,1.001-0.282,1.267-0.704h0.001l0.001-0.003
c0.13-0.207,0.208-0.448,0.223-0.707L18.365,9.278z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1,8 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M12.889 22.056v-4.945H7.945v-4.944H3V27h14.832v-4.944z"/>
<path d="M22.415 4.064l-2.162 5.641-.138.358.138.358 4.846 12.643H6.537l4.847-12.643.138-.358-.138-.358-2.163-5.641h13.194m1.454-1H7.767l2.684 6.999-5.368 14.002h21.47l-5.366-14.001 2.682-7z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 405 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<g stroke-width="1" stroke="black">
<polygon fill="none" points="6.5,3.5 9.5,11 3.5,26.5 26.5,26.5 20.5,11 23.5,3.5" />
<line x1="7.5" y1="6" x2="22.5" y2="6" />
<line x1="4.5" y1="24" x2="25.5" y2="24" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 310 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M2.994 26h24v1h-24zm20-9.863h-6.5v-1.001h5.5v-2.242h1zm-16 2.621h16v1h-16zm-2 3.621h20v1h-20zM22.5 1.571s.012-.008 0 0h-6.055v3.744s2.982 4.857 5.793 5.124c.041.004.08.004.119.01.043.002.084.006.125.006h.018c.047 0 .086-.004.129-.006.033-.006.082-.006.117-.01 2.812-.267 5.797-5.124 5.797-5.124V1.571H22.5"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 450 B

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30">
<switch>
<g>
<path d="M2.994 26h24v1h-24zm20-9.863h-6.5v-1.001h5.5v-2.242h1zm-16 2.621h16v1h-16zm-2 3.621h20v1h-20zM22.5 1.571s.012-.008 0 0h-6.055v3.744s2.982 4.857 5.793 5.124c.041.004.08.004.119.01.043.002.084.006.125.006h.018c.047 0 .086-.004.129-.006.033-.006.082-.006.117-.01 2.812-.267 5.797-5.124 5.797-5.124V1.571H22.5"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 450 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 415.582 415.582">
<path d="M411.47 96.426l-34.319-34.32c-5.482-5.482-14.344-5.455-19.853 0l-204.95 202.952-96.066-90.064c-5.48-5.482-14.37-5.482-19.851 0l-32.319 32.32c-5.482 5.481-5.482 14.37 0 19.852l138.311 138.31a13.99 13.99 0 0 0 9.926 4.112c3.593 0 7.186-1.37 9.926-4.112L411.47 116.277a14.034 14.034 0 0 0 0-19.851z"/>
</svg>

After

Width:  |  Height:  |  Size: 390 B

View file

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
<title>checked</title>
<desc>Created with Sketch.</desc>
<g id="checked" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(1.000000, 1.000000)" fill="#000000" fill-rule="nonzero">
<path d="M7,0 C3.13400675,0 1.55431223e-15,3.13400675 1.55431223e-15,7 C1.55431223e-15,10.8659933 3.13400675,14 7,14 C10.8659933,14 14,10.8659933 14,7 C14,5.14348457 13.2625021,3.36300718 11.9497474,2.05025253 C10.6369928,0.737497883 8.85651541,0 7,0 Z M7,12.6 C3.9072054,12.6 1.4,10.0927946 1.4,7 C1.4,3.9072054 3.9072054,1.4 7,1.4 C10.0927946,1.4 12.6,3.9072054 12.6,7 C12.6,8.48521234 12.0100017,9.90959428 10.959798,10.959798 C9.90959428,12.0100017 8.48521234,12.6 7,12.6 Z" id="Shape"></path>
<polygon id="Path" points="10.01 4.41 6.3 8.12 3.99 5.81 3.01 6.79 6.3 10.08 10.99 5.39"></polygon>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

Before

Width:  |  Height:  |  Size: 163 B

After

Width:  |  Height:  |  Size: 163 B

Before After
Before After

View file

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="612px" height="612px" viewBox="0 0 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
<g>
<g>
<path d="M587.572,186.881c-32.266-75.225-87.096-129.934-162.949-162.285C386.711,8.427,346.992,0.168,305.497,0.168
c-41.488,0-80.914,8.181-118.784,24.428C111.488,56.861,56.415,111.535,24.092,186.881C7.895,224.629,0,264.176,0,305.664
c0,41.496,7.895,81.371,24.092,119.127c32.323,75.346,87.403,130.348,162.621,162.621c37.877,16.247,77.295,24.42,118.784,24.42
c41.489,0,81.214-8.259,119.12-24.42c75.853-32.352,130.683-87.403,162.956-162.621C603.819,386.914,612,347.16,612,305.664
C612,264.176,603.826,224.757,587.572,186.881z M538.724,440.853c-24.021,41.195-56.929,73.876-98.375,98.039
c-41.195,24.021-86.332,36.135-134.845,36.135c-36.47,0-71.27-7.024-104.4-21.415c-33.129-14.384-61.733-33.294-85.661-57.215
c-23.928-23.928-42.973-52.811-57.214-85.997c-14.199-33.065-21.08-68.258-21.08-104.735c0-48.52,11.921-93.428,35.807-134.509
c23.971-41.231,56.886-73.947,98.039-98.04c41.146-24.092,85.99-36.142,134.502-36.142c48.52,0,93.649,12.121,134.845,36.142
c41.446,24.164,74.283,56.879,98.375,98.039c24.092,41.153,36.135,85.99,36.135,134.509
C574.852,354.185,562.888,399.399,538.724,440.853z"/>
<path d="M324.906,302.988V129.659c0-10.372-9.037-18.738-19.41-18.738c-9.701,0-18.403,8.366-18.403,18.738v176.005
c0,0.336,0.671,1.678,0.671,2.678c-0.671,6.024,1.007,11.043,5.019,15.062l100.053,100.046c6.695,6.695,19.073,6.695,25.763,0
c7.694-7.695,7.188-18.86,0-26.099L324.906,302.988z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13">
<switch>
<g>
<path d="M13 2.23L8.73 6.5 13 10.77l-2.135 2.134-4.269-4.269-4.27 4.269L.191 10.77l4.27-4.27-4.27-4.27L2.326.096l4.27 4.269L10.865.096z"/>
</g>
</switch>
</svg>

After

Width:  |  Height:  |  Size: 271 B

View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
<path fill="none" d="M0 0h20v20H0z"/>
<path d="M0 0v20h20V0H0zm15.5 13.7l-1.8 1.8-3.7-3.6-3.7 3.7-1.8-1.8L8.1 10 4.4 6.4l1.8-1.8L10 8.2l3.7-3.7 1.8 1.8-3.7 3.7 3.7 3.7z"/>
</svg>

After

Width:  |  Height:  |  Size: 248 B

View file

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<g>
<polygon points="16.9,8.4 15.5,7 13,9.5 13,2 11,2 11,9.5 8.5,7 7.1,8.4 12,13.4 "/>
<path d="M20,14v-4h-2v5H6v-5H4v4c0,1.7,1.3,3,3,3h10C18.7,17,20,15.7,20,14z"/>
<circle cx="4" cy="20" r="1"/>
<circle cx="8" cy="20" r="1"/>
<circle cx="12" cy="20" r="1"/>
<circle cx="16" cy="20" r="1"/>
<circle cx="20" cy="20" r="1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 598 B

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path style="fill:#000E1A;" d="M21,12c0,5-4,9-9,9c-2.2,0-4.4-0.8-6-2.3V22H4v-7h7v2H7.1c1.3,1.3,3,2,4.9,2c3.9,0,7-3.1,7-7H21z
M12,5c1.9,0,3.6,0.7,4.9,2H13v2h7V2h-2v3.3C16.4,3.8,14.2,3,12,3c-5,0-9,4-9,9h2C5,8.1,8.1,5,12,5z"/>
</svg>

Before

Width:  |  Height:  |  Size: 488 B

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="17.7,8.3 16.3,9.7 17.6,11 13,11 13,6.4 14.3,7.7 15.7,6.3 12,2.6 8.3,6.3 9.7,7.7 11,6.4
11,11 6.4,11 7.7,9.7 6.3,8.3 2.6,12 6.3,15.7 7.7,14.3 6.4,13 11,13 11,17.6 9.7,16.3 8.3,17.7 12,21.4 15.7,17.7 14.3,16.3
13,17.6 13,13 17.6,13 16.3,14.3 17.7,15.7 21.4,12 "/>
</svg>

Before

Width:  |  Height:  |  Size: 567 B

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path d="M6,14c0,3.3,2.7,6,6,6s6-2.7,6-6s-2.7-6-6-6H8.4l2.3,2.3l-1.4,1.4L4.6,7l4.7-4.7l1.4,1.4L8.4,6H12c4.4,0,8,3.6,8,8
s-3.6,8-8,8s-8-3.6-8-8H6z"/>
</svg>

Before

Width:  |  Height:  |  Size: 412 B

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path d="M20.5,3.5c-2.8-2.8-5.8-1.2-7.1,0l-9.9,9.9c-1.2,1.2-2.8,4.3,0,7.1c2.8,2.8,5.8,1.2,7.1,0l9.9-9.9
C21.7,9.4,23.3,6.3,20.5,3.5z M9.2,19.1c-0.4,0.3-2.3,2-4.2,0c-2-2-0.3-3.9,0-4.2l1.4-1.4l4.2,4.2L9.2,19.1z M12,16.2L7.8,12L12,7.8
l4.2,4.2L12,16.2z M19.1,9.2l-1.4,1.4l-4.2-4.2l1.4-1.4c0.4-0.4,2.3-2,4.2,0C21.1,6.9,19.4,8.8,19.1,9.2z"/>
</svg>

Before

Width:  |  Height:  |  Size: 601 B

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path d="M17.4,20.8l-5.4-4l-5.4,4c-0.8,0.6-1.9-0.2-1.5-1.1l2.2-6.3L2.4,9.8C1.6,9.2,2,8,3,8h6.2l1.9-5.3c0.3-0.9,1.6-0.9,1.9,0
L14.8,8H21c1,0,1.4,1.2,0.6,1.8l-4.9,3.6l2.2,6.3C19.3,20.6,18.2,21.4,17.4,20.8z M13.7,15.6l2.3,1.7L15,14.6L13.7,15.6z M9,14.6
L8,17.3l2.3-1.7L9,14.6z M9.7,12.6l2.3,1.7l2.3-1.7L13.4,10h-2.8L9.7,12.6z M15.5,10l0.5,1.4l1.9-1.4H15.5z M6.1,10L8,11.4L8.5,10
H6.1z M11.3,8h1.4L12,6L11.3,8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 675 B

View file

@ -1 +0,0 @@
<svg id="Artwork" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.cls-1{fill:#231f20;}</style></defs><path class="cls-1" d="M5.05,14.3v6.75h-2V12.27c.09.11.19.22.29.32Z"/><path class="cls-1" d="M9.05,17.8v3.25h-2V16.3l.46.46A4.82,4.82,0,0,0,9.05,17.8Z"/><path class="cls-1" d="M13.05,17.8v3.25h-2V18.22A4.85,4.85,0,0,0,13.05,17.8Z"/><path d="M21.47,7.64l-2-2a2,2,0,0,0-2.82,0l-2,2a2,2,0,0,0,0,2.82l2,2a2,2,0,0,0,2.82,0l2-2A2,2,0,0,0,21.47,7.64Zm-3.42,3.41-2-2,2-2,2,2Z"/><polygon points="21 16.42 19.58 15 18 16.58 16.42 15 15 16.42 16.58 18 15 19.58 16.42 21 18 19.42 19.58 21 21 19.58 19.42 18 21 16.42"/><path d="M13.47,12.13l1.41,1.41-1.76,1.75a3,3,0,0,1-4.24,0L4.71,11.12a3,3,0,0,1,0-4.24L8.88,2.71a3,3,0,0,1,4.24,0l1.81,1.81-.41.41-.59.59-.41.41L11,3.41,5.41,9,11,14.59Z"/><path d="M13.52,5.93l.41-.41"/></svg>

Before

Width:  |  Height:  |  Size: 837 B

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="19.7,5.7 18.3,4.3 12,10.6 5.7,4.3 4.3,5.7 10.6,12 4.3,18.3 5.7,19.7 12,13.4 18.3,19.7
19.7,18.3 13.4,12 "/>
</svg>

Before

Width:  |  Height:  |  Size: 411 B

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<g>
<path d="M18,21H6c-1.7,0-3-1.3-3-3V6c0-1.7,1.3-3,3-3h12c1.7,0,3,1.3,3,3v12C21,19.7,19.7,21,18,21z M5,19h14V5H5V19z"/>
<polygon points="13.4,12 17.7,16.3 16.3,17.7 12,13.4 7.7,17.7 6.3,16.3 10.6,12 6.3,7.7 7.7,6.3 12,10.6 16.3,6.3 17.7,7.7 "/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 517 B

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path style="fill:#000E1A;" d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.4,0-8-3.6-8-8s3.6-8,8-8
s8,3.6,8,8S16.4,20,12,20z M16.7,8.7L13.4,12l3.3,3.3l-1.4,1.4L12,13.4l-3.3,3.3l-1.4-1.4l3.3-3.3L7.3,8.7l1.4-1.4l3.3,3.3l3.3-3.3
L16.7,8.7z"/>
</svg>

Before

Width:  |  Height:  |  Size: 532 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="9.1,19.4 1.9,12.2 3.3,10.8 9.1,16.6 19.4,6.3 20.8,7.7 "/>
</svg>

Before

Width:  |  Height:  |  Size: 359 B

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<g>
<path style="fill:#000E1A;" d="M12,2C6.5,2,2,6.5,2,12c0,5.5,4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M12,20
c-4.4,0-8-3.6-8-8c0-4.4,3.6-8,8-8s8,3.6,8,8C20,16.4,16.4,20,12,20z"/>
<polygon style="fill:#000E1A;" points="16.3,8.3 11,13.6 7.7,10.3 6.3,11.7 11,16.4 17.7,9.7 "/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 554 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="3.3,8.3 4.7,6.9 12,14.2 19.3,6.9 20.7,8.3 12,17 "/>
</svg>

Before

Width:  |  Height:  |  Size: 353 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="15.6,3.3 17,4.7 9.7,12 17,19.3 15.6,20.7 6.9,12 "/>
</svg>

Before

Width:  |  Height:  |  Size: 353 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="8.3,20.7 6.9,19.3 14.2,12 6.9,4.7 8.3,3.3 17,12 "/>
</svg>

Before

Width:  |  Height:  |  Size: 353 B

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<polygon style="fill:#000E1A;" points="20.7,15.7 19.3,17.1 12,9.8 4.7,17.1 3.3,15.7 12,7 "/>
</svg>

Before

Width:  |  Height:  |  Size: 355 B

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path style="fill:#000E1A;" d="M12,2C6.5,2,2,6.5,2,12c0,5.5,4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M12,20
c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S16.4,20,12,20z M17,13h-6V6h2v5h4V13z"/>
</svg>

Before

Width:  |  Height:  |  Size: 454 B

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<path style="fill:#000E1A;" d="M16,19H8c-2.8,0-5-2.2-5-5c0-2.4,1.8-4.5,4.1-4.9C7.5,6.8,9.6,5,12,5s4.5,1.8,4.9,4.1
C19.2,9.5,21,11.6,21,14C21,16.8,18.8,19,16,19z M8,11c-1.7,0-3,1.3-3,3s1.3,3,3,3h8c1.7,0,3-1.3,3-3s-1.3-3-3-3h-1v-1
c0-1.7-1.3-3-3-3c-1.4,0-2.5,0.9-2.9,2.1C11.3,9.6,13,11.6,13,14h-2C11,12.3,9.7,11,8,11z"/>
</svg>

Before

Width:  |  Height:  |  Size: 583 B

View file

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<g>
<path d="M12,9.5V5H4v4.5l4,2.7L12,9.5z M6,7h4v1.5L8,9.8L6,8.5V7z"/>
<path d="M14,5v4.5l4,2.7l4-2.7V5H14z M20,8.5l-2,1.3l-2-1.3V7h4V8.5z"/>
<path d="M7,16c0,0.8-0.5,1-1,1H3v2h3c1.2,0,3-0.8,3-3v-2H7V16z"/>
<path d="M17,16c0,0.8-0.5,1-1,1h-5v2h5c1.2,0,3-0.8,3-3v-2h-2V16z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 547 B

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<svg version="1.1" id="Artwork" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
<g>
<path d="M10,3v1v6l-1.3,2.9l1.2-2.7L10,10V9.8V4V3 M14,10l0.1,0.2l1.2,2.7L14,10L14,10 M17.4,21H6.6H17.4 M16,2H8v2h1v5.8l-4.3,9.4
C4.1,20.5,5.1,22,6.6,22h10.9c1.5,0,2.4-1.5,1.8-2.8L15,9.8V4h1V2L16,2z M6.6,20l4.4-9.8V4h2v6.2l4.4,9.8H6.6L6.6,20z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 519 B

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