Hello world! First commit.
|
@ -0,0 +1,14 @@
|
|||
#include "assetlist.h"
|
||||
#include "ui_assetlist.h"
|
||||
|
||||
AssetList::AssetList(QWidget *parent) :
|
||||
QDockWidget(parent),
|
||||
ui(new Ui::AssetList)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
AssetList::~AssetList()
|
||||
{
|
||||
delete ui;
|
||||
}
|
|
@ -0,0 +1,22 @@
|
|||
#ifndef ASSETLIST_H
|
||||
#define ASSETLIST_H
|
||||
|
||||
#include <QDockWidget>
|
||||
|
||||
namespace Ui {
|
||||
class AssetList;
|
||||
}
|
||||
|
||||
class AssetList : public QDockWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit AssetList(QWidget *parent = 0);
|
||||
~AssetList();
|
||||
|
||||
private:
|
||||
Ui::AssetList *ui;
|
||||
};
|
||||
|
||||
#endif // ASSETLIST_H
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>AssetList</class>
|
||||
<widget class="QDockWidget" name="AssetList">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>183</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string/>
|
||||
</property>
|
||||
<widget class="QWidget" name="dockWidgetContents">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<property name="bottomMargin">
|
||||
<number>2</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QGroupBox" name="groupBox">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTreeWidget" name="treeWidget">
|
||||
<column>
|
||||
<property name="text">
|
||||
<string notr="true">1</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
|
@ -0,0 +1,18 @@
|
|||
<RCC>
|
||||
<qresource prefix="/icons">
|
||||
<file>data/icons/themify-icons/SVG/save.svg</file>
|
||||
<file>data/icons/themify-icons/SVG/back-left.svg</file>
|
||||
<file>data/icons/themify-icons/SVG/back-right.svg</file>
|
||||
<file>data/icons/feather/save.svg</file>
|
||||
<file>data/icons/feather/corner-left-down.svg</file>
|
||||
<file>data/icons/feather/corner-right-down.svg</file>
|
||||
<file>data/icons/feather/rotate-ccw.svg</file>
|
||||
<file>data/icons/feather/rotate-cw.svg</file>
|
||||
<file>data/icons/alexandru.stoica/save_item [#1409].svg</file>
|
||||
<file>data/icons/alexandru.stoica/moon [#1248].svg</file>
|
||||
<file>data/icons/alexandru.stoica/sun_star [#1268].svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="/css">
|
||||
<file>data/css/style.qss</file>
|
||||
</qresource>
|
||||
</RCC>
|
|
@ -0,0 +1,40 @@
|
|||
#-------------------------------------------------
|
||||
#
|
||||
# Project created by QtCreator 2018-07-06T13:51:14
|
||||
#
|
||||
#-------------------------------------------------
|
||||
|
||||
QT += core gui
|
||||
|
||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||
|
||||
TARGET = data
|
||||
TEMPLATE = app
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||
# depend on your compiler). Please consult the documentation of the
|
||||
# deprecated API in order to know how to port your code away from it.
|
||||
DEFINES += QT_DEPRECATED_WARNINGS
|
||||
|
||||
# You can also make your code fail to compile if you use deprecated APIs.
|
||||
# In order to do so, uncomment the following line.
|
||||
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
||||
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
||||
|
||||
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
mainwindow.cpp \
|
||||
assetlist.cpp
|
||||
|
||||
HEADERS += \
|
||||
mainwindow.h \
|
||||
assetlist.h
|
||||
|
||||
FORMS += \
|
||||
mainwindow.ui \
|
||||
assetlist.ui
|
||||
|
||||
RESOURCES += \
|
||||
assets.qrc
|
|
@ -0,0 +1,318 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE QtCreatorProject>
|
||||
<!-- Written by QtCreator 4.6.2, 2018-08-31T13:46:59. -->
|
||||
<qtcreator>
|
||||
<data>
|
||||
<variable>EnvironmentId</variable>
|
||||
<value type="QByteArray">{c5ebc06e-8dc0-41fd-96ec-94866afcc739}</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
||||
<value type="int">0</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.EditorSettings</variable>
|
||||
<valuemap type="QVariantMap">
|
||||
<value type="bool" key="EditorConfiguration.AutoIndent">true</value>
|
||||
<value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
|
||||
<value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
|
||||
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
|
||||
<value type="QString" key="language">Cpp</value>
|
||||
<valuemap type="QVariantMap" key="value">
|
||||
<value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
|
||||
</valuemap>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
|
||||
<value type="QString" key="language">QmlJS</value>
|
||||
<valuemap type="QVariantMap" key="value">
|
||||
<value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
|
||||
</valuemap>
|
||||
</valuemap>
|
||||
<value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
|
||||
<value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
|
||||
<value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
|
||||
<value type="int" key="EditorConfiguration.IndentSize">4</value>
|
||||
<value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
|
||||
<value type="int" key="EditorConfiguration.MarginColumn">80</value>
|
||||
<value type="bool" key="EditorConfiguration.MouseHiding">true</value>
|
||||
<value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
|
||||
<value type="int" key="EditorConfiguration.PaddingMode">1</value>
|
||||
<value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
|
||||
<value type="bool" key="EditorConfiguration.ShowMargin">false</value>
|
||||
<value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
|
||||
<value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
|
||||
<value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
|
||||
<value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
|
||||
<value type="int" key="EditorConfiguration.TabSize">8</value>
|
||||
<value type="bool" key="EditorConfiguration.UseGlobal">true</value>
|
||||
<value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
|
||||
<value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
|
||||
<value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
|
||||
<value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
|
||||
<value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
|
||||
</valuemap>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.PluginSettings</variable>
|
||||
<valuemap type="QVariantMap"/>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.Target.0</variable>
|
||||
<valuemap type="QVariantMap">
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{5472a58d-e411-4ea8-a2d1-6e4398948268}</value>
|
||||
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
||||
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
||||
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:/Users/bernst/Documents/build-data-Desktop-Debug</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">true</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">false</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Debug</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">2</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:/Users/bernst/Documents/build-data-Desktop-Release</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">false</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Release</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
||||
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">C:/Users/bernst/Documents/build-data-Desktop-Profile</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">qmake</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QtProjectManager.QMakeBuildStep</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.LinkQmlDebuggingLibrary">true</value>
|
||||
<value type="QString" key="QtProjectManager.QMakeBuildStep.QMakeArguments"></value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.QMakeForced">false</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.SeparateDebugInfo">true</value>
|
||||
<value type="bool" key="QtProjectManager.QMakeBuildStep.UseQtQuickCompiler">true</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">false</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
||||
</valuemap>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
||||
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Make</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.MakeStep</value>
|
||||
<valuelist type="QVariantList" key="Qt4ProjectManager.MakeStep.AutomaticallyAddedMakeArguments"/>
|
||||
<value type="bool" key="Qt4ProjectManager.MakeStep.Clean">true</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeArguments">clean</value>
|
||||
<value type="QString" key="Qt4ProjectManager.MakeStep.MakeCommand"></value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
||||
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
||||
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Profile</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Profile</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4BuildConfiguration</value>
|
||||
<value type="int" key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration">0</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild">true</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">3</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
||||
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy Configuration</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
|
||||
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
|
||||
<value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
|
||||
<value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
|
||||
<value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
|
||||
<value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
|
||||
<value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
|
||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
|
||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
|
||||
<value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
|
||||
<value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
|
||||
<value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
|
||||
<value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
|
||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
|
||||
<value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
|
||||
<value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
|
||||
<value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
|
||||
<valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
|
||||
<value type="int">0</value>
|
||||
<value type="int">1</value>
|
||||
<value type="int">2</value>
|
||||
<value type="int">3</value>
|
||||
<value type="int">4</value>
|
||||
<value type="int">5</value>
|
||||
<value type="int">6</value>
|
||||
<value type="int">7</value>
|
||||
<value type="int">8</value>
|
||||
<value type="int">9</value>
|
||||
<value type="int">10</value>
|
||||
<value type="int">11</value>
|
||||
<value type="int">12</value>
|
||||
<value type="int">13</value>
|
||||
<value type="int">14</value>
|
||||
</valuelist>
|
||||
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
|
||||
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">data</value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
||||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">Qt4ProjectManager.Qt4RunConfiguration:C:/Users/bernst/Documents/data/data.pro</value>
|
||||
<value type="bool" key="QmakeProjectManager.QmakeRunConfiguration.UseLibrarySearchPath">true</value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.CommandLineArguments"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.ProFile">data.pro</value>
|
||||
<value type="bool" key="Qt4ProjectManager.Qt4RunConfiguration.UseDyldImageSuffix">false</value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory"></value>
|
||||
<value type="QString" key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory.default"></value>
|
||||
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
|
||||
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
|
||||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
||||
<value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
|
||||
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
|
||||
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
||||
</valuemap>
|
||||
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
||||
</valuemap>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.TargetCount</variable>
|
||||
<value type="int">1</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>ProjectExplorer.Project.Updater.FileVersion</variable>
|
||||
<value type="int">18</value>
|
||||
</data>
|
||||
<data>
|
||||
<variable>Version</variable>
|
||||
<value type="int">18</value>
|
||||
</data>
|
||||
</qtcreator>
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>3d_modelling [#819]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-100.000000, -4559.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M46.938,4411.948 L53,4403.804 L53,4415.5 L46.938,4411.948 Z M61.063,4411.948 L55,4415.5 L55,4403.804 L61.063,4411.948 Z M55.001,4400.454 L54,4399 L53,4400.454 L44,4412.545 L53,4417.818 L54,4418.357 L55.001,4417.818 L64,4412.545 L55.001,4400.454 Z" id="3d_modelling-[#819]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 994 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>3d_modelling_round [#820]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-60.000000, -4559.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M6.70247571,4412.07175 L12.0994757,4404.08575 C12.3864757,4403.69975 13.0004757,4403.90275 13.0004757,4404.38375 L13.0004757,4415.43475 C13.0004757,4415.82075 12.5804757,4416.06175 12.2474757,4415.86675 L6.85047571,4412.80175 C6.59347571,4412.65075 6.52447571,4412.31075 6.70247571,4412.07175 L6.70247571,4412.07175 Z M21.1494757,4412.80175 L15.7534757,4415.86675 C15.4194757,4416.06175 15.0004757,4415.82075 15.0004757,4415.43475 L15.0004757,4404.38375 C15.0004757,4403.90275 15.6134757,4403.69975 15.9014757,4404.08575 L21.2984757,4412.07175 C21.4754757,4412.31075 21.4064757,4412.65075 21.1494757,4412.80175 L21.1494757,4412.80175 Z M15.0004757,4399.52575 L15.0004757,4399.52575 C14.5184757,4398.82475 13.4824757,4398.82475 13.0004757,4399.52575 L13.0004757,4399.52575 L4.24047571,4412.02975 C3.80847571,4412.60975 3.97647571,4413.43575 4.60047571,4413.80175 L13.0004757,4418.62575 L13.4234757,4418.85375 C13.7834757,4419.04775 14.2164757,4419.04775 14.5764757,4418.85375 L15.0004757,4418.62575 L23.4004757,4413.80175 C24.0234757,4413.43575 24.1914757,4412.60975 23.7604757,4412.02975 L15.0004757,4399.52575 Z" id="3d_modelling_round-[#820]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="17px" height="20px" viewBox="0 0 17 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>9gag [#152]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-141.000000, -7519.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M90.0540541,7365.004 C91.202215,7365.695 92.3620818,7366.367 93.5131692,7367.053 C94.6720606,7366.371 95.8299765,7365.688 96.9917943,7365.008 C95.8299765,7364.331 94.6740116,7363.645 93.5131692,7362.966 C92.3591553,7363.643 91.2109944,7364.331 90.0540541,7365.004 M85.0292649,7364.001 C87.857233,7362.331 90.6852011,7360.664 93.5151202,7359 C96.3430883,7360.665 99.1749584,7362.325 101.999025,7363.996 C101.995123,7367.335 101.994147,7370.674 102,7374.014 C99.1769094,7375.688 96.3411373,7377.336 93.5131692,7379 C90.6773971,7377.322 87.8269926,7375.671 85,7373.979 C86.1276754,7373.32 87.2543754,7372.66 88.3849773,7372.006 C90.0940495,7373.016 91.8079991,7374.02 93.5131692,7375.037 C95.2154129,7374.012 96.9391175,7373.028 98.6345326,7371.993 C98.6199002,7370.657 98.6335571,7369.321 98.6267286,7367.985 C96.924485,7368.998 95.2183394,7370.008 93.5131692,7371.017 C90.6832501,7369.366 87.861135,7367.698 85.0302404,7366.045 C85.0302404,7365.363 85.0312159,7364.682 85.0292649,7364.001" id="9gag-[#152]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>HD [#941]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-420.000000, -3999.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M367,3845 L367,3853 L369,3853 L369,3850 L371,3850 L371,3853 L373,3853 L373,3845 L371,3845 L371,3848 L369,3848 L369,3845 L367,3845 Z M379,3847.5 C379,3847.224 378.776,3847 378.5,3847 L377,3847 L377,3851 L378.5,3851 C378.775,3851 379,3850.775 379,3850.5 L379,3847.5 Z M379.395,3853 L375,3853 L375,3845 L379.395,3845 C380.282,3845 381,3845.719 381,3846.605 L381,3851.395 C381,3852.281 380.282,3853 379.395,3853 L379.395,3853 Z M364,3839 L364,3843 L366,3843 L366,3841 L382,3841 L382,3843 L384,3843 L384,3839 L364,3839 Z M382,3855 L384,3855 L384,3859 L364,3859 L364,3855 L366,3855 L366,3857 L382,3857 L382,3855 Z" id="HD-[#941]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>HD [#942]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-380.000000, -3999.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M327,3846 L327,3852 C327,3852.552 327.448,3853 328,3853 C328.552,3853 329,3852.552 329,3852 L329,3850 L331,3850 L331,3852 C331,3852.552 331.448,3853 332,3853 C332.552,3853 333,3852.552 333,3852 L333,3846 C333,3845.448 332.552,3845 332,3845 C331.448,3845 331,3845.448 331,3846 L331,3848 L329,3848 L329,3846 C329,3845.448 328.552,3845 328,3845 C327.448,3845 327,3845.448 327,3846 L327,3846 Z M339,3847.5 C339,3847.224 338.776,3847 338.5,3847 L337,3847 L337,3851 L338.5,3851 C338.775,3851 339,3850.775 339,3850.5 L339,3847.5 Z M339.395,3853 L336,3853 C335.448,3853 335,3852.552 335,3852 L335,3846 C335,3845.448 335.448,3845 336,3845 L339.395,3845 C340.282,3845 341,3845.718 341,3846.605 L341,3851.395 C341,3852.282 340.282,3853 339.395,3853 L339.395,3853 Z M326,3839 C324.895,3839 324,3839.895 324,3841 L324,3842 C324,3842.552 324.448,3843 325,3843 C325.552,3843 326,3842.552 326,3842 C326,3841.448 326.448,3841 327,3841 L341,3841 C341.552,3841 342,3841.448 342,3842 C342,3842.552 342.448,3843 343,3843 C343.552,3843 344,3842.552 344,3842 L344,3841 C344,3839.895 343.105,3839 342,3839 L326,3839 Z M342,3856 L342,3856 C342,3855.448 342.448,3855 343,3855 C343.552,3855 344,3855.448 344,3856 L344,3857 C344,3858.105 343.105,3859 342,3859 L326,3859 C324.895,3859 324,3858.105 324,3857 L324,3856 C324,3855.448 324.448,3855 325,3855 C325.552,3855 326,3855.448 326,3856 C326,3856.552 326.448,3857 327,3857 L341,3857 C341.552,3857 342,3856.552 342,3856 L342,3856 Z" id="HD-[#942]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1,16 @@
|
|||
https://dribbble.com/shots/2888226-1800-Free-Minimal-Icon-Pack-20x20
|
||||
|
||||
Hey guys,
|
||||
|
||||
I recently challenged myself to create a pack of icons for my upcoming projects based on two styles (sharp and rounded) and now they are all available for FREE.
|
||||
|
||||
The pack contains the 1800 icons on black & white in the following formats: .sketch .psd .ai .svg .eps and .png
|
||||
|
||||
Download with Google Drive
|
||||
Download with MediaFile -- *just in case*
|
||||
|
||||
If you enjoy this freebie, please support the project by donating via Paypal. https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2SADTGQQXESQQ Your support will allow me to update the pack, but it’s not a requirement. The icons will remain FREE for you, forever.
|
||||
|
||||
Note: Please don’t freeboot this pack on your personal website of resources without noticing me. Thank you!
|
||||
|
||||
Twitter | Instagram
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>SD [#943]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-340.000000, -3999.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M290.5,3851 L287,3851 L287,3853 L291,3853 C292.105,3853 293,3852.104 293,3851 L293,3850 C293,3848.895 292.105,3848 291,3848 L289.5,3848 C289.224,3848 289,3847.776 289,3847.5 C289,3847.224 289.224,3847 289.5,3847 L291,3847 L293,3847 L293,3845 L291,3845 L289.605,3845 C288.166,3845 287,3846.166 287,3847.605 C287,3848.922 288.078,3850 289.395,3850 L290.5,3850 C290.776,3850 291,3850.224 291,3850.5 C291,3850.776 290.776,3851 290.5,3851 L290.5,3851 Z M299,3847.5 C299,3847.224 298.776,3847 298.5,3847 L297,3847 L297,3851 L298.5,3851 C298.775,3851 299,3850.775 299,3850.5 L299,3847.5 Z M299,3853 L295,3853 L295,3845 L299,3845 C300.105,3845 301,3845.895 301,3847 L301,3851 C301,3852.104 300.105,3853 299,3853 L299,3853 Z M284,3839 L284,3843 L286,3843 L286,3841 L302,3841 L302,3843 L304,3843 L304,3839 L284,3839 Z M302,3855 L304,3855 L304,3859 L284,3859 L284,3855 L286,3855 L286,3857 L302,3857 L302,3855 Z" id="SD-[#943]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>SD [#944]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-300.000000, -3999.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M250.5,3851 L248,3851 C247.448,3851 247,3851.448 247,3852 C247,3852.552 247.448,3853 248,3853 L251,3853 C252.105,3853 253,3852.105 253,3851 L253,3850 C253,3848.895 252.105,3848 251,3848 L249.5,3848 C249.224,3848 249,3847.776 249,3847.5 C249,3847.224 249.224,3847 249.5,3847 L251,3847 L252,3847 C252.552,3847 253,3846.552 253,3846 C253,3845.448 252.552,3845 252,3845 L251,3845 L249.738,3845 C248.653,3845 247.62,3845.609 247.204,3846.611 C246.489,3848.333 247.757,3850 249.395,3850 L250.5,3850 C250.776,3850 251,3850.224 251,3850.5 C251,3850.776 250.776,3851 250.5,3851 L250.5,3851 Z M259,3847.5 C259,3847.224 258.776,3847 258.5,3847 L257,3847 L257,3851 L258.5,3851 C258.775,3851 259,3850.775 259,3850.5 L259,3847.5 Z M259,3853 L256,3853 C255.448,3853 255,3852.552 255,3852 L255,3846 C255,3845.448 255.448,3845 256,3845 L259,3845 C260.105,3845 261,3845.895 261,3847 L261,3851 C261,3852.105 260.105,3853 259,3853 L259,3853 Z M244,3841 L244,3842 C244,3842.552 244.448,3843 245,3843 C245.552,3843 246,3842.552 246,3842 C246,3841.448 246.448,3841 247,3841 L261,3841 C261.552,3841 262,3841.448 262,3842 C262,3842.552 262.448,3843 263,3843 C263.552,3843 264,3842.552 264,3842 L264,3841 C264,3839.895 263.105,3839 262,3839 L246,3839 C244.895,3839 244,3839.895 244,3841 L244,3841 Z M262,3856 L262,3856 C262,3855.448 262.448,3855 263,3855 C263.552,3855 264,3855.448 264,3856 L264,3857 C264,3858.105 263.105,3859 262,3859 L246,3859 C244.895,3859 244,3858.105 244,3857 L244,3856 C244,3855.448 244.448,3855 245,3855 C245.552,3855 246,3855.448 246,3856 C246,3856.552 246.448,3857 247,3857 L261,3857 C261.552,3857 262,3856.552 262,3856 L262,3856 Z" id="SD-[#944]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Shape 1 copy 55 [#64]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-220.000000, -7919.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M184,7769 C184,7769.552 183.552,7770 183,7770 L165,7770 C164.448,7770 164,7769.552 164,7769 C164,7768.448 164.448,7768 165,7768 L183,7768 C183.552,7768 184,7768.448 184,7769 L184,7769 Z M180,7776 C180,7776.552 179.552,7777 179,7777 L169,7777 C168.448,7777 168,7776.552 168,7776 L168,7775 C168,7774.448 168.448,7774 169,7774 L179,7774 C179.552,7774 180,7774.448 180,7775 L180,7776 Z M180,7772 L168,7772 C166.896,7772 166,7772.895 166,7774 L166,7777 C166,7778.105 166.896,7779 168,7779 L180,7779 C181.105,7779 182,7778.105 182,7777 L182,7774 C182,7772.895 181.105,7772 180,7772 L180,7772 Z M168,7762 C168,7761.448 168.448,7761 169,7761 L179,7761 C179.552,7761 180,7761.448 180,7762 L180,7763 C180,7763.552 179.552,7764 179,7764 L169,7764 C168.448,7764 168,7763.552 168,7763 L168,7762 Z M167,7766 L180,7766 C181.105,7766 182,7765.105 182,7764 L182,7761 C182,7759.895 181.105,7759 180,7759 L168,7759 C166.896,7759 166,7759.895 166,7761 L166,7765 C166,7765.552 166.448,7766 167,7766 L167,7766 Z" id="Shape-1-copy-55-[#64]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>Shape 1 copy 56 [#63]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-260.000000, -7919.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M204,7770 L224,7770 L224,7768 L204,7768 L204,7770 Z M208,7777 L220,7777 L220,7774 L208,7774 L208,7777 Z M208,7772 L206,7772 L206,7774 L206,7777 L206,7779 L208,7779 L220,7779 L222,7779 L222,7777 L222,7774 L222,7772 L220,7772 L208,7772 Z M208,7764 L220,7764 L220,7761 L208,7761 L208,7764 Z M220,7766 L222,7766 L222,7764 L222,7761 L222,7759 L220,7759 L208,7759 L206,7759 L206,7761 L206,7764 L206,7766 L208,7766 L220,7766 Z" id="Shape-1-copy-56-[#63]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="9px" viewBox="0 0 20 9" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>activity [#985]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-260.000000, -3845.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M216.512,3685 L210.796,3690.79 L208.051,3688.155 L208.044,3688.162 L208.038,3688.156 L204,3692.386 L205.453,3693.8 L208.115,3691.033 L210.859,3693.653 L216.512,3687.885 L219.252,3690.66 C219.545,3690.028 220.046,3689.514 220.666,3689.208 L216.512,3685 Z M224,3691.96 C224,3693.087 223.098,3694 221.986,3694 C220.874,3694 219.973,3693.087 219.973,3691.96 C219.973,3690.833 220.874,3689.92 221.986,3689.92 C223.098,3689.92 224,3690.833 224,3691.96 L224,3691.96 Z" id="activity-[#985]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="15px" viewBox="0 0 20 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>adobe_cloud [#131]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-180.000000, -7602.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M132.304608,7455.57278 C132.098266,7455.37843 131.326987,7454.63871 130.967391,7454.28563 C130.887258,7454.20728 130.813135,7454.16862 130.699947,7454.17167 C127.403481,7454.25307 126.17845,7451.40609 126.957742,7449.35174 C127.554732,7447.77664 129.208474,7446.81815 130.838176,7447.11424 C132.206445,7447.3615 132.549013,7447.9079 134.689562,7450.10571 C135.281544,7450.71418 136.260167,7449.80453 135.637134,7449.1635 C134.956004,7448.46346 134.290901,7447.74408 133.582727,7447.07354 C132.207447,7445.77113 130.586759,7445.38346 128.794788,7445.93801 C126.383791,7446.6818 124.97245,7449.21031 125.523364,7451.70625 C126.025196,7453.98038 127.982441,7455.57583 130.27324,7455.57787 C130.44252,7455.57787 132.135327,7455.58194 132.304608,7455.57278 M132.799428,7444.82384 C132.811448,7444.84012 132.814453,7444.84724 132.819462,7444.85029 C133.232146,7445.05583 133.623795,7445.29901 133.996413,7445.57272 C134.019451,7445.59002 134.077548,7445.5829 134.106596,7445.56458 C136.146979,7444.25098 138.77133,7444.70377 140.255792,7446.64009 C141.806363,7448.65984 141.33458,7451.20666 140.051453,7452.64541 C138.095209,7454.83712 135.067188,7454.61022 133.370375,7452.86926 C132.453855,7451.92909 131.531326,7450.99501 130.612803,7450.05687 C129.890605,7449.32122 128.958059,7450.34788 129.61014,7451.0001 C132.877558,7454.25714 133.423463,7455.22886 135.740305,7455.54124 C137.783693,7455.81494 139.816063,7455.08539 141.212378,7453.37395 C143.130558,7451.01842 142.972296,7447.64335 141.120225,7445.52999 C138.714236,7442.78577 135.043149,7442.91296 132.799428,7444.82384 M144,7449.15943 C144,7453.17655 141.585997,7456.48141 136.963332,7456.9983 C136.456492,7456.9983 130.314308,7457.00848 129.818486,7456.97897 C123.637236,7456.58316 121.640926,7447.86415 127.491627,7444.88997 C128.557395,7444.34764 129.811474,7444.1187 131.189759,7444.30592 C131.227822,7444.31203 131.281912,7444.29473 131.308957,7444.26726 C135.413763,7440.00696 143.231726,7441.81303 144,7449.15943" id="adobe_cloud-[#131]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="18px" height="20px" viewBox="0 0 18 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>airbnb [#179]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-261.000000, -7399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M219.770353,7256.58451 C218.225353,7257.4867 216.591353,7256.27747 215.381353,7254.95558 C216.484353,7253.46124 217.537353,7251.64689 217.594353,7249.79167 C217.642353,7248.02816 216.690353,7246.67637 215.284353,7246.16297 C214.541353,7245.88783 213.713353,7245.86191 212.952353,7246.08621 C211.551353,7246.49893 210.547353,7247.71414 210.427353,7249.28525 C210.262353,7251.27006 211.430353,7253.35756 212.626353,7254.95459 C211.920353,7255.73715 210.963353,7256.59348 209.927353,7256.82476 C208.126353,7257.24944 206.591353,7255.54375 207.196353,7253.68355 C207.507353,7252.7365 212.316353,7242.06773 213.133353,7241.42174 C213.626353,7241.02099 214.408353,7241.01202 214.920353,7241.46062 C215.671353,7242.1086 220.592353,7252.87506 220.853353,7253.83109 C221.159353,7254.96157 220.667353,7256.07011 219.770353,7256.58451 M214.002353,7253.23096 C213.584353,7252.62484 213.216353,7252.0277 212.919353,7251.34383 C212.484353,7250.326 212.198353,7248.98717 213.117353,7248.37608 C213.702353,7247.9843 214.529353,7248.03414 215.045353,7248.4987 C215.696353,7249.0749 215.533353,7250.14058 215.238353,7250.96103 C214.923353,7251.81836 214.449353,7252.59294 214.002353,7253.23096 M216.416353,7239.97126 C215.065353,7238.63143 212.829353,7238.71417 211.564353,7239.99518 C210.419353,7241.12267 205.250353,7252.2859 205.050353,7253.77626 C204.629353,7256.63336 206.908353,7259.16148 209.641353,7258.97407 C211.381353,7258.87936 212.807353,7257.80272 214.003353,7256.53566 C216.048353,7258.71388 218.673353,7259.8623 221.041353,7258.22839 C222.263353,7257.392 223.027353,7255.93753 223.002353,7254.3724 C222.979353,7252.30085 217.366353,7240.88342 216.416353,7239.97126" id="airbnb-[#179]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="21px" height="20px" viewBox="0 0 21 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>airplane_mode [#1406]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-219.000000, -680.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M181.157913,524.12175 L168.505412,536.17175 L167.020713,534.75775 L179.673213,522.70775 C180.082713,522.31675 180.747363,522.31675 181.157913,522.70775 C181.568462,523.09775 181.568462,523.73075 181.157913,524.12175 L181.157913,524.12175 Z M180.497462,536.72275 C180.761012,537.33175 180.290612,538.00075 179.598662,538.00075 L179.591312,538.00075 C179.197562,538.00075 178.841612,537.77375 178.692512,537.42575 L176.210312,531.66275 L177.697112,530.24575 L180.497462,536.72275 Z M165.701913,525.04275 C165.337563,524.90075 165.100263,524.56275 165.100263,524.18675 C165.100263,523.52775 165.802713,523.07975 166.443213,523.33175 L173.243013,526.00275 L171.757263,527.41775 L165.701913,525.04275 Z M183.384963,522.00075 L181.900262,520.58575 C181.080212,519.80475 179.750912,519.80475 178.930862,520.58575 L174.726663,524.59075 L167.506862,521.76475 C165.358563,520.92375 163.000262,522.42775 163.000262,524.64075 C163.000262,525.45075 163.513712,526.18175 164.301212,526.48975 L170.272562,528.83175 L166.277312,532.63675 C165.867812,533.02675 165.203162,533.02675 164.792612,532.63675 L164.792612,532.63675 C164.383112,532.24575 163.718462,532.24575 163.307912,532.63675 L163.307912,532.63675 C162.897363,533.02675 162.897363,533.65975 163.307912,534.05075 L169.247762,539.70775 C169.657263,540.09775 170.322963,540.09775 170.732462,539.70775 L170.732462,539.70775 C171.143012,539.31675 171.143012,538.68375 170.732462,538.29375 L170.732462,538.29375 C170.322963,537.90275 170.322963,537.26975 170.732462,536.87875 L174.727712,533.07475 L177.186812,538.76175 C177.510212,539.51175 178.276713,540.00075 179.128263,540.00075 C181.450862,540.00075 183.031112,537.75475 182.148063,535.70875 L179.180762,528.83275 L183.384963,524.82875 C184.205012,524.04775 184.205012,522.78175 183.384963,522.00075 L183.384963,522.00075 Z" id="airplane_mode-[#1406]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="21px" height="20px" viewBox="0 0 21 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>airplane_mode_off [#1407]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-179.000000, -680.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M125.227313,520.70675 C124.816763,520.31575 124.152113,520.31575 123.742613,520.70675 C123.332063,521.09775 123.332063,521.73075 123.742613,522.12075 L141.756413,539.27675 C142.165913,539.66775 142.830563,539.66775 143.241113,539.27675 C143.650613,538.88675 143.650613,538.25375 143.241113,537.86275 L125.227313,520.70675 Z M137.185763,538.76075 C137.510213,539.51075 138.276713,539.99975 139.127213,539.99975 L139.127213,539.99975 C139.257413,539.99975 139.373963,539.96875 139.498913,539.95475 L136.444463,537.04575 L137.185763,538.76075 Z M133.500262,534.24175 L132.015562,532.82775 L128.504362,536.17075 L127.019662,534.75675 L130.529812,531.41375 L129.045112,529.99975 L126.277312,532.63575 C125.866762,533.02575 125.202112,533.02575 124.792612,532.63575 L124.792612,532.63575 C124.382062,532.24475 123.717412,532.24475 123.307912,532.63575 L123.307912,532.63575 C122.897362,533.02575 122.897362,533.65975 123.307912,534.04975 C127.422862,537.96875 128.293312,538.79875 129.246713,539.70675 C129.657263,540.09775 130.321912,540.09775 130.732462,539.70675 L130.732462,539.70675 C131.141962,539.31575 131.141962,538.68275 130.732462,538.29275 L130.732462,538.29275 C130.321912,537.90175 130.321912,537.26875 130.732462,536.87875 L133.500262,534.24175 Z M139.672163,522.70675 C140.082713,522.31575 140.747363,522.31575 141.157913,522.70675 C141.567413,523.09775 141.567413,523.73075 141.157913,524.12075 L136.469663,528.58575 L140.891213,532.79675 L139.180763,528.83175 L143.384963,524.82775 C144.205013,524.04675 144.205013,522.78075 143.384963,521.99975 L141.900263,520.58575 C141.080213,519.80475 139.749863,519.80475 138.929813,520.58575 L134.725613,524.58975 L130.563413,522.95975 L134.984963,527.17175 L139.672163,522.70675 Z M123.000263,524.63975 C123.000263,524.51675 123.032813,524.40475 123.046463,524.28675 L126.100913,527.19575 L124.300163,526.48875 C123.513713,526.18075 123.000263,525.45075 123.000263,524.63975 L123.000263,524.63975 Z" id="airplane_mode_off-[#1407]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="16px" height="20px" viewBox="0 0 16 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>aliens [#1300]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-142.000000, -2399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M94,2257 C90.566,2257 88,2255.416 88,2254 C88,2253.346 88.552,2252.658 89.479,2252.105 C90.275,2253.811 91.994,2255 94,2255 C96.006,2255 97.725,2253.811 98.521,2252.105 C99.448,2252.658 100,2253.346 100,2254 C100,2255.416 97.434,2257 94,2257 M94,2247 C96.169,2247 97.704,2249.299 96.667,2251.345 C96.172,2252.322 95.168,2253 94,2253 C92.832,2253 91.828,2252.322 91.333,2251.345 C90.3,2249.306 91.824,2247 94,2247 M98.99,2250.096 C98.991,2250.063 99,2250.033 99,2250 C99,2247.581 97.282,2245.564 95,2245.101 L95,2242.723 C95.595,2242.376 96,2241.738 96,2241 C96,2239.895 95.105,2239 94,2239 C92.895,2239 92,2239.895 92,2241 C92,2241.738 92.405,2242.376 93,2242.723 L93,2245.101 C90.718,2245.564 89,2247.581 89,2250 C89,2250.033 89.009,2250.063 89.01,2250.096 C87.177,2251.012 86,2252.419 86,2254 C86,2256.761 89.582,2259 94,2259 C98.418,2259 102,2256.761 102,2254 C102,2252.419 100.823,2251.012 98.99,2250.096" id="aliens-[#1300]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_center [#911]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-420.000000, -4161.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M367,4017 L381,4017 L381,4015 L367,4015 L367,4017 Z M364,4003 L384,4003 L384,4001 L364,4001 L364,4003 Z M364,4010 L384,4010 L384,4008 L364,4008 L364,4010 Z" id="align_text_center-[#911]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 913 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_distribute [#914]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-300.000000, -4161.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M244,4017 L264,4017 L264,4015 L244,4015 L244,4017 Z M244,4003 L264,4003 L264,4001 L244,4001 L244,4003 Z M244,4010 L264,4010 L264,4008 L244,4008 L244,4010 Z" id="align_text_distribute-[#914]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 921 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left [#910]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-60.000000, -4201.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M4,4057 L24,4057 L24,4055 L4,4055 L4,4057 Z M4,4043 L24,4043 L24,4041 L4,4041 L4,4043 Z M4,4050 L18,4050 L18,4048 L4,4048 L4,4050 Z" id="align_text_left-[#910]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 884 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left [#913]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-340.000000, -4161.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M284,4017 L298,4017 L298,4015 L284,4015 L284,4017 Z M284,4003 L304,4003 L304,4001 L284,4001 L284,4003 Z M284,4010 L304,4010 L304,4008 L284,4008 L284,4010 Z" id="align_text_left-[#913]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 909 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="10px" viewBox="0 0 20 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left [#915]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-260.000000, -4164.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M204,4014 L224,4014 L224,4012 L204,4012 L204,4014 Z M204,4006 L224,4006 L224,4004 L204,4004 L204,4006 Z M204,4010 L218,4010 L218,4008 L204,4008 L204,4010 Z" id="align_text_left-[#915]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 909 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left [#918]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-140.000000, -4161.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M84,4017 L104,4017 L104,4015 L84,4015 L84,4017 Z M84,4003 L98,4003 L98,4001 L84,4001 L84,4003 Z M84,4010 L104,4010 L104,4008 L84,4008 L84,4010 Z" id="align_text_left-[#918]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 898 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="10px" viewBox="0 0 20 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left [#919]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-100.000000, -4164.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M44,4014 L58,4014 L58,4012 L44,4012 L44,4014 Z M44,4006 L64,4006 L64,4004 L44,4004 L44,4006 Z M44,4010 L64,4010 L64,4008 L44,4008 L44,4010 Z" id="align_text_left-[#919]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 894 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="10px" viewBox="0 0 20 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_left_right [#920]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-60.000000, -4164.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M4,4014 L18,4014 L18,4012 L4,4012 L4,4014 Z M10,4006 L24,4006 L24,4004 L10,4004 L10,4006 Z M4,4010 L24,4010 L24,4008 L4,4008 L4,4010 Z" id="align_text_left_right-[#920]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 899 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="16px" viewBox="0 0 20 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_right [#912]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-380.000000, -4161.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M330,4017 L344,4017 L344,4015 L330,4015 L330,4017 Z M324,4003 L344,4003 L344,4001 L324,4001 L324,4003 Z M324,4010 L344,4010 L344,4008 L324,4008 L324,4010 Z" id="align_text_right-[#912]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 911 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="10px" viewBox="0 0 20 10" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>align_text_right [#917]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-180.000000, -4164.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M130,4014 L144,4014 L144,4012 L130,4012 L130,4014 Z M124,4006 L144,4006 L144,4004 L124,4004 L124,4006 Z M124,4010 L144,4010 L144,4008 L124,4008 L124,4010 Z" id="align_text_right-[#917]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 911 B |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>alignment_bottom [#856]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-220.000000, -4399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M178,4253 L180,4253 L180,4241 L178,4241 L178,4253 Z M176,4239 L178,4239 L180,4239 L182,4239 L182,4241 L182,4253 L182,4255 L180,4255 L178,4255 L176,4255 L176,4253 L176,4241 L176,4239 Z M168,4253 L170,4253 L170,4249 L168,4249 L168,4253 Z M172,4253 L172,4255 L170,4255 L168,4255 L166,4255 L166,4253 L166,4249 L166,4247 L168,4247 L170,4247 L172,4247 L172,4249 L172,4253 Z M164,4259 L184,4259 L184,4257 L164,4257 L164,4259 Z" id="alignment_bottom-[#856]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>alignment_left [#853]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-340.000000, -4399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M290,4255 L294,4255 L294,4253 L290,4253 L290,4255 Z M294,4251 L296,4251 L296,4253 L296,4255 L296,4257 L294,4257 L290,4257 L288,4257 L288,4255 L288,4253 L288,4251 L290,4251 L294,4251 Z M290,4245 L302,4245 L302,4243 L290,4243 L290,4245 Z M304,4241 L304,4243 L304,4245 L304,4247 L302,4247 L290,4247 L288,4247 L288,4245 L288,4243 L288,4241 L290,4241 L302,4241 L304,4241 Z M284,4259 L286,4259 L286,4239 L284,4239 L284,4259 Z" id="alignment_left-[#853]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>alignment_right [#854]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-300.000000, -4399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M246,4245 L258,4245 L258,4243 L246,4243 L246,4245 Z M244,4247 L244,4245 L244,4243 L244,4241 L246,4241 L258,4241 L260,4241 L260,4243 L260,4245 L260,4247 L258,4247 L246,4247 L244,4247 Z M254,4255 L258,4255 L258,4253 L254,4253 L254,4255 Z M258,4251 L260,4251 L260,4253 L260,4255 L260,4257 L258,4257 L254,4257 L252,4257 L252,4255 L252,4253 L252,4251 L254,4251 L258,4251 Z M262,4259 L264,4259 L264,4239 L262,4239 L262,4259 Z" id="alignment_right-[#854]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>alignment_top [#855]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-260.000000, -4399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M208,4257 L210,4257 L210,4245 L208,4245 L208,4257 Z M212,4259 L210,4259 L208,4259 L206,4259 L206,4257 L206,4245 L206,4243 L208,4243 L210,4243 L212,4243 L212,4245 L212,4257 L212,4259 Z M218,4249 L220,4249 L220,4245 L218,4245 L218,4249 Z M216,4245 L216,4243 L218,4243 L220,4243 L222,4243 L222,4245 L222,4249 L222,4251 L220,4251 L218,4251 L216,4251 L216,4249 L216,4245 Z M204,4241 L224,4241 L224,4239 L204,4239 L204,4241 Z" id="alignment_top-[#855]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="18px" viewBox="0 0 20 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>amazon [#160]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-220.000000, -7479.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M181.251105,7332.71631 C181.644105,7332.61435 182.555105,7332.451 182.942105,7332.53614 C183.487105,7332.58465 183.815105,7332.67473 183.924105,7332.8064 C184.155105,7333.14894 183.809105,7334.3498 183.651105,7334.74084 C183.512105,7335.08536 182.861105,7336.19019 182.524105,7336.19019 C182.421105,7336.19019 182.343105,7336.11495 182.396105,7335.97437 C183.633105,7333.09449 183.080105,7333.17072 181.251105,7333.32813 C181.015105,7333.35684 180.149105,7333.53009 180.251105,7333.32813 C180.251105,7333.08954 181.012105,7332.77769 181.251105,7332.71631 M172.633105,7327.47828 C172.633105,7327.94654 172.751105,7328.32175 172.987105,7328.60291 C173.663105,7329.40876 174.897105,7328.97712 175.415105,7328.01881 C175.700105,7327.52976 175.996105,7326.57442 175.996105,7325.33594 C174.996105,7325.33594 174.678105,7325.38445 174.315105,7325.48048 C173.248105,7325.78045 172.633105,7326.44671 172.633105,7327.47828 M169.506105,7327.83864 C169.506105,7326.15169 170.414105,7324.96965 171.815105,7324.38258 C173.052105,7323.86086 174.759105,7323.7183 175.996105,7323.64405 C175.996105,7322.16104 175.793105,7320.97999 174.233105,7320.97999 C173.732105,7320.97999 172.837105,7321.53537 172.633105,7322.46101 C172.584105,7322.70059 172.463105,7322.87285 172.269105,7322.90849 L170.178105,7322.67386 C169.925105,7322.61446 169.827105,7322.47586 169.887105,7322.23628 C170.309105,7320.05039 172.145105,7319.11683 174.233105,7319.00001 C175.233105,7319.00001 176.745105,7318.98714 177.924105,7320.06227 C179.198105,7321.3245 178.996105,7322.91443 178.996105,7327.02882 C178.996105,7328.01683 179.011105,7328.11187 179.687105,7328.98999 C179.823105,7329.19195 179.835105,7329.38401 179.637105,7329.53053 C178.631105,7330.39479 178.084105,7330.86206 177.999105,7330.93433 C177.853105,7331.04224 177.676105,7331.05412 177.470105,7330.96997 C176.575105,7330.21065 176.790105,7330.25619 176.233105,7329.56617 C175.104105,7330.78385 174.217105,7331.11451 172.706105,7331.11451 C170.910105,7331.11451 169.506105,7330.00473 169.506105,7327.83864 M164.324105,7332.94995 C167.354105,7334.69035 170.651105,7335.56055 174.215105,7335.56055 C176.590105,7335.56055 178.936105,7335.12199 181.251105,7334.24585 C181.602105,7334.10725 181.972105,7333.83698 182.187105,7334.13794 C182.290105,7334.28248 182.257105,7334.41415 182.087105,7334.53394 C179.844105,7336.13772 176.718105,7337 173.996105,7337 C170.145105,7337 166.719105,7335.5853 164.106105,7333.25586 C163.873105,7333.06479 164.059105,7332.78363 164.324105,7332.94995" id="amazon-[#160]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>ambulance [#663]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-260.000000, -5279.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M210,5127 L208,5127 L208,5125 L210,5125 L210,5123 L212,5123 L212,5125 L214,5125 L214,5127 L212,5127 L212,5129 L210,5129 L210,5127 Z M218,5130 L222,5130 L222,5126 L218,5126 L218,5130 Z M222,5134 L221.221,5134 C220.672,5133.39 219.885,5133 219,5133 C218.647,5133 218.314,5133.072 218,5133.184 L218,5132 L222,5132 L222,5134 Z M219,5137 C218.449,5137 218,5136.551 218,5136 C218,5135.449 218.449,5135 219,5135 C219.551,5135 220,5135.449 220,5136 C220,5136.551 219.551,5137 219,5137 L219,5137 Z M216,5134 L213.484,5134 C213.038,5132.278 211.487,5131 209.625,5131 C208.014,5131 206.634,5131.958 206,5133.331 L206,5121 L216,5121 L216,5134 Z M211.347,5136 C211,5136.595 210.362,5137 209.625,5137 C208.888,5137 208.25,5136.595 207.903,5136 C207.731,5135.705 207.625,5135.366 207.625,5135 C207.625,5134.634 207.731,5134.295 207.903,5134 C208.25,5133.405 208.888,5133 209.625,5133 C210.362,5133 211,5133.405 211.347,5134 C211.519,5134.295 211.625,5134.634 211.625,5135 C211.625,5135.366 211.519,5135.705 211.347,5136 L211.347,5136 Z M218,5124 L218,5119 L204,5119 L204,5136 L205.766,5136 C206.213,5137.722 207.763,5139 209.625,5139 C211.487,5139 213.037,5137.722 213.484,5136 L216,5136 C216,5137.657 217.343,5139 219,5139 C220.657,5139 222,5137.657 222,5136 L224,5136 L224,5124 L218,5124 Z" id="ambulance-[#663]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>ambulance_round [#662]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-300.000000, -5279.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M252,5124 L252,5125 L253,5125 C253.552,5125 254,5125.448 254,5126 C254,5126.552 253.552,5127 253,5127 L252,5127 L252,5128 C252,5128.552 251.552,5129 251,5129 C250.448,5129 250,5128.552 250,5128 L250,5127 L249,5127 C248.448,5127 248,5126.552 248,5126 C248,5125.448 248.448,5125 249,5125 L250,5125 L250,5124 C250,5123.448 250.448,5123 251,5123 C251.552,5123 252,5123.448 252,5124 L252,5124 Z M262,5130 L258,5130 L258,5126 L261,5126 C261.552,5126 262,5126.448 262,5127 L262,5130 Z M262,5134 L261.221,5134 C260.672,5133.39 259.885,5133 259,5133 C258.647,5133 258.314,5133.072 258,5133.184 L258,5132 L262,5132 L262,5134 Z M259,5137 C258.449,5137 258,5136.551 258,5136 C258,5135.449 258.449,5135 259,5135 C259.551,5135 260,5135.449 260,5136 C260,5136.551 259.551,5137 259,5137 L259,5137 Z M256,5134 L253.484,5134 C253.038,5132.278 251.487,5131 249.625,5131 C248.538,5131 247.556,5131.436 246.838,5132.142 C246.526,5132.448 246,5132.216 246,5131.779 L246,5122 C246,5121.448 246.448,5121 247,5121 L255,5121 C255.552,5121 256,5121.448 256,5122 L256,5134 Z M251.347,5136 C251,5136.595 250.362,5137 249.625,5137 C248.888,5137 248.25,5136.595 247.903,5136 C247.731,5135.705 247.625,5135.366 247.625,5135 C247.625,5134.634 247.731,5134.295 247.903,5134 C248.25,5133.405 248.888,5133 249.625,5133 C250.362,5133 251,5133.405 251.347,5134 C251.519,5134.295 251.625,5134.634 251.625,5135 C251.625,5135.366 251.519,5135.705 251.347,5136 L251.347,5136 Z M262,5124 L258,5124 L258,5121 C258,5119.895 257.105,5119 256,5119 L246,5119 C244.895,5119 244,5119.895 244,5121 L244,5134.234 C244,5135.209 244.791,5136 245.766,5136 C246.213,5137.722 247.763,5139 249.625,5139 C251.487,5139 253.037,5137.722 253.484,5136 L256,5136 C256,5137.657 257.343,5139 259,5139 C260.657,5139 262,5137.657 262,5136 C263.105,5136 264,5135.105 264,5134 L264,5126 C264,5124.895 263.105,5124 262,5124 L262,5124 Z" id="ambulance_round-[#662]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>apple [#1296]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-300.000000, -2399.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M254,2246.703 C254.478,2246.703 254.955,2246.533 255.335,2246.192 C256.073,2245.53 257.019,2245.166 258,2245.166 C260.154,2245.166 262,2247.915 262,2250.166 C262,2252.976 259.645,2257 258,2257 C257.601,2257 257.178,2256.848 256.741,2256.55 C255.936,2256.001 254.988,2255.711 254,2255.711 C253.012,2255.711 252.064,2256.001 251.259,2256.55 C250.822,2256.848 250.399,2257 250,2257 C248.355,2257 246,2252.976 246,2250.166 C246,2247.915 247.846,2245.166 250,2245.166 C250.981,2245.166 251.927,2245.53 252.665,2246.192 C253.045,2246.533 253.522,2246.703 254,2246.703 M258,2243.166 C256.719,2243.166 255.534,2243.571 254.561,2244.257 C254.392,2244.375 254.196,2244.434 254,2244.434 C253.804,2244.434 253.608,2244.375 253.439,2244.257 C252.466,2243.571 251.281,2243.166 250,2243.166 C246.686,2243.166 244,2246.853 244,2250.166 C244,2253.48 246.686,2259 250,2259 C252.031,2259 252.307,2257.711 254,2257.711 C255.679,2257.711 255.99,2259 258,2259 C261.314,2259 264,2253.48 264,2250.166 C264,2246.853 261.314,2243.166 258,2243.166 M251.334,2239 C250.985,2239 250.614,2239.056 250.232,2239.164 C249.921,2240.257 250.042,2241.267 250.673,2241.898 C251.205,2242.43 252.137,2242.732 253.175,2242.732 C253.37,2242.732 253.568,2242.722 253.768,2242.7 C253.905,2241.433 253.597,2240.237 252.966,2239.605 C252.555,2239.194 251.984,2239 251.334,2239" id="apple-[#1296]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="17px" height="20px" viewBox="0 0 17 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>apple [#173]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-102.000000, -7439.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M57.5708873,7282.19296 C58.2999598,7281.34797 58.7914012,7280.17098 58.6569121,7279 C57.6062792,7279.04 56.3352055,7279.67099 55.5818643,7280.51498 C54.905374,7281.26397 54.3148354,7282.46095 54.4735932,7283.60894 C55.6455696,7283.69593 56.8418148,7283.03894 57.5708873,7282.19296 M60.1989864,7289.62485 C60.2283111,7292.65181 62.9696641,7293.65879 63,7293.67179 C62.9777537,7293.74279 62.562152,7295.10677 61.5560117,7296.51675 C60.6853718,7297.73474 59.7823735,7298.94772 58.3596204,7298.97372 C56.9621472,7298.99872 56.5121648,7298.17973 54.9134635,7298.17973 C53.3157735,7298.17973 52.8162425,7298.94772 51.4935978,7298.99872 C50.1203933,7299.04772 49.0738052,7297.68074 48.197098,7296.46676 C46.4032359,7293.98379 45.0330649,7289.44985 46.8734421,7286.3899 C47.7875635,7284.87092 49.4206455,7283.90793 51.1942837,7283.88393 C52.5422083,7283.85893 53.8153044,7284.75292 54.6394294,7284.75292 C55.4635543,7284.75292 57.0106846,7283.67793 58.6366882,7283.83593 C59.3172232,7283.86293 61.2283842,7284.09893 62.4549652,7285.8199 C62.355868,7285.8789 60.1747177,7287.09489 60.1989864,7289.62485" id="apple-[#173]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="18px" height="20px" viewBox="0 0 18 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>apple_store [#126]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-381.000000, -7599.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M336.972,7454.007 C336.628,7454.494 336.27,7454.98 335.708,7454.989 C335.155,7455 334.977,7454.672 334.345,7454.672 C333.713,7454.672 333.515,7454.98 332.992,7455 C332.448,7455.02 332.035,7454.472 331.688,7453.987 C330.978,7452.994 330.436,7451.18 331.164,7449.956 C331.526,7449.348 332.172,7448.964 332.873,7448.954 C333.407,7448.944 333.91,7449.301 334.236,7449.301 C334.562,7449.301 335.174,7448.871 335.817,7448.935 C336.087,7448.945 336.842,7449.04 337.328,7449.728 C337.288,7449.752 336.426,7450.238 336.435,7451.25 C336.447,7452.461 337.531,7452.863 337.543,7452.869 C337.534,7452.898 337.37,7453.443 336.972,7454.007 M335.825,7447 C335.878,7447.468 335.684,7447.939 335.396,7448.278 C335.107,7448.616 334.634,7448.879 334.171,7448.844 C334.107,7448.384 334.341,7447.905 334.609,7447.607 C334.907,7447.268 335.41,7447.016 335.825,7447 M331,7441 L337,7441 C337.552,7441 338,7441.448 338,7442 L338,7443 L330,7443 L330,7442 C330,7441.448 330.448,7441 331,7441 M341,7443 L340,7443 L340,7441 C340,7439.896 339.104,7439 338,7439 L330,7439 C328.895,7439 328,7439.896 328,7441 L328,7443 L327,7443 C325.895,7443 325,7443.896 325,7445 L325,7457 C325,7458.105 325.895,7459 327,7459 L341,7459 C342.104,7459 343,7458.105 343,7457 L343,7445 C343,7443.896 342.104,7443 341,7443" id="apple_store-[#126]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>arrow_all [#299]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-180.000000, -6839.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M136,6690 C136,6690.551 135.553,6690.998 135.002,6690.998 L132.998,6690.998 C132.447,6690.998 132,6690.551 132,6690 L132,6687.997 C132,6687.445 132.447,6686.998 132.998,6686.998 L135.002,6686.998 C135.553,6686.998 136,6687.445 136,6687.997 L136,6690 Z M143,6693.987 C142.448,6693.987 142,6694.434 142,6694.987 L142,6695.586 L137.924,6691.51 C138.071,6690.962 138.017,6686.825 137.928,6686.487 L142,6682.415 L142,6683.015 C142,6683.567 142.448,6684.015 143,6684.015 C143.552,6684.015 144,6683.567 144,6683.015 L143.995,6681.001 C143.993,6679.9 143.101,6679.008 142,6679.006 L139.986,6679.001 C139.434,6679.001 138.986,6679.447 138.986,6680 C138.986,6680.552 139.434,6680.998 139.986,6680.998 L140.586,6680.998 L136.512,6685.072 C136.189,6684.987 132.033,6684.929 131.488,6685.072 L127.415,6680.998 L128.015,6680.998 C128.567,6680.998 129.015,6680.552 129.015,6680 C129.015,6679.448 128.566,6679 128.014,6679 L126,6679.005 C124.899,6679.007 124.006,6679.899 124.004,6681.001 L124,6683.014 C124,6683.567 124.448,6684.015 125,6684.015 C125.552,6684.015 126,6683.568 126,6683.015 L126,6682.416 L130.072,6686.488 C129.99,6686.8 129.928,6690.956 130.076,6691.51 L126,6695.587 L126,6694.987 C126,6694.435 125.552,6693.987 125,6693.987 C124.448,6693.987 124,6694.435 124,6694.987 L124.005,6697.001 C124.007,6698.102 124.899,6698.994 126,6698.996 L128.014,6699.001 C128.566,6699.001 129.014,6698.552 129.014,6698 C129.014,6697.447 128.566,6696.998 128.014,6696.998 L127.414,6696.998 L131.489,6692.923 C131.811,6693.01 135.966,6693.069 136.511,6692.924 L140.585,6696.998 L139.985,6696.998 C139.433,6696.998 138.985,6697.447 138.985,6697.999 C138.985,6698.551 139.434,6699.001 139.986,6699.001 L142,6698.997 C143.102,6698.995 143.994,6698.102 143.996,6697.001 L144,6694.987 C144,6694.435 143.552,6693.987 143,6693.987 L143,6693.987 Z" id="arrow_all-[#299]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>arrow_all [#328]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-220.000000, -6719.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M172,6571 L176,6571 L176,6567 L172,6567 L172,6571 Z M184,6568.99 L180.465,6565.455 L179.05,6566.869 L180.181,6568 L178,6568 L178,6565 L175,6565 L175,6562.819 L176.131,6563.95 L177.545,6562.535 L174.01,6559 L174,6559.01 L173.99,6559 L170.455,6562.535 L171.869,6563.95 L173,6562.819 L173,6565 L170,6565 L170,6568 L167.819,6568 L168.95,6566.869 L167.536,6565.455 L164,6568.99 L164.01,6569 L164,6569.01 L167.536,6572.545 L168.95,6571.131 L167.819,6570 L170,6570 L170,6573 L173,6573 L173,6575.181 L171.869,6574.05 L170.455,6575.464 L173.99,6579 L174,6578.99 L174.01,6579 L177.545,6575.464 L176.131,6574.05 L175,6575.181 L175,6573 L178,6573 L178,6570 L180.181,6570 L179.05,6571.131 L180.465,6572.545 L184,6569.01 L183.99,6569 L184,6568.99 Z" id="arrow_all-[#328]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>arrow_all [#329]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-180.000000, -6719.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M135.99975,6570.00175 C135.99975,6570.55275 135.55275,6570.99975 135.00175,6570.99975 L132.99775,6570.99975 C132.44675,6570.99975 131.99975,6570.55275 131.99975,6570.00175 L131.99975,6567.99875 C131.99975,6567.44675 132.44675,6566.99975 132.99775,6566.99975 L135.00175,6566.99975 C135.55275,6566.99975 135.99975,6567.44675 135.99975,6567.99875 L135.99975,6570.00175 Z M143.41675,6567.58875 L141.99575,6566.16175 C141.60575,6565.77175 140.97175,6565.77175 140.58075,6566.16175 C140.19075,6566.55275 140.18975,6567.18575 140.58075,6567.57575 L141.00375,6567.99975 L137.99975,6567.99975 L137.99975,6566.99975 C137.99975,6565.89575 137.10475,6564.99975 135.99975,6564.99975 L134.99975,6564.99975 L134.99975,6561.99375 L135.42375,6562.41775 C135.81375,6562.80775 136.44775,6562.80775 136.83775,6562.41775 C137.22875,6562.02675 137.22875,6561.39375 136.83775,6561.00375 L135.41075,6559.58275 C134.63075,6558.80575 133.36875,6558.80575 132.58875,6559.58275 L131.16175,6561.00375 C130.77075,6561.39375 130.77075,6562.02675 131.16175,6562.41775 C131.55175,6562.80775 132.18575,6562.80775 132.57575,6562.41775 L132.99975,6561.99375 L132.99975,6564.99975 L131.99975,6564.99975 C130.89475,6564.99975 129.99975,6565.89575 129.99975,6566.99975 L129.99975,6567.99975 L126.99575,6567.99975 L127.41975,6567.57575 C127.80975,6567.18575 127.80975,6566.55275 127.41975,6566.16175 C127.02875,6565.77175 126.39475,6565.77175 126.00375,6566.16175 L124.58275,6567.58875 C123.80575,6568.36875 123.80575,6569.63075 124.58275,6570.41175 L126.00375,6571.83775 C126.39475,6572.22875 127.02875,6572.22875 127.41875,6571.83775 C127.80975,6571.44775 127.80975,6570.81475 127.41875,6570.42375 L126.99575,6569.99975 L129.99975,6569.99975 L129.99975,6570.99975 C129.99975,6572.10475 130.89475,6572.99975 131.99975,6572.99975 L132.99975,6572.99975 L132.99975,6576.00675 L132.57575,6575.58275 C132.18575,6575.19275 131.55175,6575.19275 131.16175,6575.58275 C130.77075,6575.97375 130.77075,6576.60675 131.16175,6576.99675 L132.58875,6578.41775 C133.36875,6579.19475 134.63075,6579.19475 135.41075,6578.41775 L136.83775,6576.99675 C137.22875,6576.60675 137.22875,6575.97375 136.83775,6575.58275 C136.44775,6575.19275 135.81375,6575.19275 135.42375,6575.58275 L134.99975,6576.00675 L134.99975,6572.99975 L135.99975,6572.99975 C137.10475,6572.99975 137.99975,6572.10475 137.99975,6570.99975 L137.99975,6569.99975 L141.00375,6569.99975 L140.57975,6570.42375 C140.18975,6570.81475 140.18975,6571.44775 140.57975,6571.83775 C140.97075,6572.22875 141.60575,6572.22875 141.99575,6571.83775 L143.41675,6570.41175 C144.19375,6569.63075 144.19375,6568.36875 143.41675,6567.58875 L143.41675,6567.58875 Z" id="arrow_all-[#329]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>arrow_all [#330]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-140.000000, -6719.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M94,6571 C92.897,6571 92,6570.103 92,6569 C92,6567.897 92.897,6567 94,6567 C95.103,6567 96,6567.897 96,6569 C96,6570.103 95.103,6571 94,6571 L94,6571 Z M104,6568.99 L100.464,6565.455 L99.05,6566.869 L100.181,6568 L97.859,6568 C97.496,6567 96.401,6565.504 95,6565.141 L95,6562.819 L96.131,6563.95 L97.545,6562.536 L94.01,6559 L94,6559.01 L93.99,6559 L90.455,6562.536 L91.869,6563.95 L93,6562.819 L93,6565.141 C91.599,6565.504 90.504,6567 90.141,6568 L87.819,6568 L88.95,6566.869 L87.536,6565.455 L84,6568.99 L84.01,6569 L84,6569.01 L87.536,6572.545 L88.95,6571.131 L87.819,6570 L90.141,6570 C90.504,6571 91.599,6572.496 93,6572.859 L93,6575.181 L91.869,6574.05 L90.455,6575.464 L93.99,6579 L94,6578.99 L94.01,6579 L97.545,6575.464 L96.131,6574.05 L95,6575.181 L95,6572.859 C96.401,6572.496 97.496,6571 97.859,6570 L100.181,6570 L99.05,6571.131 L100.464,6572.545 L104,6569.01 L103.99,6569 L104,6568.99 Z" id="arrow_all-[#330]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.1 (29687) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>arrow_all [#331]</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="Dribbble-Light-Preview" transform="translate(-100.000000, -6719.000000)" fill="currentColor">
|
||||
<g id="icons" transform="translate(56.000000, 160.000000)">
|
||||
<path d="M53.99975,6570.99975 C52.89675,6570.99975 51.99975,6570.10275 51.99975,6568.99975 C51.99975,6567.89675 52.89675,6566.99975 53.99975,6566.99975 C55.10275,6566.99975 55.99975,6567.89675 55.99975,6568.99975 C55.99975,6570.10275 55.10275,6570.99975 53.99975,6570.99975 L53.99975,6570.99975 Z M61.99575,6566.16175 C61.60475,6565.77075 60.97175,6565.77075 60.58075,6566.16175 C60.19075,6566.55175 60.18975,6567.18575 60.58075,6567.57575 L61.00375,6567.99975 L57.85875,6567.99975 C57.49575,6566.99975 56.40075,6565.50375 54.99975,6565.14075 L54.99975,6561.99275 L55.42375,6562.41675 C55.81375,6562.80775 56.44775,6562.80775 56.83775,6562.41675 C57.22875,6562.02675 57.22875,6561.39375 56.83775,6561.00275 L55.41075,6559.58275 C54.63075,6558.80575 53.36875,6558.80575 52.58875,6559.58275 L51.16175,6561.00275 C50.77075,6561.39375 50.77075,6562.02675 51.16175,6562.41675 C51.55175,6562.80775 52.18575,6562.80775 52.57575,6562.41675 L52.99975,6561.99275 L52.99975,6565.14075 C51.59875,6565.50375 50.50375,6566.99975 50.14075,6567.99975 L46.99575,6567.99975 L47.41975,6567.57575 C47.80975,6567.18575 47.80975,6566.55175 47.41975,6566.16175 C47.02875,6565.77075 46.39475,6565.77075 46.00375,6566.16175 L44.58275,6567.58875 C43.80575,6568.36875 43.80575,6569.63075 44.58275,6570.41075 L46.00375,6571.83775 C46.39475,6572.22875 47.02775,6572.22875 47.41875,6571.83775 C47.80875,6571.44775 47.80975,6570.81375 47.41875,6570.42375 L46.99575,6569.99975 L50.14075,6569.99975 C50.50375,6570.99975 51.59875,6572.49575 52.99975,6572.85875 L52.99975,6576.00675 L52.57575,6575.58275 C52.18575,6575.19175 51.55175,6575.19175 51.16175,6575.58275 C50.77075,6575.97275 50.77075,6576.60575 51.16175,6576.99675 L52.58875,6578.41675 C53.36875,6579.19375 54.63075,6579.19375 55.41075,6578.41675 L56.83775,6576.99675 C57.22875,6576.60575 57.22875,6575.97275 56.83775,6575.58275 C56.44775,6575.19175 55.81375,6575.19175 55.42375,6575.58275 L54.99975,6576.00675 L54.99975,6572.85875 C56.40075,6572.49575 57.49575,6570.99975 57.85875,6569.99975 L61.00375,6569.99975 L60.57975,6570.42375 C60.18975,6570.81375 60.18975,6571.44775 60.57975,6571.83775 C60.97075,6572.22875 61.60475,6572.22875 61.99575,6571.83775 L63.41675,6570.41075 C64.19375,6569.63075 64.19375,6568.36875 63.41675,6567.58875 L61.99575,6566.16175 Z" id="arrow_all-[#331]"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||