diff --git a/.DS_Store b/.DS_Store index 4e9a6eca..df28b6c0 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/car_inventory/__pycache__/urls.cpython-311.pyc b/car_inventory/__pycache__/urls.cpython-311.pyc index b33b99d8..8067ee8f 100644 Binary files a/car_inventory/__pycache__/urls.cpython-311.pyc and b/car_inventory/__pycache__/urls.cpython-311.pyc differ diff --git a/inventory/__pycache__/forms.cpython-311.pyc b/inventory/__pycache__/forms.cpython-311.pyc index 340c29d4..f19ffd01 100644 Binary files a/inventory/__pycache__/forms.cpython-311.pyc and b/inventory/__pycache__/forms.cpython-311.pyc differ diff --git a/inventory/__pycache__/middleware.cpython-311.pyc b/inventory/__pycache__/middleware.cpython-311.pyc index a96fc8cb..643147ba 100644 Binary files a/inventory/__pycache__/middleware.cpython-311.pyc and b/inventory/__pycache__/middleware.cpython-311.pyc differ diff --git a/inventory/__pycache__/models.cpython-311.pyc b/inventory/__pycache__/models.cpython-311.pyc index f45e13c7..d62f6e9c 100644 Binary files a/inventory/__pycache__/models.cpython-311.pyc and b/inventory/__pycache__/models.cpython-311.pyc differ diff --git a/inventory/__pycache__/urls.cpython-311.pyc b/inventory/__pycache__/urls.cpython-311.pyc index ef552762..1cee5da4 100644 Binary files a/inventory/__pycache__/urls.cpython-311.pyc and b/inventory/__pycache__/urls.cpython-311.pyc differ diff --git a/inventory/__pycache__/views.cpython-311.pyc b/inventory/__pycache__/views.cpython-311.pyc index b8521974..4fe1a2c4 100644 Binary files a/inventory/__pycache__/views.cpython-311.pyc and b/inventory/__pycache__/views.cpython-311.pyc differ diff --git a/inventory/migrations/0033_alter_schedule_scheduled_by.py b/inventory/migrations/0033_remove_staff_user_staff_staff_member_and_more.py similarity index 52% rename from inventory/migrations/0033_alter_schedule_scheduled_by.py rename to inventory/migrations/0033_remove_staff_user_staff_staff_member_and_more.py index de93143d..f0f3dbb7 100644 --- a/inventory/migrations/0033_alter_schedule_scheduled_by.py +++ b/inventory/migrations/0033_remove_staff_user_staff_staff_member_and_more.py @@ -1,18 +1,29 @@ -# Generated by Django 4.2.17 on 2025-02-18 08:14 +# Generated by Django 5.1.6 on 2025-02-19 05:25 +import django.db.models.deletion from django.conf import settings from django.db import migrations, models -import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ - migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('appointment', '0002_alter_workinghours_options'), ('inventory', '0032_alter_carcolors_car'), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ + migrations.RemoveField( + model_name='staff', + name='user', + ), + migrations.AddField( + model_name='staff', + name='staff_member', + field=models.OneToOneField(default=5, on_delete=django.db.models.deletion.CASCADE, related_name='staff', to='appointment.staffmember'), + preserve_default=False, + ), migrations.AlterField( model_name='schedule', name='scheduled_by', diff --git a/inventory/migrations/0034_remove_staff_user_staff_staff_member.py b/inventory/migrations/0034_remove_staff_user_staff_staff_member.py deleted file mode 100644 index e1271f46..00000000 --- a/inventory/migrations/0034_remove_staff_user_staff_staff_member.py +++ /dev/null @@ -1,25 +0,0 @@ -# Generated by Django 4.2.17 on 2025-02-18 09:13 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('appointment', '0001_initial'), - ('inventory', '0033_alter_schedule_scheduled_by'), - ] - - operations = [ - migrations.RemoveField( - model_name='staff', - name='user', - ), - migrations.AddField( - model_name='staff', - name='staff_member', - field=models.OneToOneField(default=1, on_delete=django.db.models.deletion.CASCADE, related_name='staff_member', to='appointment.staffmember'), - preserve_default=False, - ), - ] diff --git a/inventory/migrations/0034_remove_subscription_plan_remove_subscription_users_and_more.py b/inventory/migrations/0034_remove_subscription_plan_remove_subscription_users_and_more.py new file mode 100644 index 00000000..0ab94aee --- /dev/null +++ b/inventory/migrations/0034_remove_subscription_plan_remove_subscription_users_and_more.py @@ -0,0 +1,38 @@ +# Generated by Django 5.1.6 on 2025-02-20 01:29 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('inventory', '0033_remove_staff_user_staff_staff_member_and_more'), + ] + + operations = [ + migrations.RemoveField( + model_name='subscription', + name='plan', + ), + migrations.RemoveField( + model_name='subscription', + name='users', + ), + migrations.RemoveField( + model_name='subscriptionuser', + name='subscription', + ), + migrations.RemoveField( + model_name='subscriptionuser', + name='user', + ), + migrations.DeleteModel( + name='SubscriptionPlan', + ), + migrations.DeleteModel( + name='Subscription', + ), + migrations.DeleteModel( + name='SubscriptionUser', + ), + ] diff --git a/inventory/migrations/0035_alter_staff_staff_member.py b/inventory/migrations/0035_alter_staff_staff_member.py deleted file mode 100644 index 517857ce..00000000 --- a/inventory/migrations/0035_alter_staff_staff_member.py +++ /dev/null @@ -1,20 +0,0 @@ -# Generated by Django 4.2.17 on 2025-02-18 09:31 - -from django.db import migrations, models -import django.db.models.deletion - - -class Migration(migrations.Migration): - - dependencies = [ - ('appointment', '0001_initial'), - ('inventory', '0034_remove_staff_user_staff_staff_member'), - ] - - operations = [ - migrations.AlterField( - model_name='staff', - name='staff_member', - field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='staff', to='appointment.staffmember'), - ), - ] diff --git a/inventory/migrations/0036_alter_schedule_scheduled_type.py b/inventory/migrations/0036_alter_schedule_scheduled_type.py deleted file mode 100644 index 0ad89164..00000000 --- a/inventory/migrations/0036_alter_schedule_scheduled_type.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.17 on 2025-02-18 13:12 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('inventory', '0035_alter_staff_staff_member'), - ] - - operations = [ - migrations.AlterField( - model_name='schedule', - name='scheduled_type', - field=models.CharField(choices=[('Call', 'Call'), ('Meeting Service', 'Meeting Service'), ('Email', 'Email')], default='Call', max_length=200), - ), - ] diff --git a/inventory/migrations/0037_alter_schedule_scheduled_type.py b/inventory/migrations/0037_alter_schedule_scheduled_type.py deleted file mode 100644 index 7098d1ae..00000000 --- a/inventory/migrations/0037_alter_schedule_scheduled_type.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.17 on 2025-02-18 13:12 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('inventory', '0036_alter_schedule_scheduled_type'), - ] - - operations = [ - migrations.AlterField( - model_name='schedule', - name='scheduled_type', - field=models.CharField(choices=[('Call', 'Call'), ('Meeting', 'Meeting'), ('Email', 'Email')], default='Call', max_length=200), - ), - ] diff --git a/inventory/models.py b/inventory/models.py index e1caca3d..21dc7129 100644 --- a/inventory/models.py +++ b/inventory/models.py @@ -19,6 +19,9 @@ from django_ledger.models import EntityModel, ItemModel,EstimateModel,InvoiceMod from django.contrib.contenttypes.fields import GenericForeignKey from django.contrib.contenttypes.models import ContentType from appointment.models import StaffMember +from plans.quota import get_user_quota + + class DealerUserManager(UserManager): def create_user_with_dealer( self, @@ -430,7 +433,7 @@ class Car(models.Model): hash_object = hashlib.sha256() color = "" try: - color = self.colors.first().exterior.name if self.colors.exists() else "" + color = self.colors.exterior.name if self.colors else "" except: pass hash_object.update(f"{self.id_car_make.name}{self.id_car_model.name}{self.year}{self.id_car_serie.name}{self.id_car_trim.name}{color}".encode('utf-8')) @@ -750,87 +753,87 @@ class TimestampedModel(models.Model): abstract = True -class Subscription(models.Model): - plan = models.ForeignKey( - "SubscriptionPlan", on_delete=models.CASCADE, related_name="subscriptions" - ) - start_date = models.DateField(help_text="Date when the subscription starts") - end_date = models.DateField(help_text="Date when the subscription ends") - users = models.ManyToManyField( - User, through="SubscriptionUser" - ) # many-to-many relationship with User model - is_active = models.BooleanField(default=True) - billing_cycle = models.CharField( - max_length=10, - choices=[("monthly", "Monthly"), ("annual", "Annual")], - default="monthly", - help_text="Billing cycle for the subscription", - ) - last_payment_date = models.DateField( - null=True, blank=True, help_text="Date of the last payment made" - ) - next_payment_date = models.DateField( - null=True, blank=True, help_text="Date of the next payment due" - ) - - class Meta: - verbose_name = _("Subscription") - verbose_name_plural = _("Subscriptions") - - def __str__(self): - return self.plan.name - - @property - def total_subscribers(self): - return self.users.count() - - -class SubscriptionUser(models.Model): - subscription = models.ForeignKey(Subscription, on_delete=models.CASCADE) - user = models.ForeignKey(User, on_delete=models.CASCADE) - - class Meta: - verbose_name = _("Subscription User") - verbose_name_plural = _("Subscription Users") - - def __str__(self): - return f"{self.subscription} - {self.user}" - - -class SubscriptionPlan(models.Model): - name = models.CharField( - max_length=100, unique=True, help_text=_("Name of the subscription plan") - ) - description = models.TextField() - price = models.DecimalField(max_digits=10, decimal_places=2) - max_users = models.PositiveIntegerField( - help_text=_("Maximum number of users allowed"), default=1 - ) - max_inventory_size = models.PositiveIntegerField( - help_text=_("Maximum number of cars in inventory"), default=50 - ) - support_level = models.CharField( - max_length=50, - choices=[ - ("basic", "Basic Support"), - ("priority", "Priority Support"), - ("dedicated", "Dedicated Support"), - ], - default="basic", - help_text="Level of support provided", - ) - custom_features = models.JSONField( - blank=True, null=True, help_text=_("Additional features specific to this plan") - ) - created_at = models.DateTimeField(auto_now_add=True) - updated_at = models.DateTimeField(auto_now=True) - - class Meta: - verbose_name = _("Subscription Plan") - verbose_name_plural = _("Subscription Plans") - - def __str__(self): - return f"{self.name} - {self.price}" +# class Subscription(models.Model): +# plan = models.ForeignKey( +# "SubscriptionPlan", on_delete=models.CASCADE, related_name="subscriptions" +# ) +# start_date = models.DateField(help_text="Date when the subscription starts") +# end_date = models.DateField(help_text="Date when the subscription ends") +# users = models.ManyToManyField( +# User, through="SubscriptionUser" +# ) # many-to-many relationship with User model +# is_active = models.BooleanField(default=True) +# billing_cycle = models.CharField( +# max_length=10, +# choices=[("monthly", "Monthly"), ("annual", "Annual")], +# default="monthly", +# help_text="Billing cycle for the subscription", +# ) +# last_payment_date = models.DateField( +# null=True, blank=True, help_text="Date of the last payment made" +# ) +# next_payment_date = models.DateField( +# null=True, blank=True, help_text="Date of the next payment due" +# ) +# +# class Meta: +# verbose_name = _("Subscription") +# verbose_name_plural = _("Subscriptions") +# +# def __str__(self): +# return self.plan.name +# +# @property +# def total_subscribers(self): +# return self.users.count() +# +# +# class SubscriptionUser(models.Model): +# subscription = models.ForeignKey(Subscription, on_delete=models.CASCADE) +# user = models.ForeignKey(User, on_delete=models.CASCADE) +# +# class Meta: +# verbose_name = _("Subscription User") +# verbose_name_plural = _("Subscription Users") +# +# def __str__(self): +# return f"{self.subscription} - {self.user}" +# +# +# class SubscriptionPlan(models.Model): +# name = models.CharField( +# max_length=100, unique=True, help_text=_("Name of the subscription plan") +# ) +# description = models.TextField() +# price = models.DecimalField(max_digits=10, decimal_places=2) +# max_users = models.PositiveIntegerField( +# help_text=_("Maximum number of users allowed"), default=1 +# ) +# max_inventory_size = models.PositiveIntegerField( +# help_text=_("Maximum number of cars in inventory"), default=50 +# ) +# support_level = models.CharField( +# max_length=50, +# choices=[ +# ("basic", "Basic Support"), +# ("priority", "Priority Support"), +# ("dedicated", "Dedicated Support"), +# ], +# default="basic", +# help_text="Level of support provided", +# ) +# custom_features = models.JSONField( +# blank=True, null=True, help_text=_("Additional features specific to this plan") +# ) +# created_at = models.DateTimeField(auto_now_add=True) +# updated_at = models.DateTimeField(auto_now=True) +# +# class Meta: +# verbose_name = _("Subscription Plan") +# verbose_name_plural = _("Subscription Plans") +# +# def __str__(self): +# return f"{self.name} - {self.price}" class Dealer(models.Model, LocalizedNameMixin): @@ -861,23 +864,24 @@ class Dealer(models.Model, LocalizedNameMixin): objects = DealerUserManager() - @property - def get_active_plan(self): - try: - return self.user.subscription_set.filter(is_active=True).first() - except SubscriptionPlan.DoesNotExist: - return None - @property - def get_plan(self): - active_plan = self.get_active_plan - if active_plan: - subscription_plan = SubscriptionPlan.objects.filter( - pk=active_plan.pk - ).first() - if subscription_plan: - return subscription_plan - return None + # @property + # def get_active_plan(self): + # try: + # return self.user.subscription_set.filter(is_active=True).first() + # except SubscriptionPlan.DoesNotExist: + # return None + # + # @property + # def get_plan(self): + # active_plan = self.get_active_plan + # if active_plan: + # subscription_plan = SubscriptionPlan.objects.filter( + # pk=active_plan.pk + # ).first() + # if subscription_plan: + # return subscription_plan + # return None class Meta: verbose_name = _("Dealer") @@ -938,6 +942,19 @@ class Staff(models.Model, LocalizedNameMixin): objects = StaffUserManager() + def clean(self): + quota_dict = get_user_quota(self.dealer.user) + allowed_users = quota_dict.get("Users") + if allowed_users is None: + raise ValidationError(_("The user quota for staff members is not defined. Please contact support.")) + current_staff_count = self.dealer.staff.count() + if current_staff_count >= allowed_users: + raise ValidationError(_("You have reached the maximum number of staff users allowed for your plan.")) + + def save(self, *args, **kwargs): + self.clean() + super().save(*args, **kwargs) + @property def user(self): return self.staff_member.user diff --git a/inventory/urls.py b/inventory/urls.py index d4e737b0..aaf1c9f2 100644 --- a/inventory/urls.py +++ b/inventory/urls.py @@ -5,7 +5,6 @@ from . import views from allauth.account import views as allauth_views - urlpatterns = [ # main URLs path("", views.HomeView.as_view(), name="home"), @@ -44,9 +43,7 @@ urlpatterns = [ # ), # ), # Dashboards - path( - "dashboards/accounting/", views.AccountingDashboard.as_view(), name="accounting" - ), + path("dashboards/manager/", views.ManagerDashboard.as_view(), name="manager_dashboard"), path("test/", views.TestView.as_view(), name="test"), path('cars/inventory/table/', views.CarListViewTable.as_view(), name="car_table"), path("export/format/", TableExport, name="export"), @@ -586,7 +583,7 @@ urlpatterns = [ ), # orders - path("orders/", views.OrderListView.as_view(), name="order_list"), + path("orders/", views.OrderListView.as_view(), name="order_list_view"), # BALANCE SHEET Reports... # Entities... diff --git a/inventory/validators.py b/inventory/validators.py new file mode 100644 index 00000000..e6675281 --- /dev/null +++ b/inventory/validators.py @@ -0,0 +1,24 @@ +from django.core.exceptions import ValidationError +from plans.quota import get_user_quota + + +class DealerStaffQuotaValidator: + """ + Validator to ensure a Dealer cannot add more than the allowed number of Staff members. + """ + + def __init__(self, quota_name='Users'): + self.quota_name = quota_name + + def __call__(self, dealer): + # Get the quota for the dealer's plan + quota_limit = get_user_quota(dealer.user, self.quota_name) + + # Count the number of staff members associated with the dealer + staff_count = dealer.staff.count() + + # Check if the quota is exceeded + if staff_count >= quota_limit: + raise ValidationError( + f"You have reached the maximum number of staff members ({quota_limit}) allowed by your plan." + ) \ No newline at end of file diff --git a/inventory/views.py b/inventory/views.py index 47b5c989..fdc42723 100644 --- a/inventory/views.py +++ b/inventory/views.py @@ -7,6 +7,7 @@ from random import randint from django_tables2 import SingleTableView from django_tables2.export.views import ExportMixin from django_pdf_actions.actions import export_to_pdf_landscape +from plans.quota import get_user_quota from reportlab.lib.pagesizes import landscape, A4 from rich import print from decimal import Decimal @@ -334,8 +335,8 @@ class TestView(TemplateView): template_name = "inventory/cars_list_api.html" -class AccountingDashboard(LoginRequiredMixin, TemplateView): - template_name = "dashboards/accounting.html" +class ManagerDashboard(LoginRequiredMixin, TemplateView): + template_name = "dashboards/manager.html" def dispatch(self, request, *args, **kwargs): if ( @@ -1189,11 +1190,26 @@ class DealerDetailView(LoginRequiredMixin, DetailView): context_object_name = "dealer" def get_queryset(self): - total_count = models.Dealer.objects.annotate( - staff_count=Coalesce(Count("staff"), Value(0)), - total_count=F("staff_count") + Value(1), + return models.Dealer.objects.annotate( + staff_count=Coalesce(Count("staff"), Value(0)) # Get the number of staff members ) - return total_count + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + + dealer = self.object + # Fetch current staff count from the annotated queryset + staff_count = dealer.staff_count + + # Get the quota value dynamically + quota_dict = get_user_quota(dealer.user) + allowed_users = quota_dict.get("Users", None) # Fetch quota or default to None + + context["staff_count"] = staff_count + context["allowed_users"] = allowed_users + context["quota_display"] = f"{staff_count}/{allowed_users}" if allowed_users is not None else "N/A" + + return context class DealerUpdateView(LoginRequiredMixin, SuccessMessageMixin, UpdateView): @@ -4152,10 +4168,10 @@ def BillDeleteView(request, pk): return redirect("bill_list") -class SubscriptionPlans(ListView, LoginRequiredMixin): - model = models.SubscriptionPlan - template_name = "subscriptions/subscription_plan.html" - context_object_name = "plans" +# class SubscriptionPlans(ListView, LoginRequiredMixin): +# model = models.SubscriptionPlan +# template_name = "subscriptions/subscription_plan.html" +# context_object_name = "plans" # orders diff --git a/static/.DS_Store b/static/.DS_Store index a0368c9d..6076d82c 100644 Binary files a/static/.DS_Store and b/static/.DS_Store differ diff --git a/static/icons/.DS_Store b/static/icons/.DS_Store new file mode 100644 index 00000000..92c838bf Binary files /dev/null and b/static/icons/.DS_Store differ diff --git a/static/icons/195534_display-ui.svg b/static/icons/195534_display-ui.svg new file mode 100644 index 00000000..1638fe1d --- /dev/null +++ b/static/icons/195534_display-ui.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195535_display-ui.svg b/static/icons/195535_display-ui.svg new file mode 100644 index 00000000..daa36699 --- /dev/null +++ b/static/icons/195535_display-ui.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195536_display-layout.svg b/static/icons/195536_display-layout.svg new file mode 100644 index 00000000..4a22c605 --- /dev/null +++ b/static/icons/195536_display-layout.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195537_display-copy.svg b/static/icons/195537_display-copy.svg new file mode 100644 index 00000000..ae73d7dc --- /dev/null +++ b/static/icons/195537_display-copy.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195538_display.svg b/static/icons/195538_display.svg new file mode 100644 index 00000000..cd7d4835 --- /dev/null +++ b/static/icons/195538_display.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195539_display.svg b/static/icons/195539_display.svg new file mode 100644 index 00000000..25787a0b --- /dev/null +++ b/static/icons/195539_display.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195540_display.svg b/static/icons/195540_display.svg new file mode 100644 index 00000000..707abafe --- /dev/null +++ b/static/icons/195540_display.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195541_display.svg b/static/icons/195541_display.svg new file mode 100644 index 00000000..634bec06 --- /dev/null +++ b/static/icons/195541_display.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195542_display-ui.svg b/static/icons/195542_display-ui.svg new file mode 100644 index 00000000..d8afb6fa --- /dev/null +++ b/static/icons/195542_display-ui.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195543_display.svg b/static/icons/195543_display.svg new file mode 100644 index 00000000..701df523 --- /dev/null +++ b/static/icons/195543_display.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195544_display-copy.svg b/static/icons/195544_display-copy.svg new file mode 100644 index 00000000..c5d426af --- /dev/null +++ b/static/icons/195544_display-copy.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195545_display.svg b/static/icons/195545_display.svg new file mode 100644 index 00000000..ac54af69 --- /dev/null +++ b/static/icons/195545_display.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195546_display-layout.svg b/static/icons/195546_display-layout.svg new file mode 100644 index 00000000..dc49702c --- /dev/null +++ b/static/icons/195546_display-layout.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195547_display-copy.svg b/static/icons/195547_display-copy.svg new file mode 100644 index 00000000..f6d1ac4a --- /dev/null +++ b/static/icons/195547_display-copy.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195548_display-copy.svg b/static/icons/195548_display-copy.svg new file mode 100644 index 00000000..766852f5 --- /dev/null +++ b/static/icons/195548_display-copy.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195549_display-layout.svg b/static/icons/195549_display-layout.svg new file mode 100644 index 00000000..766852f5 --- /dev/null +++ b/static/icons/195549_display-layout.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195550_display-ui.svg b/static/icons/195550_display-ui.svg new file mode 100644 index 00000000..d917c88b --- /dev/null +++ b/static/icons/195550_display-ui.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195551_display.svg b/static/icons/195551_display.svg new file mode 100644 index 00000000..74e8e87b --- /dev/null +++ b/static/icons/195551_display.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/195552_display-layout.svg b/static/icons/195552_display-layout.svg new file mode 100644 index 00000000..5e7f002d --- /dev/null +++ b/static/icons/195552_display-layout.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/abacus.svg b/static/icons/abacus.svg new file mode 100644 index 00000000..5163fd59 --- /dev/null +++ b/static/icons/abacus.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/add.svg b/static/icons/add.svg new file mode 100644 index 00000000..597cb8ff --- /dev/null +++ b/static/icons/add.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/add_1.svg b/static/icons/add_1.svg new file mode 100644 index 00000000..7cd8d42f --- /dev/null +++ b/static/icons/add_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/addthis-brands-and-logotypes.svg b/static/icons/addthis-brands-and-logotypes.svg new file mode 100644 index 00000000..fd7263c7 --- /dev/null +++ b/static/icons/addthis-brands-and-logotypes.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/adjust-spanner.svg b/static/icons/adjust-spanner.svg new file mode 100644 index 00000000..2d271758 --- /dev/null +++ b/static/icons/adjust-spanner.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/adobe-files-and-folders.svg b/static/icons/adobe-files-and-folders.svg new file mode 100644 index 00000000..7dead0d3 --- /dev/null +++ b/static/icons/adobe-files-and-folders.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/agenda-miscellaneous.svg b/static/icons/agenda-miscellaneous.svg new file mode 100644 index 00000000..e9670c1f --- /dev/null +++ b/static/icons/agenda-miscellaneous.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/agenda-phone-book.svg b/static/icons/agenda-phone-book.svg new file mode 100644 index 00000000..842777bb --- /dev/null +++ b/static/icons/agenda-phone-book.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/alarm-bell copy.svg b/static/icons/alarm-bell copy.svg new file mode 100644 index 00000000..795bc75a --- /dev/null +++ b/static/icons/alarm-bell copy.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/alarm-bell.svg b/static/icons/alarm-bell.svg new file mode 100644 index 00000000..6829114e --- /dev/null +++ b/static/icons/alarm-bell.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/alarm-silence.svg b/static/icons/alarm-silence.svg new file mode 100644 index 00000000..d4d1eb7f --- /dev/null +++ b/static/icons/alarm-silence.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/american-express.svg b/static/icons/american-express.svg new file mode 100644 index 00000000..b7e1e729 --- /dev/null +++ b/static/icons/american-express.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/anchor.svg b/static/icons/anchor.svg new file mode 100644 index 00000000..370e4ff9 --- /dev/null +++ b/static/icons/anchor.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/app-shop.svg b/static/icons/app-shop.svg new file mode 100644 index 00000000..eda0547c --- /dev/null +++ b/static/icons/app-shop.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/apple.svg b/static/icons/apple.svg new file mode 100644 index 00000000..d5b699ba --- /dev/null +++ b/static/icons/apple.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/arrows-swap.svg b/static/icons/arrows-swap.svg new file mode 100644 index 00000000..825dda67 --- /dev/null +++ b/static/icons/arrows-swap.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/attach-seo-and-web.svg b/static/icons/attach-seo-and-web.svg new file mode 100644 index 00000000..6bf27426 --- /dev/null +++ b/static/icons/attach-seo-and-web.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/avi.svg b/static/icons/avi.svg new file mode 100644 index 00000000..4197e3c6 --- /dev/null +++ b/static/icons/avi.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/backward.svg b/static/icons/backward.svg new file mode 100644 index 00000000..30d1bc96 --- /dev/null +++ b/static/icons/backward.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/backward_1.svg b/static/icons/backward_1.svg new file mode 100644 index 00000000..fb56bc66 --- /dev/null +++ b/static/icons/backward_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/backward_2.svg b/static/icons/backward_2.svg new file mode 100644 index 00000000..ff3300a6 --- /dev/null +++ b/static/icons/backward_2.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/backward_3.svg b/static/icons/backward_3.svg new file mode 100644 index 00000000..fe361d19 --- /dev/null +++ b/static/icons/backward_3.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/badge-discount.svg b/static/icons/badge-discount.svg new file mode 100644 index 00000000..b0be8423 --- /dev/null +++ b/static/icons/badge-discount.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/badge-new.svg b/static/icons/badge-new.svg new file mode 100644 index 00000000..ea7da36f --- /dev/null +++ b/static/icons/badge-new.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/balance-law.svg b/static/icons/balance-law.svg new file mode 100644 index 00000000..743d98a8 --- /dev/null +++ b/static/icons/balance-law.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/balance-law_1.svg b/static/icons/balance-law_1.svg new file mode 100644 index 00000000..1a2167b5 --- /dev/null +++ b/static/icons/balance-law_1.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/balloons-celebration.svg b/static/icons/balloons-celebration.svg new file mode 100644 index 00000000..b9f24147 --- /dev/null +++ b/static/icons/balloons-celebration.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bar-chart-bar-graph.svg b/static/icons/bar-chart-bar-graph.svg new file mode 100644 index 00000000..ec756d1f --- /dev/null +++ b/static/icons/bar-chart-bar-graph.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bar-chart-seo-and-web.svg b/static/icons/bar-chart-seo-and-web.svg new file mode 100644 index 00000000..c8127a24 --- /dev/null +++ b/static/icons/bar-chart-seo-and-web.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bar-chart-stats.svg b/static/icons/bar-chart-stats.svg new file mode 100644 index 00000000..a77beca3 --- /dev/null +++ b/static/icons/bar-chart-stats.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/barcode-product.svg b/static/icons/barcode-product.svg new file mode 100644 index 00000000..12ebcabb --- /dev/null +++ b/static/icons/barcode-product.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery-battery-level.svg b/static/icons/battery-battery-level.svg new file mode 100644 index 00000000..2029d4ed --- /dev/null +++ b/static/icons/battery-battery-level.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery.svg b/static/icons/battery.svg new file mode 100644 index 00000000..fc54ee20 --- /dev/null +++ b/static/icons/battery.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery_1.svg b/static/icons/battery_1.svg new file mode 100644 index 00000000..ca2b8ae8 --- /dev/null +++ b/static/icons/battery_1.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery_2.svg b/static/icons/battery_2.svg new file mode 100644 index 00000000..c2251e29 --- /dev/null +++ b/static/icons/battery_2.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery_3.svg b/static/icons/battery_3.svg new file mode 100644 index 00000000..592f9152 --- /dev/null +++ b/static/icons/battery_3.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery_4.svg b/static/icons/battery_4.svg new file mode 100644 index 00000000..a2eb8f18 --- /dev/null +++ b/static/icons/battery_4.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/battery_5.svg b/static/icons/battery_5.svg new file mode 100644 index 00000000..e1cdb7a5 --- /dev/null +++ b/static/icons/battery_5.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/beach-ocean.svg b/static/icons/beach-ocean.svg new file mode 100644 index 00000000..5aed60be --- /dev/null +++ b/static/icons/beach-ocean.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bebo-brands-and-logotypes.svg b/static/icons/bebo-brands-and-logotypes.svg new file mode 100644 index 00000000..20381f90 --- /dev/null +++ b/static/icons/bebo-brands-and-logotypes.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/behance.svg b/static/icons/behance.svg new file mode 100644 index 00000000..313037d4 --- /dev/null +++ b/static/icons/behance.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bench.svg b/static/icons/bench.svg new file mode 100644 index 00000000..95541592 --- /dev/null +++ b/static/icons/bench.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bible.svg b/static/icons/bible.svg new file mode 100644 index 00000000..b684b450 --- /dev/null +++ b/static/icons/bible.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/big-ben-uk.svg b/static/icons/big-ben-uk.svg new file mode 100644 index 00000000..fa72bc25 --- /dev/null +++ b/static/icons/big-ben-uk.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/billboard.svg b/static/icons/billboard.svg new file mode 100644 index 00000000..d88dd345 --- /dev/null +++ b/static/icons/billboard.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bing.svg b/static/icons/bing.svg new file mode 100644 index 00000000..d83b4ab4 --- /dev/null +++ b/static/icons/bing.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/binoculars-see.svg b/static/icons/binoculars-see.svg new file mode 100644 index 00000000..55be2ef4 --- /dev/null +++ b/static/icons/binoculars-see.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/blinder.svg b/static/icons/blinder.svg new file mode 100644 index 00000000..a0734a63 --- /dev/null +++ b/static/icons/blinder.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/block-not-allowed.svg b/static/icons/block-not-allowed.svg new file mode 100644 index 00000000..ea51b8f4 --- /dev/null +++ b/static/icons/block-not-allowed.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/blogger.svg b/static/icons/blogger.svg new file mode 100644 index 00000000..f4f264da --- /dev/null +++ b/static/icons/blogger.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/blood-donation-donation.svg b/static/icons/blood-donation-donation.svg new file mode 100644 index 00000000..5a1c6215 --- /dev/null +++ b/static/icons/blood-donation-donation.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/blood-donation.svg b/static/icons/blood-donation.svg new file mode 100644 index 00000000..c439e64e --- /dev/null +++ b/static/icons/blood-donation.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/blueprint.svg b/static/icons/blueprint.svg new file mode 100644 index 00000000..a947fe0e --- /dev/null +++ b/static/icons/blueprint.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bluetooth.svg b/static/icons/bluetooth.svg new file mode 100644 index 00000000..1935ceb3 --- /dev/null +++ b/static/icons/bluetooth.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bold-letter-b.svg b/static/icons/bold-letter-b.svg new file mode 100644 index 00000000..38deed9e --- /dev/null +++ b/static/icons/bold-letter-b.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bonfire-flame.svg b/static/icons/bonfire-flame.svg new file mode 100644 index 00000000..3be8664b --- /dev/null +++ b/static/icons/bonfire-flame.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/book.svg b/static/icons/book.svg new file mode 100644 index 00000000..e5adbc34 --- /dev/null +++ b/static/icons/book.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bookmark.svg b/static/icons/bookmark.svg new file mode 100644 index 00000000..88b4af78 --- /dev/null +++ b/static/icons/bookmark.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/box.svg b/static/icons/box.svg new file mode 100644 index 00000000..cc7addf9 --- /dev/null +++ b/static/icons/box.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/box_1.svg b/static/icons/box_1.svg new file mode 100644 index 00000000..206a66b4 --- /dev/null +++ b/static/icons/box_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bridge.svg b/static/icons/bridge.svg new file mode 100644 index 00000000..c75ea5e8 --- /dev/null +++ b/static/icons/bridge.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/briefcase.svg b/static/icons/briefcase.svg new file mode 100644 index 00000000..a76cb7a0 --- /dev/null +++ b/static/icons/briefcase.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/brightness-sun.svg b/static/icons/brightness-sun.svg new file mode 100644 index 00000000..5fa63fd8 --- /dev/null +++ b/static/icons/brightness-sun.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/brightness.svg b/static/icons/brightness.svg new file mode 100644 index 00000000..5d4efc6a --- /dev/null +++ b/static/icons/brightness.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/brightness_1.svg b/static/icons/brightness_1.svg new file mode 100644 index 00000000..e79743bb --- /dev/null +++ b/static/icons/brightness_1.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/brightness_2.svg b/static/icons/brightness_2.svg new file mode 100644 index 00000000..092ff4c3 --- /dev/null +++ b/static/icons/brightness_2.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/brightness_3.svg b/static/icons/brightness_3.svg new file mode 100644 index 00000000..b5bb4b46 --- /dev/null +++ b/static/icons/brightness_3.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/browser-lock.svg b/static/icons/browser-lock.svg new file mode 100644 index 00000000..e332d690 --- /dev/null +++ b/static/icons/browser-lock.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/browser-website.svg b/static/icons/browser-website.svg new file mode 100644 index 00000000..9126e14e --- /dev/null +++ b/static/icons/browser-website.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/browser-website_1.svg b/static/icons/browser-website_1.svg new file mode 100644 index 00000000..12e74516 --- /dev/null +++ b/static/icons/browser-website_1.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-architecture-and-city.svg b/static/icons/building-architecture-and-city.svg new file mode 100644 index 00000000..2f9f6d14 --- /dev/null +++ b/static/icons/building-architecture-and-city.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-architecture-and-city_1.svg b/static/icons/building-architecture-and-city_1.svg new file mode 100644 index 00000000..d56afe55 --- /dev/null +++ b/static/icons/building-architecture-and-city_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-city.svg b/static/icons/building-city.svg new file mode 100644 index 00000000..56e8e4f5 --- /dev/null +++ b/static/icons/building-city.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-skyscraper.svg b/static/icons/building-skyscraper.svg new file mode 100644 index 00000000..f09933fb --- /dev/null +++ b/static/icons/building-skyscraper.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-town.svg b/static/icons/building-town.svg new file mode 100644 index 00000000..e31ba01e --- /dev/null +++ b/static/icons/building-town.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/building-town_1.svg b/static/icons/building-town_1.svg new file mode 100644 index 00000000..e81011c4 --- /dev/null +++ b/static/icons/building-town_1.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/bus-stop.svg b/static/icons/bus-stop.svg new file mode 100644 index 00000000..a1ce4e86 --- /dev/null +++ b/static/icons/bus-stop.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cabinet.svg b/static/icons/cabinet.svg new file mode 100644 index 00000000..759c56c4 --- /dev/null +++ b/static/icons/cabinet.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cafe.svg b/static/icons/cafe.svg new file mode 100644 index 00000000..a298545c --- /dev/null +++ b/static/icons/cafe.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cage.svg b/static/icons/cage.svg new file mode 100644 index 00000000..4731bb9a --- /dev/null +++ b/static/icons/cage.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calculator.svg b/static/icons/calculator.svg new file mode 100644 index 00000000..1a78ada8 --- /dev/null +++ b/static/icons/calculator.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calculator_1.svg b/static/icons/calculator_1.svg new file mode 100644 index 00000000..e28a1843 --- /dev/null +++ b/static/icons/calculator_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calculator_2.svg b/static/icons/calculator_2.svg new file mode 100644 index 00000000..0528b57d --- /dev/null +++ b/static/icons/calculator_2.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calendar-date.svg b/static/icons/calendar-date.svg new file mode 100644 index 00000000..ed2f1854 --- /dev/null +++ b/static/icons/calendar-date.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calendar.svg b/static/icons/calendar.svg new file mode 100644 index 00000000..91627f8c --- /dev/null +++ b/static/icons/calendar.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calendar_1.svg b/static/icons/calendar_1.svg new file mode 100644 index 00000000..cecc6dd8 --- /dev/null +++ b/static/icons/calendar_1.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/calendars-calendar.svg b/static/icons/calendars-calendar.svg new file mode 100644 index 00000000..3917c4a7 --- /dev/null +++ b/static/icons/calendars-calendar.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/camcorder.svg b/static/icons/camcorder.svg new file mode 100644 index 00000000..ab7431ba --- /dev/null +++ b/static/icons/camcorder.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cancel-close.svg b/static/icons/cancel-close.svg new file mode 100644 index 00000000..8ba1837c --- /dev/null +++ b/static/icons/cancel-close.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cancel-multiply.svg b/static/icons/cancel-multiply.svg new file mode 100644 index 00000000..2c5eabb0 --- /dev/null +++ b/static/icons/cancel-multiply.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cancel.svg b/static/icons/cancel.svg new file mode 100644 index 00000000..49a88e64 --- /dev/null +++ b/static/icons/cancel.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/canoe.svg b/static/icons/canoe.svg new file mode 100644 index 00000000..d6168344 --- /dev/null +++ b/static/icons/canoe.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/caravan-camping.svg b/static/icons/caravan-camping.svg new file mode 100644 index 00000000..7ff1f786 --- /dev/null +++ b/static/icons/caravan-camping.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cart-logistics-delivery.svg b/static/icons/cart-logistics-delivery.svg new file mode 100644 index 00000000..dbb01997 --- /dev/null +++ b/static/icons/cart-logistics-delivery.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cathedral-of-saint-basil-russia.svg b/static/icons/cathedral-of-saint-basil-russia.svg new file mode 100644 index 00000000..1fffd83f --- /dev/null +++ b/static/icons/cathedral-of-saint-basil-russia.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cctv-camera.svg b/static/icons/cctv-camera.svg new file mode 100644 index 00000000..c6dc5d81 --- /dev/null +++ b/static/icons/cctv-camera.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cd.svg b/static/icons/cd.svg new file mode 100644 index 00000000..94e90e57 --- /dev/null +++ b/static/icons/cd.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/center-alignment-text.svg b/static/icons/center-alignment-text.svg new file mode 100644 index 00000000..040ddcd8 --- /dev/null +++ b/static/icons/center-alignment-text.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/charity-stand.svg b/static/icons/charity-stand.svg new file mode 100644 index 00000000..20e66272 --- /dev/null +++ b/static/icons/charity-stand.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat-communication.svg b/static/icons/chat-communication.svg new file mode 100644 index 00000000..06e43139 --- /dev/null +++ b/static/icons/chat-communication.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat-conversation.svg b/static/icons/chat-conversation.svg new file mode 100644 index 00000000..afd10cd0 --- /dev/null +++ b/static/icons/chat-conversation.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat.svg b/static/icons/chat.svg new file mode 100644 index 00000000..dbada12f --- /dev/null +++ b/static/icons/chat.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat_1.svg b/static/icons/chat_1.svg new file mode 100644 index 00000000..1544171b --- /dev/null +++ b/static/icons/chat_1.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat_2.svg b/static/icons/chat_2.svg new file mode 100644 index 00000000..e2a65a9a --- /dev/null +++ b/static/icons/chat_2.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chat_3.svg b/static/icons/chat_3.svg new file mode 100644 index 00000000..653d3e04 --- /dev/null +++ b/static/icons/chat_3.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/check-money.svg b/static/icons/check-money.svg new file mode 100644 index 00000000..3a5dd3cd --- /dev/null +++ b/static/icons/check-money.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/check-success.svg b/static/icons/check-success.svg new file mode 100644 index 00000000..64e91cc3 --- /dev/null +++ b/static/icons/check-success.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/checked-success.svg b/static/icons/checked-success.svg new file mode 100644 index 00000000..4e418841 --- /dev/null +++ b/static/icons/checked-success.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/checked-tick.svg b/static/icons/checked-tick.svg new file mode 100644 index 00000000..271e84be --- /dev/null +++ b/static/icons/checked-tick.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-angle.svg b/static/icons/chevron-angle.svg new file mode 100644 index 00000000..bedbd993 --- /dev/null +++ b/static/icons/chevron-angle.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-angle_1.svg b/static/icons/chevron-angle_1.svg new file mode 100644 index 00000000..56a86ae0 --- /dev/null +++ b/static/icons/chevron-angle_1.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-angle_2.svg b/static/icons/chevron-angle_2.svg new file mode 100644 index 00000000..e91a2809 --- /dev/null +++ b/static/icons/chevron-angle_2.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-angle_3.svg b/static/icons/chevron-angle_3.svg new file mode 100644 index 00000000..3147e8f9 --- /dev/null +++ b/static/icons/chevron-angle_3.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrow.svg b/static/icons/chevron-arrow.svg new file mode 100644 index 00000000..71e1b2d6 --- /dev/null +++ b/static/icons/chevron-arrow.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrowhead.svg b/static/icons/chevron-arrowhead.svg new file mode 100644 index 00000000..bbefa985 --- /dev/null +++ b/static/icons/chevron-arrowhead.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrowhead_1.svg b/static/icons/chevron-arrowhead_1.svg new file mode 100644 index 00000000..08caad49 --- /dev/null +++ b/static/icons/chevron-arrowhead_1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrowhead_2.svg b/static/icons/chevron-arrowhead_2.svg new file mode 100644 index 00000000..1ea14108 --- /dev/null +++ b/static/icons/chevron-arrowhead_2.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrowhead_3.svg b/static/icons/chevron-arrowhead_3.svg new file mode 100644 index 00000000..8971e006 --- /dev/null +++ b/static/icons/chevron-arrowhead_3.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-arrowhead_4.svg b/static/icons/chevron-arrowhead_4.svg new file mode 100644 index 00000000..0636c55c --- /dev/null +++ b/static/icons/chevron-arrowhead_4.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-down.svg b/static/icons/chevron-down.svg new file mode 100644 index 00000000..b17b228c --- /dev/null +++ b/static/icons/chevron-down.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-download.svg b/static/icons/chevron-download.svg new file mode 100644 index 00000000..453e9418 --- /dev/null +++ b/static/icons/chevron-download.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-military.svg b/static/icons/chevron-military.svg new file mode 100644 index 00000000..57285be4 --- /dev/null +++ b/static/icons/chevron-military.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-next.svg b/static/icons/chevron-next.svg new file mode 100644 index 00000000..ac249470 --- /dev/null +++ b/static/icons/chevron-next.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-next_1.svg b/static/icons/chevron-next_1.svg new file mode 100644 index 00000000..66a3f3a9 --- /dev/null +++ b/static/icons/chevron-next_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-next_2.svg b/static/icons/chevron-next_2.svg new file mode 100644 index 00000000..12032663 --- /dev/null +++ b/static/icons/chevron-next_2.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron-next_3.svg b/static/icons/chevron-next_3.svg new file mode 100644 index 00000000..8fbf27b8 --- /dev/null +++ b/static/icons/chevron-next_3.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron.svg b/static/icons/chevron.svg new file mode 100644 index 00000000..d50cf03c --- /dev/null +++ b/static/icons/chevron.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron_1.svg b/static/icons/chevron_1.svg new file mode 100644 index 00000000..edef886f --- /dev/null +++ b/static/icons/chevron_1.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chevron_2.svg b/static/icons/chevron_2.svg new file mode 100644 index 00000000..3debaf35 --- /dev/null +++ b/static/icons/chevron_2.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/chinese-temple-china.svg b/static/icons/chinese-temple-china.svg new file mode 100644 index 00000000..4bcd0195 --- /dev/null +++ b/static/icons/chinese-temple-china.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/christ-the-redeemer-rio-de-janeiro.svg b/static/icons/christ-the-redeemer-rio-de-janeiro.svg new file mode 100644 index 00000000..794c8088 --- /dev/null +++ b/static/icons/christ-the-redeemer-rio-de-janeiro.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/church.svg b/static/icons/church.svg new file mode 100644 index 00000000..0dd19e59 --- /dev/null +++ b/static/icons/church.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/city-hall-monument.svg b/static/icons/city-hall-monument.svg new file mode 100644 index 00000000..54be1827 --- /dev/null +++ b/static/icons/city-hall-monument.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/city-town.svg b/static/icons/city-town.svg new file mode 100644 index 00000000..b048f782 --- /dev/null +++ b/static/icons/city-town.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/clip-paper-clip.svg b/static/icons/clip-paper-clip.svg new file mode 100644 index 00000000..aaec9ed9 --- /dev/null +++ b/static/icons/clip-paper-clip.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/clipboard-list.svg b/static/icons/clipboard-list.svg new file mode 100644 index 00000000..817ac7e4 --- /dev/null +++ b/static/icons/clipboard-list.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/clock-time.svg b/static/icons/clock-time.svg new file mode 100644 index 00000000..108657be --- /dev/null +++ b/static/icons/clock-time.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/clock-watch.svg b/static/icons/clock-watch.svg new file mode 100644 index 00000000..7ee5d8ed --- /dev/null +++ b/static/icons/clock-watch.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/clock-watch_1.svg b/static/icons/clock-watch_1.svg new file mode 100644 index 00000000..4082f50b --- /dev/null +++ b/static/icons/clock-watch_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/close-up.svg b/static/icons/close-up.svg new file mode 100644 index 00000000..bbb1ced1 --- /dev/null +++ b/static/icons/close-up.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/close-up_1.svg b/static/icons/close-up_1.svg new file mode 100644 index 00000000..ac31f088 --- /dev/null +++ b/static/icons/close-up_1.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/close.svg b/static/icons/close.svg new file mode 100644 index 00000000..7e152bcf --- /dev/null +++ b/static/icons/close.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/closed.svg b/static/icons/closed.svg new file mode 100644 index 00000000..2cfe7de4 --- /dev/null +++ b/static/icons/closed.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-cloud-computing.svg b/static/icons/cloud-cloud-computing.svg new file mode 100644 index 00000000..06423857 --- /dev/null +++ b/static/icons/cloud-cloud-computing.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-computing-cloud.svg b/static/icons/cloud-computing-cloud.svg new file mode 100644 index 00000000..29f1a3ae --- /dev/null +++ b/static/icons/cloud-computing-cloud.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-computing-play.svg b/static/icons/cloud-computing-play.svg new file mode 100644 index 00000000..86196927 --- /dev/null +++ b/static/icons/cloud-computing-play.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-computing-warning.svg b/static/icons/cloud-computing-warning.svg new file mode 100644 index 00000000..e3e7b681 --- /dev/null +++ b/static/icons/cloud-computing-warning.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-sky.svg b/static/icons/cloud-sky.svg new file mode 100644 index 00000000..9c1a5871 --- /dev/null +++ b/static/icons/cloud-sky.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloud-weather.svg b/static/icons/cloud-weather.svg new file mode 100644 index 00000000..a385680f --- /dev/null +++ b/static/icons/cloud-weather.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloudy-cloud.svg b/static/icons/cloudy-cloud.svg new file mode 100644 index 00000000..1e882d9d --- /dev/null +++ b/static/icons/cloudy-cloud.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloudy-cloud_1.svg b/static/icons/cloudy-cloud_1.svg new file mode 100644 index 00000000..c6cb6fe7 --- /dev/null +++ b/static/icons/cloudy-cloud_1.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloudy-cloud_2.svg b/static/icons/cloudy-cloud_2.svg new file mode 100644 index 00000000..90558a24 --- /dev/null +++ b/static/icons/cloudy-cloud_2.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cloudy-night-cloud.svg b/static/icons/cloudy-night-cloud.svg new file mode 100644 index 00000000..7ad43d6d --- /dev/null +++ b/static/icons/cloudy-night-cloud.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/coding-code.svg b/static/icons/coding-code.svg new file mode 100644 index 00000000..be21b3ba --- /dev/null +++ b/static/icons/coding-code.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/coins-stack.svg b/static/icons/coins-stack.svg new file mode 100644 index 00000000..ff2a8c76 --- /dev/null +++ b/static/icons/coins-stack.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/columns-ui.svg b/static/icons/columns-ui.svg new file mode 100644 index 00000000..487c9c7a --- /dev/null +++ b/static/icons/columns-ui.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/compact-disc-cd.svg b/static/icons/compact-disc-cd.svg new file mode 100644 index 00000000..93a33aa1 --- /dev/null +++ b/static/icons/compact-disc-cd.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/compass.svg b/static/icons/compass.svg new file mode 100644 index 00000000..67fd13ec --- /dev/null +++ b/static/icons/compass.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/compress.svg b/static/icons/compress.svg new file mode 100644 index 00000000..dc8b1390 --- /dev/null +++ b/static/icons/compress.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/compress_1.svg b/static/icons/compress_1.svg new file mode 100644 index 00000000..2bcc31ca --- /dev/null +++ b/static/icons/compress_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/computer-electronics.svg b/static/icons/computer-electronics.svg new file mode 100644 index 00000000..fadce7cc --- /dev/null +++ b/static/icons/computer-electronics.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/computer-mouse-clicker.svg b/static/icons/computer-mouse-clicker.svg new file mode 100644 index 00000000..2956219c --- /dev/null +++ b/static/icons/computer-mouse-clicker.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/computer-tv.svg b/static/icons/computer-tv.svg new file mode 100644 index 00000000..7ab85e20 --- /dev/null +++ b/static/icons/computer-tv.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/conference-lectern.svg b/static/icons/conference-lectern.svg new file mode 100644 index 00000000..2e1033fe --- /dev/null +++ b/static/icons/conference-lectern.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/contact.svg b/static/icons/contact.svg new file mode 100644 index 00000000..bfd0472d --- /dev/null +++ b/static/icons/contact.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/contrast-control.svg b/static/icons/contrast-control.svg new file mode 100644 index 00000000..33cdd4ce --- /dev/null +++ b/static/icons/contrast-control.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/contrast.svg b/static/icons/contrast.svg new file mode 100644 index 00000000..f28a7e26 --- /dev/null +++ b/static/icons/contrast.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/controller-adjust.svg b/static/icons/controller-adjust.svg new file mode 100644 index 00000000..f655fcb3 --- /dev/null +++ b/static/icons/controller-adjust.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/conversation-chat.svg b/static/icons/conversation-chat.svg new file mode 100644 index 00000000..465c0006 --- /dev/null +++ b/static/icons/conversation-chat.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/conversation-chat_1.svg b/static/icons/conversation-chat_1.svg new file mode 100644 index 00000000..47b9c7a8 --- /dev/null +++ b/static/icons/conversation-chat_1.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/conversation-chat_2.svg b/static/icons/conversation-chat_2.svg new file mode 100644 index 00000000..dfad1e32 --- /dev/null +++ b/static/icons/conversation-chat_2.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/conversation-chat_3.svg b/static/icons/conversation-chat_3.svg new file mode 100644 index 00000000..c325a8da --- /dev/null +++ b/static/icons/conversation-chat_3.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/copy.svg b/static/icons/copy.svg new file mode 100644 index 00000000..c4ab4bee --- /dev/null +++ b/static/icons/copy.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/couple.svg b/static/icons/couple.svg new file mode 100644 index 00000000..9582346c --- /dev/null +++ b/static/icons/couple.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cpu.svg b/static/icons/cpu.svg new file mode 100644 index 00000000..27741291 --- /dev/null +++ b/static/icons/cpu.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card-lock.svg b/static/icons/credit-card-lock.svg new file mode 100644 index 00000000..6d21086d --- /dev/null +++ b/static/icons/credit-card-lock.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card-payment-method copy.svg b/static/icons/credit-card-payment-method copy.svg new file mode 100644 index 00000000..2acfb339 --- /dev/null +++ b/static/icons/credit-card-payment-method copy.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card-payment-method.svg b/static/icons/credit-card-payment-method.svg new file mode 100644 index 00000000..480f6472 --- /dev/null +++ b/static/icons/credit-card-payment-method.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card-payment-method_1.svg b/static/icons/credit-card-payment-method_1.svg new file mode 100644 index 00000000..2e0deb6c --- /dev/null +++ b/static/icons/credit-card-payment-method_1.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card.svg b/static/icons/credit-card.svg new file mode 100644 index 00000000..9ea6a82d --- /dev/null +++ b/static/icons/credit-card.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/credit-card_1.svg b/static/icons/credit-card_1.svg new file mode 100644 index 00000000..f9e554b9 --- /dev/null +++ b/static/icons/credit-card_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/crop.svg b/static/icons/crop.svg new file mode 100644 index 00000000..a14ab966 --- /dev/null +++ b/static/icons/crop.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/crotchet-semibreve.svg b/static/icons/crotchet-semibreve.svg new file mode 100644 index 00000000..71e0a9fe --- /dev/null +++ b/static/icons/crotchet-semibreve.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/css.svg b/static/icons/css.svg new file mode 100644 index 00000000..00355f7c --- /dev/null +++ b/static/icons/css.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cursor-ui.svg b/static/icons/cursor-ui.svg new file mode 100644 index 00000000..4615a024 --- /dev/null +++ b/static/icons/cursor-ui.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cursor.svg b/static/icons/cursor.svg new file mode 100644 index 00000000..bb0493e8 --- /dev/null +++ b/static/icons/cursor.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cursor_1.svg b/static/icons/cursor_1.svg new file mode 100644 index 00000000..b9f75e8e --- /dev/null +++ b/static/icons/cursor_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cursor_2.svg b/static/icons/cursor_2.svg new file mode 100644 index 00000000..a1564451 --- /dev/null +++ b/static/icons/cursor_2.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/customer-service-24-hours.svg b/static/icons/customer-service-24-hours.svg new file mode 100644 index 00000000..1b5d7e53 --- /dev/null +++ b/static/icons/customer-service-24-hours.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/cut-scissors.svg b/static/icons/cut-scissors.svg new file mode 100644 index 00000000..b0409ce5 --- /dev/null +++ b/static/icons/cut-scissors.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/date-calendar.svg b/static/icons/date-calendar.svg new file mode 100644 index 00000000..ad586667 --- /dev/null +++ b/static/icons/date-calendar.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/day-month.svg b/static/icons/day-month.svg new file mode 100644 index 00000000..aee23b64 --- /dev/null +++ b/static/icons/day-month.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/day-week.svg b/static/icons/day-week.svg new file mode 100644 index 00000000..09bf480a --- /dev/null +++ b/static/icons/day-week.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/day-week_1.svg b/static/icons/day-week_1.svg new file mode 100644 index 00000000..2789e1fc --- /dev/null +++ b/static/icons/day-week_1.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/deck-chair.svg b/static/icons/deck-chair.svg new file mode 100644 index 00000000..bd16034d --- /dev/null +++ b/static/icons/deck-chair.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete-bin.svg b/static/icons/delete-bin.svg new file mode 100644 index 00000000..20c5612b --- /dev/null +++ b/static/icons/delete-bin.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete.svg b/static/icons/delete.svg new file mode 100644 index 00000000..5d056f28 --- /dev/null +++ b/static/icons/delete.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_1.svg b/static/icons/delete_1.svg new file mode 100644 index 00000000..cb8e5f5f --- /dev/null +++ b/static/icons/delete_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_2.svg b/static/icons/delete_2.svg new file mode 100644 index 00000000..11d79330 --- /dev/null +++ b/static/icons/delete_2.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_3.svg b/static/icons/delete_3.svg new file mode 100644 index 00000000..aaabe8c3 --- /dev/null +++ b/static/icons/delete_3.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_4.svg b/static/icons/delete_4.svg new file mode 100644 index 00000000..4430e998 --- /dev/null +++ b/static/icons/delete_4.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_5.svg b/static/icons/delete_5.svg new file mode 100644 index 00000000..4977aa36 --- /dev/null +++ b/static/icons/delete_5.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delete_6.svg b/static/icons/delete_6.svg new file mode 100644 index 00000000..1780f442 --- /dev/null +++ b/static/icons/delete_6.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/delicious-brands-and-logotypes.svg b/static/icons/delicious-brands-and-logotypes.svg new file mode 100644 index 00000000..90135894 --- /dev/null +++ b/static/icons/delicious-brands-and-logotypes.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/demisemiquaver-semibreve.svg b/static/icons/demisemiquaver-semibreve.svg new file mode 100644 index 00000000..4e502d21 --- /dev/null +++ b/static/icons/demisemiquaver-semibreve.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/desert-cactus.svg b/static/icons/desert-cactus.svg new file mode 100644 index 00000000..c2d9875f --- /dev/null +++ b/static/icons/desert-cactus.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/desk-lamp.svg b/static/icons/desk-lamp.svg new file mode 100644 index 00000000..51970f54 --- /dev/null +++ b/static/icons/desk-lamp.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/devaluation-money.svg b/static/icons/devaluation-money.svg new file mode 100644 index 00000000..0b09da9e --- /dev/null +++ b/static/icons/devaluation-money.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/deviantart.svg b/static/icons/deviantart.svg new file mode 100644 index 00000000..d965a3bc --- /dev/null +++ b/static/icons/deviantart.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-arrows.svg b/static/icons/diagonal-arrow-arrows.svg new file mode 100644 index 00000000..215a23dd --- /dev/null +++ b/static/icons/diagonal-arrow-arrows.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-arrows_1.svg b/static/icons/diagonal-arrow-arrows_1.svg new file mode 100644 index 00000000..9f11314a --- /dev/null +++ b/static/icons/diagonal-arrow-arrows_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-arrows_2.svg b/static/icons/diagonal-arrow-arrows_2.svg new file mode 100644 index 00000000..6e08f3a2 --- /dev/null +++ b/static/icons/diagonal-arrow-arrows_2.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui.svg b/static/icons/diagonal-arrow-ui.svg new file mode 100644 index 00000000..8234354b --- /dev/null +++ b/static/icons/diagonal-arrow-ui.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_1.svg b/static/icons/diagonal-arrow-ui_1.svg new file mode 100644 index 00000000..6abb91ce --- /dev/null +++ b/static/icons/diagonal-arrow-ui_1.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_2.svg b/static/icons/diagonal-arrow-ui_2.svg new file mode 100644 index 00000000..2105d7d7 --- /dev/null +++ b/static/icons/diagonal-arrow-ui_2.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_3.svg b/static/icons/diagonal-arrow-ui_3.svg new file mode 100644 index 00000000..b12eb9cf --- /dev/null +++ b/static/icons/diagonal-arrow-ui_3.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_4.svg b/static/icons/diagonal-arrow-ui_4.svg new file mode 100644 index 00000000..b3f9fa10 --- /dev/null +++ b/static/icons/diagonal-arrow-ui_4.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_5.svg b/static/icons/diagonal-arrow-ui_5.svg new file mode 100644 index 00000000..e4f608d1 --- /dev/null +++ b/static/icons/diagonal-arrow-ui_5.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow-ui_6.svg b/static/icons/diagonal-arrow-ui_6.svg new file mode 100644 index 00000000..dbd242ee --- /dev/null +++ b/static/icons/diagonal-arrow-ui_6.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow.svg b/static/icons/diagonal-arrow.svg new file mode 100644 index 00000000..5c04781a --- /dev/null +++ b/static/icons/diagonal-arrow.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-arrow_1.svg b/static/icons/diagonal-arrow_1.svg new file mode 100644 index 00000000..48e443ce --- /dev/null +++ b/static/icons/diagonal-arrow_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-ui.svg b/static/icons/diagonal-ui.svg new file mode 100644 index 00000000..d2274a4b --- /dev/null +++ b/static/icons/diagonal-ui.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-ui_1.svg b/static/icons/diagonal-ui_1.svg new file mode 100644 index 00000000..26d51dce --- /dev/null +++ b/static/icons/diagonal-ui_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-ui_2.svg b/static/icons/diagonal-ui_2.svg new file mode 100644 index 00000000..713e8a14 --- /dev/null +++ b/static/icons/diagonal-ui_2.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diagonal-ui_3.svg b/static/icons/diagonal-ui_3.svg new file mode 100644 index 00000000..642216ca --- /dev/null +++ b/static/icons/diagonal-ui_3.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/digg-brands-and-logotypes.svg b/static/icons/digg-brands-and-logotypes.svg new file mode 100644 index 00000000..d009ecb8 --- /dev/null +++ b/static/icons/digg-brands-and-logotypes.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diners-club.svg b/static/icons/diners-club.svg new file mode 100644 index 00000000..fad9d2eb --- /dev/null +++ b/static/icons/diners-club.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/direction-placeholders.svg b/static/icons/direction-placeholders.svg new file mode 100644 index 00000000..9309757b --- /dev/null +++ b/static/icons/direction-placeholders.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/direction-route.svg b/static/icons/direction-route.svg new file mode 100644 index 00000000..562d3aa4 --- /dev/null +++ b/static/icons/direction-route.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/directional-direction.svg b/static/icons/directional-direction.svg new file mode 100644 index 00000000..c78649b0 --- /dev/null +++ b/static/icons/directional-direction.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/discman.svg b/static/icons/discman.svg new file mode 100644 index 00000000..6e0dec47 --- /dev/null +++ b/static/icons/discman.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/discount.svg b/static/icons/discount.svg new file mode 100644 index 00000000..eea173e5 --- /dev/null +++ b/static/icons/discount.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/diskette-save.svg b/static/icons/diskette-save.svg new file mode 100644 index 00000000..3ed125aa --- /dev/null +++ b/static/icons/diskette-save.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dislike.svg b/static/icons/dislike.svg new file mode 100644 index 00000000..fb7bb4ba --- /dev/null +++ b/static/icons/dislike.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/distance.svg b/static/icons/distance.svg new file mode 100644 index 00000000..edddff6d --- /dev/null +++ b/static/icons/distance.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/document.svg b/static/icons/document.svg new file mode 100644 index 00000000..ea136157 --- /dev/null +++ b/static/icons/document.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/document_1.svg b/static/icons/document_1.svg new file mode 100644 index 00000000..cd587622 --- /dev/null +++ b/static/icons/document_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dollar-money.svg b/static/icons/dollar-money.svg new file mode 100644 index 00000000..8f1e79d7 --- /dev/null +++ b/static/icons/dollar-money.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donate-donation.svg b/static/icons/donate-donation.svg new file mode 100644 index 00000000..d79ebfa2 --- /dev/null +++ b/static/icons/donate-donation.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donate-donation_1.svg b/static/icons/donate-donation_1.svg new file mode 100644 index 00000000..77b297ae --- /dev/null +++ b/static/icons/donate-donation_1.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donate-money.svg b/static/icons/donate-money.svg new file mode 100644 index 00000000..1b2efdcf --- /dev/null +++ b/static/icons/donate-money.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation-bank.svg b/static/icons/donation-bank.svg new file mode 100644 index 00000000..3a151c60 --- /dev/null +++ b/static/icons/donation-bank.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation-heart.svg b/static/icons/donation-heart.svg new file mode 100644 index 00000000..155fc36c --- /dev/null +++ b/static/icons/donation-heart.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation-money.svg b/static/icons/donation-money.svg new file mode 100644 index 00000000..7271e6bd --- /dev/null +++ b/static/icons/donation-money.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation-stand.svg b/static/icons/donation-stand.svg new file mode 100644 index 00000000..5896bd5f --- /dev/null +++ b/static/icons/donation-stand.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation.svg b/static/icons/donation.svg new file mode 100644 index 00000000..a0e589af --- /dev/null +++ b/static/icons/donation.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation_1.svg b/static/icons/donation_1.svg new file mode 100644 index 00000000..cbe295ca --- /dev/null +++ b/static/icons/donation_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/donation_2.svg b/static/icons/donation_2.svg new file mode 100644 index 00000000..13f49126 --- /dev/null +++ b/static/icons/donation_2.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dove-bird.svg b/static/icons/dove-bird.svg new file mode 100644 index 00000000..1df72cbb --- /dev/null +++ b/static/icons/dove-bird.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/down-arrow-arrows.svg b/static/icons/down-arrow-arrows.svg new file mode 100644 index 00000000..c2bc67ec --- /dev/null +++ b/static/icons/down-arrow-arrows.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/down-arrow-download.svg b/static/icons/down-arrow-download.svg new file mode 100644 index 00000000..ee94d225 --- /dev/null +++ b/static/icons/down-arrow-download.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/down-arrow-download_1.svg b/static/icons/down-arrow-download_1.svg new file mode 100644 index 00000000..a6dbea55 --- /dev/null +++ b/static/icons/down-arrow-download_1.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/down-arrow-ui.svg b/static/icons/down-arrow-ui.svg new file mode 100644 index 00000000..147142e8 --- /dev/null +++ b/static/icons/down-arrow-ui.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/down-arrow-ui_1.svg b/static/icons/down-arrow-ui_1.svg new file mode 100644 index 00000000..ac566724 --- /dev/null +++ b/static/icons/down-arrow-ui_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download-down-arrow.svg b/static/icons/download-down-arrow.svg new file mode 100644 index 00000000..f81359f2 --- /dev/null +++ b/static/icons/download-down-arrow.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download-file-download.svg b/static/icons/download-file-download.svg new file mode 100644 index 00000000..50650be9 --- /dev/null +++ b/static/icons/download-file-download.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download.svg b/static/icons/download.svg new file mode 100644 index 00000000..4d4fc3a2 --- /dev/null +++ b/static/icons/download.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download_1.svg b/static/icons/download_1.svg new file mode 100644 index 00000000..2ac33584 --- /dev/null +++ b/static/icons/download_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download_2.svg b/static/icons/download_2.svg new file mode 100644 index 00000000..09f3e3ef --- /dev/null +++ b/static/icons/download_2.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download_3.svg b/static/icons/download_3.svg new file mode 100644 index 00000000..609124db --- /dev/null +++ b/static/icons/download_3.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download_4.svg b/static/icons/download_4.svg new file mode 100644 index 00000000..596763f9 --- /dev/null +++ b/static/icons/download_4.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/download_5.svg b/static/icons/download_5.svg new file mode 100644 index 00000000..f0f43418 --- /dev/null +++ b/static/icons/download_5.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/drag.svg b/static/icons/drag.svg new file mode 100644 index 00000000..8e115f41 --- /dev/null +++ b/static/icons/drag.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dribbble-brands-and-logotypes.svg b/static/icons/dribbble-brands-and-logotypes.svg new file mode 100644 index 00000000..dd24f4b5 --- /dev/null +++ b/static/icons/dribbble-brands-and-logotypes.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dropbox.svg b/static/icons/dropbox.svg new file mode 100644 index 00000000..bc8c9b76 --- /dev/null +++ b/static/icons/dropbox.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dropper-dosage.svg b/static/icons/dropper-dosage.svg new file mode 100644 index 00000000..074fcf8e --- /dev/null +++ b/static/icons/dropper-dosage.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/dss-files-and-folders.svg b/static/icons/dss-files-and-folders.svg new file mode 100644 index 00000000..e0bdfdae --- /dev/null +++ b/static/icons/dss-files-and-folders.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/earth-globe-earth.svg b/static/icons/earth-globe-earth.svg new file mode 100644 index 00000000..f899adfa --- /dev/null +++ b/static/icons/earth-globe-earth.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/earth-globe-planet.svg b/static/icons/earth-globe-planet.svg new file mode 100644 index 00000000..82454343 --- /dev/null +++ b/static/icons/earth-globe-planet.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/ebay.svg b/static/icons/ebay.svg new file mode 100644 index 00000000..b747449c --- /dev/null +++ b/static/icons/ebay.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eclipse-moon.svg b/static/icons/eclipse-moon.svg new file mode 100644 index 00000000..017bf4c4 --- /dev/null +++ b/static/icons/eclipse-moon.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/ecology-ecology-and-environment.svg b/static/icons/ecology-ecology-and-environment.svg new file mode 100644 index 00000000..7a76387a --- /dev/null +++ b/static/icons/ecology-ecology-and-environment.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/edit-cutter.svg b/static/icons/edit-cutter.svg new file mode 100644 index 00000000..9add62f9 --- /dev/null +++ b/static/icons/edit-cutter.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/edit-pencil.svg b/static/icons/edit-pencil.svg new file mode 100644 index 00000000..a2cbf016 --- /dev/null +++ b/static/icons/edit-pencil.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eiffel-tower-landmark.svg b/static/icons/eiffel-tower-landmark.svg new file mode 100644 index 00000000..fdb48d49 --- /dev/null +++ b/static/icons/eiffel-tower-landmark.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eject-music-and-multimedia.svg b/static/icons/eject-music-and-multimedia.svg new file mode 100644 index 00000000..b5320b65 --- /dev/null +++ b/static/icons/eject-music-and-multimedia.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eject-video-player.svg b/static/icons/eject-video-player.svg new file mode 100644 index 00000000..b458bcfd --- /dev/null +++ b/static/icons/eject-video-player.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eject.svg b/static/icons/eject.svg new file mode 100644 index 00000000..5d7d6d13 --- /dev/null +++ b/static/icons/eject.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/electric-tower.svg b/static/icons/electric-tower.svg new file mode 100644 index 00000000..83037311 --- /dev/null +++ b/static/icons/electric-tower.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/email-mail.svg b/static/icons/email-mail.svg new file mode 100644 index 00000000..fc3a8c19 --- /dev/null +++ b/static/icons/email-mail.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/email-mail_1.svg b/static/icons/email-mail_1.svg new file mode 100644 index 00000000..4e4a3b01 --- /dev/null +++ b/static/icons/email-mail_1.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/email-mails.svg b/static/icons/email-mails.svg new file mode 100644 index 00000000..fb38a79c --- /dev/null +++ b/static/icons/email-mails.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/email.svg b/static/icons/email.svg new file mode 100644 index 00000000..f585d9c8 --- /dev/null +++ b/static/icons/email.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/email_1.svg b/static/icons/email_1.svg new file mode 100644 index 00000000..c414a75b --- /dev/null +++ b/static/icons/email_1.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/emails-mail.svg b/static/icons/emails-mail.svg new file mode 100644 index 00000000..e8b48e43 --- /dev/null +++ b/static/icons/emails-mail.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/employee-skills.svg b/static/icons/employee-skills.svg new file mode 100644 index 00000000..ac3e612f --- /dev/null +++ b/static/icons/employee-skills.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/employees-meeting.svg b/static/icons/employees-meeting.svg new file mode 100644 index 00000000..7f99588a --- /dev/null +++ b/static/icons/employees-meeting.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/envelope-mail.svg b/static/icons/envelope-mail.svg new file mode 100644 index 00000000..26be012e --- /dev/null +++ b/static/icons/envelope-mail.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eraser.svg b/static/icons/eraser.svg new file mode 100644 index 00000000..ae6166e5 --- /dev/null +++ b/static/icons/eraser.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eraser_1.svg b/static/icons/eraser_1.svg new file mode 100644 index 00000000..00738061 --- /dev/null +++ b/static/icons/eraser_1.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/ereader-ebook.svg b/static/icons/ereader-ebook.svg new file mode 100644 index 00000000..f63b3881 --- /dev/null +++ b/static/icons/ereader-ebook.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/euro.svg b/static/icons/euro.svg new file mode 100644 index 00000000..55f7730b --- /dev/null +++ b/static/icons/euro.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/evernote.svg b/static/icons/evernote.svg new file mode 100644 index 00000000..26e726c6 --- /dev/null +++ b/static/icons/evernote.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/excel.svg b/static/icons/excel.svg new file mode 100644 index 00000000..104ac5f2 --- /dev/null +++ b/static/icons/excel.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/exchange-change.svg b/static/icons/exchange-change.svg new file mode 100644 index 00000000..6ff6c990 --- /dev/null +++ b/static/icons/exchange-change.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/exchange-change_1.svg b/static/icons/exchange-change_1.svg new file mode 100644 index 00000000..a6d47d8e --- /dev/null +++ b/static/icons/exchange-change_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/exchange.svg b/static/icons/exchange.svg new file mode 100644 index 00000000..224a8fa4 --- /dev/null +++ b/static/icons/exchange.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/expand-fullscreen.svg b/static/icons/expand-fullscreen.svg new file mode 100644 index 00000000..7e8206d8 --- /dev/null +++ b/static/icons/expand-fullscreen.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/expand.svg b/static/icons/expand.svg new file mode 100644 index 00000000..4fa3cde8 --- /dev/null +++ b/static/icons/expand.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/expand_1.svg b/static/icons/expand_1.svg new file mode 100644 index 00000000..1a59fd17 --- /dev/null +++ b/static/icons/expand_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/expand_2.svg b/static/icons/expand_2.svg new file mode 100644 index 00000000..2c9f3cdb --- /dev/null +++ b/static/icons/expand_2.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/expand_3.svg b/static/icons/expand_3.svg new file mode 100644 index 00000000..fe443ec6 --- /dev/null +++ b/static/icons/expand_3.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/export.svg b/static/icons/export.svg new file mode 100644 index 00000000..1713111d --- /dev/null +++ b/static/icons/export.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/eye.svg b/static/icons/eye.svg new file mode 100644 index 00000000..39b25045 --- /dev/null +++ b/static/icons/eye.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/facebook.svg b/static/icons/facebook.svg new file mode 100644 index 00000000..2614043f --- /dev/null +++ b/static/icons/facebook.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/factory.svg b/static/icons/factory.svg new file mode 100644 index 00000000..8d9ae7dc --- /dev/null +++ b/static/icons/factory.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-backward-backward.svg b/static/icons/fast-backward-backward.svg new file mode 100644 index 00000000..7fa0b18b --- /dev/null +++ b/static/icons/fast-backward-backward.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-backward-backward_1.svg b/static/icons/fast-backward-backward_1.svg new file mode 100644 index 00000000..02880f17 --- /dev/null +++ b/static/icons/fast-backward-backward_1.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-forward-double.svg b/static/icons/fast-forward-double.svg new file mode 100644 index 00000000..7451f7f1 --- /dev/null +++ b/static/icons/fast-forward-double.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-forward-play.svg b/static/icons/fast-forward-play.svg new file mode 100644 index 00000000..716fbd38 --- /dev/null +++ b/static/icons/fast-forward-play.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-forward-ui.svg b/static/icons/fast-forward-ui.svg new file mode 100644 index 00000000..b6963275 --- /dev/null +++ b/static/icons/fast-forward-ui.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fast-forward.svg b/static/icons/fast-forward.svg new file mode 100644 index 00000000..146e6a1f --- /dev/null +++ b/static/icons/fast-forward.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/favorites-rate.svg b/static/icons/favorites-rate.svg new file mode 100644 index 00000000..ebfb9aa9 --- /dev/null +++ b/static/icons/favorites-rate.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/ferris-wheel.svg b/static/icons/ferris-wheel.svg new file mode 100644 index 00000000..190f42d7 --- /dev/null +++ b/static/icons/ferris-wheel.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-accept.svg b/static/icons/file-accept.svg new file mode 100644 index 00000000..3e5546a3 --- /dev/null +++ b/static/icons/file-accept.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-add.svg b/static/icons/file-add.svg new file mode 100644 index 00000000..666128b2 --- /dev/null +++ b/static/icons/file-add.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-audio.svg b/static/icons/file-audio.svg new file mode 100644 index 00000000..c1ee69ed --- /dev/null +++ b/static/icons/file-audio.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-cancel.svg b/static/icons/file-cancel.svg new file mode 100644 index 00000000..b0ffb64a --- /dev/null +++ b/static/icons/file-cancel.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-coding.svg b/static/icons/file-coding.svg new file mode 100644 index 00000000..b4b6096b --- /dev/null +++ b/static/icons/file-coding.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-document.svg b/static/icons/file-document.svg new file mode 100644 index 00000000..2c77f3be --- /dev/null +++ b/static/icons/file-document.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-files-and-folders.svg b/static/icons/file-files-and-folders.svg new file mode 100644 index 00000000..8ab044d4 --- /dev/null +++ b/static/icons/file-files-and-folders.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-files-and-folders_1.svg b/static/icons/file-files-and-folders_1.svg new file mode 100644 index 00000000..ef96862f --- /dev/null +++ b/static/icons/file-files-and-folders_1.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-files-and-folders_2.svg b/static/icons/file-files-and-folders_2.svg new file mode 100644 index 00000000..383c0470 --- /dev/null +++ b/static/icons/file-files-and-folders_2.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-remove.svg b/static/icons/file-remove.svg new file mode 100644 index 00000000..5d5446b0 --- /dev/null +++ b/static/icons/file-remove.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/file-video-file.svg b/static/icons/file-video-file.svg new file mode 100644 index 00000000..1468ecb6 --- /dev/null +++ b/static/icons/file-video-file.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/files-archive.svg b/static/icons/files-archive.svg new file mode 100644 index 00000000..0b26c003 --- /dev/null +++ b/static/icons/files-archive.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/files-document.svg b/static/icons/files-document.svg new file mode 100644 index 00000000..61f0c9c1 --- /dev/null +++ b/static/icons/files-document.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/files-files-and-folders.svg b/static/icons/files-files-and-folders.svg new file mode 100644 index 00000000..bc2a1e58 --- /dev/null +++ b/static/icons/files-files-and-folders.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/film-reel.svg b/static/icons/film-reel.svg new file mode 100644 index 00000000..783d1527 --- /dev/null +++ b/static/icons/film-reel.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/film-strip-negative-film.svg b/static/icons/film-strip-negative-film.svg new file mode 100644 index 00000000..79dc95f2 --- /dev/null +++ b/static/icons/film-strip-negative-film.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/film-strip.svg b/static/icons/film-strip.svg new file mode 100644 index 00000000..d5c0af6f --- /dev/null +++ b/static/icons/film-strip.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/finance-book-economy.svg b/static/icons/finance-book-economy.svg new file mode 100644 index 00000000..7c777113 --- /dev/null +++ b/static/icons/finance-book-economy.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fire-hydrant.svg b/static/icons/fire-hydrant.svg new file mode 100644 index 00000000..b75c70bc --- /dev/null +++ b/static/icons/fire-hydrant.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fla-files-and-folders.svg b/static/icons/fla-files-and-folders.svg new file mode 100644 index 00000000..481aaa90 --- /dev/null +++ b/static/icons/fla-files-and-folders.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/flashlight-tools-and-utensils.svg b/static/icons/flashlight-tools-and-utensils.svg new file mode 100644 index 00000000..7f8219db --- /dev/null +++ b/static/icons/flashlight-tools-and-utensils.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/flickr.svg b/static/icons/flickr.svg new file mode 100644 index 00000000..9b45b1e7 --- /dev/null +++ b/static/icons/flickr.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/flip-flops-sandals.svg b/static/icons/flip-flops-sandals.svg new file mode 100644 index 00000000..e7b44930 --- /dev/null +++ b/static/icons/flip-flops-sandals.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder-data-storage.svg b/static/icons/folder-data-storage.svg new file mode 100644 index 00000000..be11d12a --- /dev/null +++ b/static/icons/folder-data-storage.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder-files-and-folders.svg b/static/icons/folder-files-and-folders.svg new file mode 100644 index 00000000..1c28ccf6 --- /dev/null +++ b/static/icons/folder-files-and-folders.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder-files-and-folders_1.svg b/static/icons/folder-files-and-folders_1.svg new file mode 100644 index 00000000..079b1573 --- /dev/null +++ b/static/icons/folder-files-and-folders_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder-files-and-folders_2.svg b/static/icons/folder-files-and-folders_2.svg new file mode 100644 index 00000000..c4f92262 --- /dev/null +++ b/static/icons/folder-files-and-folders_2.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder.svg b/static/icons/folder.svg new file mode 100644 index 00000000..fa47b6c2 --- /dev/null +++ b/static/icons/folder.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder_1.svg b/static/icons/folder_1.svg new file mode 100644 index 00000000..5e7420b4 --- /dev/null +++ b/static/icons/folder_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder_2.svg b/static/icons/folder_2.svg new file mode 100644 index 00000000..49f9889f --- /dev/null +++ b/static/icons/folder_2.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder_3.svg b/static/icons/folder_3.svg new file mode 100644 index 00000000..e760b423 --- /dev/null +++ b/static/icons/folder_3.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/folder_4.svg b/static/icons/folder_4.svg new file mode 100644 index 00000000..e4b4f920 --- /dev/null +++ b/static/icons/folder_4.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/font.svg b/static/icons/font.svg new file mode 100644 index 00000000..179f5332 --- /dev/null +++ b/static/icons/font.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/forrst-brands-and-logotypes.svg b/static/icons/forrst-brands-and-logotypes.svg new file mode 100644 index 00000000..40aefb5a --- /dev/null +++ b/static/icons/forrst-brands-and-logotypes.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/forward-keyboard.svg b/static/icons/forward-keyboard.svg new file mode 100644 index 00000000..1ba53590 --- /dev/null +++ b/static/icons/forward-keyboard.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/forward-redo.svg b/static/icons/forward-redo.svg new file mode 100644 index 00000000..f1b84dda --- /dev/null +++ b/static/icons/forward-redo.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/forward.svg b/static/icons/forward.svg new file mode 100644 index 00000000..a4fa6e6c --- /dev/null +++ b/static/icons/forward.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fountain.svg b/static/icons/fountain.svg new file mode 100644 index 00000000..3cf9a1db --- /dev/null +++ b/static/icons/fountain.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/foursquare-brands-and-logotypes.svg b/static/icons/foursquare-brands-and-logotypes.svg new file mode 100644 index 00000000..7cf6efe4 --- /dev/null +++ b/static/icons/foursquare-brands-and-logotypes.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/foursquare-microsoft.svg b/static/icons/foursquare-microsoft.svg new file mode 100644 index 00000000..d888b31c --- /dev/null +++ b/static/icons/foursquare-microsoft.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/full-moon-moon.svg b/static/icons/full-moon-moon.svg new file mode 100644 index 00000000..534236bd --- /dev/null +++ b/static/icons/full-moon-moon.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/fullscreen.svg b/static/icons/fullscreen.svg new file mode 100644 index 00000000..8710618f --- /dev/null +++ b/static/icons/fullscreen.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/furniture-locker.svg b/static/icons/furniture-locker.svg new file mode 100644 index 00000000..e9ed55cc --- /dev/null +++ b/static/icons/furniture-locker.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/garbage-bin.svg b/static/icons/garbage-bin.svg new file mode 100644 index 00000000..f0f26877 --- /dev/null +++ b/static/icons/garbage-bin.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/geolocalization.svg b/static/icons/geolocalization.svg new file mode 100644 index 00000000..32803b18 --- /dev/null +++ b/static/icons/geolocalization.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/gif.svg b/static/icons/gif.svg new file mode 100644 index 00000000..ed8fbae7 --- /dev/null +++ b/static/icons/gif.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/gift-card.svg b/static/icons/gift-card.svg new file mode 100644 index 00000000..ad5e7a96 --- /dev/null +++ b/static/icons/gift-card.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/gift.svg b/static/icons/gift.svg new file mode 100644 index 00000000..63755e35 --- /dev/null +++ b/static/icons/gift.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/gift_1.svg b/static/icons/gift_1.svg new file mode 100644 index 00000000..b604f290 --- /dev/null +++ b/static/icons/gift_1.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/global-loupe.svg b/static/icons/global-loupe.svg new file mode 100644 index 00000000..9cbf5d41 --- /dev/null +++ b/static/icons/global-loupe.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/golden-gate-bridge.svg b/static/icons/golden-gate-bridge.svg new file mode 100644 index 00000000..3d14ce19 --- /dev/null +++ b/static/icons/golden-gate-bridge.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/google-plus.svg b/static/icons/google-plus.svg new file mode 100644 index 00000000..14eba3d3 --- /dev/null +++ b/static/icons/google-plus.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/grand-canyon.svg b/static/icons/grand-canyon.svg new file mode 100644 index 00000000..925df6b9 --- /dev/null +++ b/static/icons/grand-canyon.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/great-buddha-of-thailand-thailand.svg b/static/icons/great-buddha-of-thailand-thailand.svg new file mode 100644 index 00000000..26766923 --- /dev/null +++ b/static/icons/great-buddha-of-thailand-thailand.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/grooveshark-brands-and-logotypes.svg b/static/icons/grooveshark-brands-and-logotypes.svg new file mode 100644 index 00000000..ad555870 --- /dev/null +++ b/static/icons/grooveshark-brands-and-logotypes.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/group-multiple-users copy.svg b/static/icons/group-multiple-users copy.svg new file mode 100644 index 00000000..11a31a0b --- /dev/null +++ b/static/icons/group-multiple-users copy.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/group-multiple-users.svg b/static/icons/group-multiple-users.svg new file mode 100644 index 00000000..e5bc0f01 --- /dev/null +++ b/static/icons/group-multiple-users.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/group-talk.svg b/static/icons/group-talk.svg new file mode 100644 index 00000000..ba1fae9e --- /dev/null +++ b/static/icons/group-talk.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/group-user.svg b/static/icons/group-user.svg new file mode 100644 index 00000000..d63bc3a5 --- /dev/null +++ b/static/icons/group-user.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/growth.svg b/static/icons/growth.svg new file mode 100644 index 00000000..703254ca --- /dev/null +++ b/static/icons/growth.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/growth_1.svg b/static/icons/growth_1.svg new file mode 100644 index 00000000..0f316b87 --- /dev/null +++ b/static/icons/growth_1.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hail.svg b/static/icons/hail.svg new file mode 100644 index 00000000..4144845e --- /dev/null +++ b/static/icons/hail.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hamburger-burger.svg b/static/icons/hamburger-burger.svg new file mode 100644 index 00000000..7eecff02 --- /dev/null +++ b/static/icons/hamburger-burger.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hand-cooperation.svg b/static/icons/hand-cooperation.svg new file mode 100644 index 00000000..d6eabb11 --- /dev/null +++ b/static/icons/hand-cooperation.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/handshake-deal.svg b/static/icons/handshake-deal.svg new file mode 100644 index 00000000..fd7da3bc --- /dev/null +++ b/static/icons/handshake-deal.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/handshake.svg b/static/icons/handshake.svg new file mode 100644 index 00000000..d2ed056b --- /dev/null +++ b/static/icons/handshake.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hanger.svg b/static/icons/hanger.svg new file mode 100644 index 00000000..f7c3684a --- /dev/null +++ b/static/icons/hanger.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/headphone-headphones.svg b/static/icons/headphone-headphones.svg new file mode 100644 index 00000000..12dfb0cc --- /dev/null +++ b/static/icons/headphone-headphones.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/headphones.svg b/static/icons/headphones.svg new file mode 100644 index 00000000..8596d20f --- /dev/null +++ b/static/icons/headphones.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/headset.svg b/static/icons/headset.svg new file mode 100644 index 00000000..ab4bb67d --- /dev/null +++ b/static/icons/headset.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart-hospital.svg b/static/icons/heart-hospital.svg new file mode 100644 index 00000000..7a13fc77 --- /dev/null +++ b/static/icons/heart-hospital.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart-like.svg b/static/icons/heart-like.svg new file mode 100644 index 00000000..1ba4e41e --- /dev/null +++ b/static/icons/heart-like.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart-like_1.svg b/static/icons/heart-like_1.svg new file mode 100644 index 00000000..015f6e2f --- /dev/null +++ b/static/icons/heart-like_1.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart-like_2.svg b/static/icons/heart-like_2.svg new file mode 100644 index 00000000..b1bfda05 --- /dev/null +++ b/static/icons/heart-like_2.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart-shapes-and-symbols.svg b/static/icons/heart-shapes-and-symbols.svg new file mode 100644 index 00000000..3ddb8989 --- /dev/null +++ b/static/icons/heart-shapes-and-symbols.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart.svg b/static/icons/heart.svg new file mode 100644 index 00000000..5030bd31 --- /dev/null +++ b/static/icons/heart.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/heart_1.svg b/static/icons/heart_1.svg new file mode 100644 index 00000000..796f30ad --- /dev/null +++ b/static/icons/heart_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hearts-heart.svg b/static/icons/hearts-heart.svg new file mode 100644 index 00000000..d37bb69a --- /dev/null +++ b/static/icons/hearts-heart.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/helm.svg b/static/icons/helm.svg new file mode 100644 index 00000000..78d9057f --- /dev/null +++ b/static/icons/helm.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hemidemisemiquarver-semibreve.svg b/static/icons/hemidemisemiquarver-semibreve.svg new file mode 100644 index 00000000..5976f662 --- /dev/null +++ b/static/icons/hemidemisemiquarver-semibreve.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hide-blind.svg b/static/icons/hide-blind.svg new file mode 100644 index 00000000..12d18db6 --- /dev/null +++ b/static/icons/hide-blind.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/high-heels-fashion.svg b/static/icons/high-heels-fashion.svg new file mode 100644 index 00000000..103217a7 --- /dev/null +++ b/static/icons/high-heels-fashion.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hold-take.svg b/static/icons/hold-take.svg new file mode 100644 index 00000000..206a3d58 --- /dev/null +++ b/static/icons/hold-take.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/home-house.svg b/static/icons/home-house.svg new file mode 100644 index 00000000..0fe7a431 --- /dev/null +++ b/static/icons/home-house.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hospital-medical.svg b/static/icons/hospital-medical.svg new file mode 100644 index 00000000..cf4a2789 --- /dev/null +++ b/static/icons/hospital-medical.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hospital.svg b/static/icons/hospital.svg new file mode 100644 index 00000000..de64504c --- /dev/null +++ b/static/icons/hospital.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hospital_1.svg b/static/icons/hospital_1.svg new file mode 100644 index 00000000..c523045b --- /dev/null +++ b/static/icons/hospital_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hot-dog-stand.svg b/static/icons/hot-dog-stand.svg new file mode 100644 index 00000000..66ce9e73 --- /dev/null +++ b/static/icons/hot-dog-stand.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hourglass.svg b/static/icons/hourglass.svg new file mode 100644 index 00000000..de012c5e --- /dev/null +++ b/static/icons/hourglass.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hourglass_1.svg b/static/icons/hourglass_1.svg new file mode 100644 index 00000000..2973a24a --- /dev/null +++ b/static/icons/hourglass_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/hourglass_2.svg b/static/icons/hourglass_2.svg new file mode 100644 index 00000000..545f2e7b --- /dev/null +++ b/static/icons/hourglass_2.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/house-rural.svg b/static/icons/house-rural.svg new file mode 100644 index 00000000..4f78ce3a --- /dev/null +++ b/static/icons/house-rural.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/house.svg b/static/icons/house.svg new file mode 100644 index 00000000..d0b8883a --- /dev/null +++ b/static/icons/house.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/house_1.svg b/static/icons/house_1.svg new file mode 100644 index 00000000..47fb749c --- /dev/null +++ b/static/icons/house_1.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/house_2.svg b/static/icons/house_2.svg new file mode 100644 index 00000000..754b8db7 --- /dev/null +++ b/static/icons/house_2.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/html-code.svg b/static/icons/html-code.svg new file mode 100644 index 00000000..a823488f --- /dev/null +++ b/static/icons/html-code.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/html5.svg b/static/icons/html5.svg new file mode 100644 index 00000000..d5ddee3d --- /dev/null +++ b/static/icons/html5.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/human-resources-search.svg b/static/icons/human-resources-search.svg new file mode 100644 index 00000000..314d588a --- /dev/null +++ b/static/icons/human-resources-search.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/id-card-identity.svg b/static/icons/id-card-identity.svg new file mode 100644 index 00000000..51cc702f --- /dev/null +++ b/static/icons/id-card-identity.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/id-card.svg b/static/icons/id-card.svg new file mode 100644 index 00000000..32cc4a06 --- /dev/null +++ b/static/icons/id-card.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/image.svg b/static/icons/image.svg new file mode 100644 index 00000000..6a8418ef --- /dev/null +++ b/static/icons/image.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/image_1.svg b/static/icons/image_1.svg new file mode 100644 index 00000000..bc016e29 --- /dev/null +++ b/static/icons/image_1.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/import.svg b/static/icons/import.svg new file mode 100644 index 00000000..65b1f6ef --- /dev/null +++ b/static/icons/import.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/inbox-download.svg b/static/icons/inbox-download.svg new file mode 100644 index 00000000..077a6db7 --- /dev/null +++ b/static/icons/inbox-download.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/inbox-mail.svg b/static/icons/inbox-mail.svg new file mode 100644 index 00000000..fdc02abf --- /dev/null +++ b/static/icons/inbox-mail.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/inbox.svg b/static/icons/inbox.svg new file mode 100644 index 00000000..ea171ea3 --- /dev/null +++ b/static/icons/inbox.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/indd-files-and-folders.svg b/static/icons/indd-files-and-folders.svg new file mode 100644 index 00000000..704b68f8 --- /dev/null +++ b/static/icons/indd-files-and-folders.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/indent.svg b/static/icons/indent.svg new file mode 100644 index 00000000..5a61c262 --- /dev/null +++ b/static/icons/indent.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/instagram.svg b/static/icons/instagram.svg new file mode 100644 index 00000000..f678101d --- /dev/null +++ b/static/icons/instagram.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/insurance.svg b/static/icons/insurance.svg new file mode 100644 index 00000000..b56ce432 --- /dev/null +++ b/static/icons/insurance.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/invoice-bill.svg b/static/icons/invoice-bill.svg new file mode 100644 index 00000000..25b95419 --- /dev/null +++ b/static/icons/invoice-bill.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/island.svg b/static/icons/island.svg new file mode 100644 index 00000000..fd39c5a1 --- /dev/null +++ b/static/icons/island.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/island_1.svg b/static/icons/island_1.svg new file mode 100644 index 00000000..03ef6e7c --- /dev/null +++ b/static/icons/island_1.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/iso.svg b/static/icons/iso.svg new file mode 100644 index 00000000..b0cebb1a --- /dev/null +++ b/static/icons/iso.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/italic.svg b/static/icons/italic.svg new file mode 100644 index 00000000..4f173c4e --- /dev/null +++ b/static/icons/italic.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/jar-jar-file.svg b/static/icons/jar-jar-file.svg new file mode 100644 index 00000000..ba0d6680 --- /dev/null +++ b/static/icons/jar-jar-file.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/joystick-gamepad.svg b/static/icons/joystick-gamepad.svg new file mode 100644 index 00000000..066fab22 --- /dev/null +++ b/static/icons/joystick-gamepad.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/justify-align-justify.svg b/static/icons/justify-align-justify.svg new file mode 100644 index 00000000..e98f934e --- /dev/null +++ b/static/icons/justify-align-justify.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/justify-text.svg b/static/icons/justify-text.svg new file mode 100644 index 00000000..fc587e3c --- /dev/null +++ b/static/icons/justify-text.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/key-access.svg b/static/icons/key-access.svg new file mode 100644 index 00000000..821d7b0f --- /dev/null +++ b/static/icons/key-access.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/keyboard.svg b/static/icons/keyboard.svg new file mode 100644 index 00000000..d328e0c0 --- /dev/null +++ b/static/icons/keyboard.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/kickstarter.svg b/static/icons/kickstarter.svg new file mode 100644 index 00000000..dd36dafa --- /dev/null +++ b/static/icons/kickstarter.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/landscape-moon.svg b/static/icons/landscape-moon.svg new file mode 100644 index 00000000..61a0f331 --- /dev/null +++ b/static/icons/landscape-moon.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/laptop.svg b/static/icons/laptop.svg new file mode 100644 index 00000000..b5515aff --- /dev/null +++ b/static/icons/laptop.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lastfm-brands-and-logotypes.svg b/static/icons/lastfm-brands-and-logotypes.svg new file mode 100644 index 00000000..5aa9ae01 --- /dev/null +++ b/static/icons/lastfm-brands-and-logotypes.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/layer-ruler.svg b/static/icons/layer-ruler.svg new file mode 100644 index 00000000..c2ca4446 --- /dev/null +++ b/static/icons/layer-ruler.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/leaning-tower-of-pisa-europe.svg b/static/icons/leaning-tower-of-pisa-europe.svg new file mode 100644 index 00000000..76c830db --- /dev/null +++ b/static/icons/leaning-tower-of-pisa-europe.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-alignment-alignment.svg b/static/icons/left-alignment-alignment.svg new file mode 100644 index 00000000..a73f71f2 --- /dev/null +++ b/static/icons/left-alignment-alignment.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-alignment-text.svg b/static/icons/left-alignment-text.svg new file mode 100644 index 00000000..f7d834e9 --- /dev/null +++ b/static/icons/left-alignment-text.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-alignment-text_1.svg b/static/icons/left-alignment-text_1.svg new file mode 100644 index 00000000..001eb482 --- /dev/null +++ b/static/icons/left-alignment-text_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-arrow-back.svg b/static/icons/left-arrow-back.svg new file mode 100644 index 00000000..af141ca5 --- /dev/null +++ b/static/icons/left-arrow-back.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-arrow-back_1.svg b/static/icons/left-arrow-back_1.svg new file mode 100644 index 00000000..7f28bfe9 --- /dev/null +++ b/static/icons/left-arrow-back_1.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-arrow-back_2.svg b/static/icons/left-arrow-back_2.svg new file mode 100644 index 00000000..1cf19b95 --- /dev/null +++ b/static/icons/left-arrow-back_2.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/left-arrow.svg b/static/icons/left-arrow.svg new file mode 100644 index 00000000..9b2ac6de --- /dev/null +++ b/static/icons/left-arrow.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-adjust.svg b/static/icons/levels-adjust.svg new file mode 100644 index 00000000..620adb1d --- /dev/null +++ b/static/icons/levels-adjust.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-ui.svg b/static/icons/levels-ui.svg new file mode 100644 index 00000000..9118d78e --- /dev/null +++ b/static/icons/levels-ui.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-ui_1.svg b/static/icons/levels-ui_1.svg new file mode 100644 index 00000000..a9e33270 --- /dev/null +++ b/static/icons/levels-ui_1.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-ui_2.svg b/static/icons/levels-ui_2.svg new file mode 100644 index 00000000..f2641feb --- /dev/null +++ b/static/icons/levels-ui_2.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-ui_3.svg b/static/icons/levels-ui_3.svg new file mode 100644 index 00000000..3bec3dd9 --- /dev/null +++ b/static/icons/levels-ui_3.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/levels-ui_4.svg b/static/icons/levels-ui_4.svg new file mode 100644 index 00000000..31c3eb9d --- /dev/null +++ b/static/icons/levels-ui_4.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lifesaver-help.svg b/static/icons/lifesaver-help.svg new file mode 100644 index 00000000..ea69c041 --- /dev/null +++ b/static/icons/lifesaver-help.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lifesaver-help_1.svg b/static/icons/lifesaver-help_1.svg new file mode 100644 index 00000000..4f826f68 --- /dev/null +++ b/static/icons/lifesaver-help_1.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/light-bulb-idea.svg b/static/icons/light-bulb-idea.svg new file mode 100644 index 00000000..d1d62455 --- /dev/null +++ b/static/icons/light-bulb-idea.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lighter.svg b/static/icons/lighter.svg new file mode 100644 index 00000000..2c7a0648 --- /dev/null +++ b/static/icons/lighter.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lightning.svg b/static/icons/lightning.svg new file mode 100644 index 00000000..e5e87274 --- /dev/null +++ b/static/icons/lightning.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/like.svg b/static/icons/like.svg new file mode 100644 index 00000000..4c86714a --- /dev/null +++ b/static/icons/like.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/link.svg b/static/icons/link.svg new file mode 100644 index 00000000..36f19c32 --- /dev/null +++ b/static/icons/link.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/link_1.svg b/static/icons/link_1.svg new file mode 100644 index 00000000..4d31b4d4 --- /dev/null +++ b/static/icons/link_1.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/linkedin.svg b/static/icons/linkedin.svg new file mode 100644 index 00000000..fe8202fa --- /dev/null +++ b/static/icons/linkedin.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/list-menu.svg b/static/icons/list-menu.svg new file mode 100644 index 00000000..3cfdc86b --- /dev/null +++ b/static/icons/list-menu.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/list-menu_1.svg b/static/icons/list-menu_1.svg new file mode 100644 index 00000000..6c5f39ff --- /dev/null +++ b/static/icons/list-menu_1.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/list-tasks-dark.svg b/static/icons/list-tasks-dark.svg new file mode 100644 index 00000000..27f94ad5 --- /dev/null +++ b/static/icons/list-tasks-dark.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/icons/list-tasks.svg b/static/icons/list-tasks.svg new file mode 100644 index 00000000..9d2c8c55 --- /dev/null +++ b/static/icons/list-tasks.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/livejournal.svg b/static/icons/livejournal.svg new file mode 100644 index 00000000..76ce228d --- /dev/null +++ b/static/icons/livejournal.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loading.svg b/static/icons/loading.svg new file mode 100644 index 00000000..462d767f --- /dev/null +++ b/static/icons/loading.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loading_1.svg b/static/icons/loading_1.svg new file mode 100644 index 00000000..96a4c1e9 --- /dev/null +++ b/static/icons/loading_1.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loading_2.svg b/static/icons/loading_2.svg new file mode 100644 index 00000000..143b9fe2 --- /dev/null +++ b/static/icons/loading_2.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loading_3.svg b/static/icons/loading_3.svg new file mode 100644 index 00000000..096fca7b --- /dev/null +++ b/static/icons/loading_3.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loading_4.svg b/static/icons/loading_4.svg new file mode 100644 index 00000000..2c2d4273 --- /dev/null +++ b/static/icons/loading_4.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/locations-gps.svg b/static/icons/locations-gps.svg new file mode 100644 index 00000000..4b348129 --- /dev/null +++ b/static/icons/locations-gps.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-correct.svg b/static/icons/lock-correct.svg new file mode 100644 index 00000000..e9fa9c58 --- /dev/null +++ b/static/icons/lock-correct.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-correct_1.svg b/static/icons/lock-correct_1.svg new file mode 100644 index 00000000..139994f4 --- /dev/null +++ b/static/icons/lock-correct_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-security.svg b/static/icons/lock-security.svg new file mode 100644 index 00000000..7e161554 --- /dev/null +++ b/static/icons/lock-security.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-tools-and-utensils.svg b/static/icons/lock-tools-and-utensils.svg new file mode 100644 index 00000000..8f562aab --- /dev/null +++ b/static/icons/lock-tools-and-utensils.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-tools-and-utensils_1.svg b/static/icons/lock-tools-and-utensils_1.svg new file mode 100644 index 00000000..d96e39b0 --- /dev/null +++ b/static/icons/lock-tools-and-utensils_1.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-wrong.svg b/static/icons/lock-wrong.svg new file mode 100644 index 00000000..b9073f1c --- /dev/null +++ b/static/icons/lock-wrong.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock-wrong_1.svg b/static/icons/lock-wrong_1.svg new file mode 100644 index 00000000..bd5a75b4 --- /dev/null +++ b/static/icons/lock-wrong_1.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock.svg b/static/icons/lock.svg new file mode 100644 index 00000000..33313882 --- /dev/null +++ b/static/icons/lock.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock_1.svg b/static/icons/lock_1.svg new file mode 100644 index 00000000..01e65a48 --- /dev/null +++ b/static/icons/lock_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/lock_2.svg b/static/icons/lock_2.svg new file mode 100644 index 00000000..f286fe6a --- /dev/null +++ b/static/icons/lock_2.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/login.svg b/static/icons/login.svg new file mode 100644 index 00000000..d8db7411 --- /dev/null +++ b/static/icons/login.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/login_1.svg b/static/icons/login_1.svg new file mode 100644 index 00000000..aeb1feed --- /dev/null +++ b/static/icons/login_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/logout.svg b/static/icons/logout.svg new file mode 100644 index 00000000..2b6c04c1 --- /dev/null +++ b/static/icons/logout.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/logout_1.svg b/static/icons/logout_1.svg new file mode 100644 index 00000000..20ab756d --- /dev/null +++ b/static/icons/logout_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loss.svg b/static/icons/loss.svg new file mode 100644 index 00000000..d4db093e --- /dev/null +++ b/static/icons/loss.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loss_1.svg b/static/icons/loss_1.svg new file mode 100644 index 00000000..02af8d6f --- /dev/null +++ b/static/icons/loss_1.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/loss_2.svg b/static/icons/loss_2.svg new file mode 100644 index 00000000..04726938 --- /dev/null +++ b/static/icons/loss_2.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/magic-wand.svg b/static/icons/magic-wand.svg new file mode 100644 index 00000000..6eac344c --- /dev/null +++ b/static/icons/magic-wand.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mail.svg b/static/icons/mail.svg new file mode 100644 index 00000000..1eb00636 --- /dev/null +++ b/static/icons/mail.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mail_1.svg b/static/icons/mail_1.svg new file mode 100644 index 00000000..c89e9221 --- /dev/null +++ b/static/icons/mail_1.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/map-maps-and-flags.svg b/static/icons/map-maps-and-flags.svg new file mode 100644 index 00000000..13004507 --- /dev/null +++ b/static/icons/map-maps-and-flags.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/map-roll.svg b/static/icons/map-roll.svg new file mode 100644 index 00000000..5fcc2093 --- /dev/null +++ b/static/icons/map-roll.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/map-street-map.svg b/static/icons/map-street-map.svg new file mode 100644 index 00000000..a3763eac --- /dev/null +++ b/static/icons/map-street-map.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/map-street-map_1.svg b/static/icons/map-street-map_1.svg new file mode 100644 index 00000000..dafe6ea5 --- /dev/null +++ b/static/icons/map-street-map_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/map.svg b/static/icons/map.svg new file mode 100644 index 00000000..91e820e1 --- /dev/null +++ b/static/icons/map.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mastercard.svg b/static/icons/mastercard.svg new file mode 100644 index 00000000..221712e9 --- /dev/null +++ b/static/icons/mastercard.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/maximize-expand.svg b/static/icons/maximize-expand.svg new file mode 100644 index 00000000..357eb69f --- /dev/null +++ b/static/icons/maximize-expand.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/medal-award.svg b/static/icons/medal-award.svg new file mode 100644 index 00000000..7b3fd57c --- /dev/null +++ b/static/icons/medal-award.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/medal-quality.svg b/static/icons/medal-quality.svg new file mode 100644 index 00000000..441a9f78 --- /dev/null +++ b/static/icons/medal-quality.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/meeting-interview.svg b/static/icons/meeting-interview.svg new file mode 100644 index 00000000..19fea706 --- /dev/null +++ b/static/icons/meeting-interview.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/megaphone.svg b/static/icons/megaphone.svg new file mode 100644 index 00000000..4f248d44 --- /dev/null +++ b/static/icons/megaphone.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/megaphone_1.svg b/static/icons/megaphone_1.svg new file mode 100644 index 00000000..bb1b6674 --- /dev/null +++ b/static/icons/megaphone_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/megaphone_2.svg b/static/icons/megaphone_2.svg new file mode 100644 index 00000000..bc7fe13c --- /dev/null +++ b/static/icons/megaphone_2.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu-grid.svg b/static/icons/menu-grid.svg new file mode 100644 index 00000000..8435c47c --- /dev/null +++ b/static/icons/menu-grid.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu.svg b/static/icons/menu.svg new file mode 100644 index 00000000..b7afc0a5 --- /dev/null +++ b/static/icons/menu.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu_1.svg b/static/icons/menu_1.svg new file mode 100644 index 00000000..542e9a11 --- /dev/null +++ b/static/icons/menu_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu_2.svg b/static/icons/menu_2.svg new file mode 100644 index 00000000..eaf81a8e --- /dev/null +++ b/static/icons/menu_2.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu_3.svg b/static/icons/menu_3.svg new file mode 100644 index 00000000..fdca8119 --- /dev/null +++ b/static/icons/menu_3.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/menu_4.svg b/static/icons/menu_4.svg new file mode 100644 index 00000000..d651efab --- /dev/null +++ b/static/icons/menu_4.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/message-email.svg b/static/icons/message-email.svg new file mode 100644 index 00000000..67f07854 --- /dev/null +++ b/static/icons/message-email.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/message-mail.svg b/static/icons/message-mail.svg new file mode 100644 index 00000000..a9ad7600 --- /dev/null +++ b/static/icons/message-mail.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/microphone.svg b/static/icons/microphone.svg new file mode 100644 index 00000000..f13edd3d --- /dev/null +++ b/static/icons/microphone.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/microphone_1.svg b/static/icons/microphone_1.svg new file mode 100644 index 00000000..3c89433d --- /dev/null +++ b/static/icons/microphone_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/minim.svg b/static/icons/minim.svg new file mode 100644 index 00000000..02522a9b --- /dev/null +++ b/static/icons/minim.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/minimize-ui.svg b/static/icons/minimize-ui.svg new file mode 100644 index 00000000..e90e6def --- /dev/null +++ b/static/icons/minimize-ui.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/minus.svg b/static/icons/minus.svg new file mode 100644 index 00000000..af451b3d --- /dev/null +++ b/static/icons/minus.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/minus_1.svg b/static/icons/minus_1.svg new file mode 100644 index 00000000..ccc3c0fd --- /dev/null +++ b/static/icons/minus_1.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moais-chile.svg b/static/icons/moais-chile.svg new file mode 100644 index 00000000..b59d8078 --- /dev/null +++ b/static/icons/moais-chile.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mobile-phone-touch-screen.svg b/static/icons/mobile-phone-touch-screen.svg new file mode 100644 index 00000000..84c34dfd --- /dev/null +++ b/static/icons/mobile-phone-touch-screen.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mobile-phone-touch-screen_1.svg b/static/icons/mobile-phone-touch-screen_1.svg new file mode 100644 index 00000000..f712738d --- /dev/null +++ b/static/icons/mobile-phone-touch-screen_1.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mobile-phone-touch-screen_2.svg b/static/icons/mobile-phone-touch-screen_2.svg new file mode 100644 index 00000000..58177c7e --- /dev/null +++ b/static/icons/mobile-phone-touch-screen_2.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mobile-phone-touch-screen_3.svg b/static/icons/mobile-phone-touch-screen_3.svg new file mode 100644 index 00000000..06dee9a5 --- /dev/null +++ b/static/icons/mobile-phone-touch-screen_3.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mobile-phone-touch-screen_4.svg b/static/icons/mobile-phone-touch-screen_4.svg new file mode 100644 index 00000000..a635c46a --- /dev/null +++ b/static/icons/mobile-phone-touch-screen_4.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/modem.svg b/static/icons/modem.svg new file mode 100644 index 00000000..b4562e10 --- /dev/null +++ b/static/icons/modem.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-bag.svg b/static/icons/money-bag.svg new file mode 100644 index 00000000..a99bbfe3 --- /dev/null +++ b/static/icons/money-bag.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-cash.svg b/static/icons/money-cash.svg new file mode 100644 index 00000000..6be3f320 --- /dev/null +++ b/static/icons/money-cash.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-cash_1.svg b/static/icons/money-cash_1.svg new file mode 100644 index 00000000..07be9c9c --- /dev/null +++ b/static/icons/money-cash_1.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-cash_2.svg b/static/icons/money-cash_2.svg new file mode 100644 index 00000000..59311c04 --- /dev/null +++ b/static/icons/money-cash_2.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-pay.svg b/static/icons/money-pay.svg new file mode 100644 index 00000000..6e07388f --- /dev/null +++ b/static/icons/money-pay.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money-pay_1.svg b/static/icons/money-pay_1.svg new file mode 100644 index 00000000..d6617dae --- /dev/null +++ b/static/icons/money-pay_1.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money.svg b/static/icons/money.svg new file mode 100644 index 00000000..86600a9e --- /dev/null +++ b/static/icons/money.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/money_1.svg b/static/icons/money_1.svg new file mode 100644 index 00000000..0d190787 --- /dev/null +++ b/static/icons/money_1.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/monument-america.svg b/static/icons/monument-america.svg new file mode 100644 index 00000000..1ee029e9 --- /dev/null +++ b/static/icons/monument-america.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases-moon.svg b/static/icons/moon-phases-moon.svg new file mode 100644 index 00000000..a20ac7ac --- /dev/null +++ b/static/icons/moon-phases-moon.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases-moon_1.svg b/static/icons/moon-phases-moon_1.svg new file mode 100644 index 00000000..9b6382ec --- /dev/null +++ b/static/icons/moon-phases-moon_1.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases-moon_2.svg b/static/icons/moon-phases-moon_2.svg new file mode 100644 index 00000000..4d67a064 --- /dev/null +++ b/static/icons/moon-phases-moon_2.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases-moon_3.svg b/static/icons/moon-phases-moon_3.svg new file mode 100644 index 00000000..4ba26f77 --- /dev/null +++ b/static/icons/moon-phases-moon_3.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases.svg b/static/icons/moon-phases.svg new file mode 100644 index 00000000..08306f36 --- /dev/null +++ b/static/icons/moon-phases.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/moon-phases_1.svg b/static/icons/moon-phases_1.svg new file mode 100644 index 00000000..8f34d3e4 --- /dev/null +++ b/static/icons/moon-phases_1.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/more.svg b/static/icons/more.svg new file mode 100644 index 00000000..e6d1f398 --- /dev/null +++ b/static/icons/more.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/more_1.svg b/static/icons/more_1.svg new file mode 100644 index 00000000..c5f776cd --- /dev/null +++ b/static/icons/more_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mountains-altitude.svg b/static/icons/mountains-altitude.svg new file mode 100644 index 00000000..99ae1d84 --- /dev/null +++ b/static/icons/mountains-altitude.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mountains-altitude_1.svg b/static/icons/mountains-altitude_1.svg new file mode 100644 index 00000000..d653f13b --- /dev/null +++ b/static/icons/mountains-altitude_1.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mountains-mountain.svg b/static/icons/mountains-mountain.svg new file mode 100644 index 00000000..066ef6bb --- /dev/null +++ b/static/icons/mountains-mountain.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mountains-sky.svg b/static/icons/mountains-sky.svg new file mode 100644 index 00000000..9d3df397 --- /dev/null +++ b/static/icons/mountains-sky.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mouse.svg b/static/icons/mouse.svg new file mode 100644 index 00000000..458293c8 --- /dev/null +++ b/static/icons/mouse.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mov.svg b/static/icons/mov.svg new file mode 100644 index 00000000..22ebb7c4 --- /dev/null +++ b/static/icons/mov.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/move.svg b/static/icons/move.svg new file mode 100644 index 00000000..3c5d2704 --- /dev/null +++ b/static/icons/move.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/move_1.svg b/static/icons/move_1.svg new file mode 100644 index 00000000..e8d7d364 --- /dev/null +++ b/static/icons/move_1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/mp3.svg b/static/icons/mp3.svg new file mode 100644 index 00000000..92cf8ed6 --- /dev/null +++ b/static/icons/mp3.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/music-music-player.svg b/static/icons/music-music-player.svg new file mode 100644 index 00000000..8f02144e --- /dev/null +++ b/static/icons/music-music-player.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/music.svg b/static/icons/music.svg new file mode 100644 index 00000000..00536506 --- /dev/null +++ b/static/icons/music.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/music_1.svg b/static/icons/music_1.svg new file mode 100644 index 00000000..83bf2945 --- /dev/null +++ b/static/icons/music_1.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/myspace-microsoft.svg b/static/icons/myspace-microsoft.svg new file mode 100644 index 00000000..b6270d35 --- /dev/null +++ b/static/icons/myspace-microsoft.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/navigation-gps.svg b/static/icons/navigation-gps.svg new file mode 100644 index 00000000..5df15f3d --- /dev/null +++ b/static/icons/navigation-gps.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/next.svg b/static/icons/next.svg new file mode 100644 index 00000000..aa740b1f --- /dev/null +++ b/static/icons/next.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/next_1.svg b/static/icons/next_1.svg new file mode 100644 index 00000000..7bcb7a50 --- /dev/null +++ b/static/icons/next_1.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/next_2.svg b/static/icons/next_2.svg new file mode 100644 index 00000000..f91d5767 --- /dev/null +++ b/static/icons/next_2.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/next_3.svg b/static/icons/next_3.svg new file mode 100644 index 00000000..8f3b49be --- /dev/null +++ b/static/icons/next_3.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/next_4.svg b/static/icons/next_4.svg new file mode 100644 index 00000000..633f83cb --- /dev/null +++ b/static/icons/next_4.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/nfc.svg b/static/icons/nfc.svg new file mode 100644 index 00000000..886d1178 --- /dev/null +++ b/static/icons/nfc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/notepad-note.svg b/static/icons/notepad-note.svg new file mode 100644 index 00000000..047a5ce7 --- /dev/null +++ b/static/icons/notepad-note.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/notes-post-it.svg b/static/icons/notes-post-it.svg new file mode 100644 index 00000000..5376f06d --- /dev/null +++ b/static/icons/notes-post-it.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/notification.svg b/static/icons/notification.svg new file mode 100644 index 00000000..c52c92f6 --- /dev/null +++ b/static/icons/notification.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/office-chair-chair.svg b/static/icons/office-chair-chair.svg new file mode 100644 index 00000000..a18c30f8 --- /dev/null +++ b/static/icons/office-chair-chair.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/open-book-book.svg b/static/icons/open-book-book.svg new file mode 100644 index 00000000..5e8fbaa1 --- /dev/null +++ b/static/icons/open-book-book.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/open-book-book_1.svg b/static/icons/open-book-book_1.svg new file mode 100644 index 00000000..d7a2dbc7 --- /dev/null +++ b/static/icons/open-book-book_1.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/open-book.svg b/static/icons/open-book.svg new file mode 100644 index 00000000..4a152a1f --- /dev/null +++ b/static/icons/open-book.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/open-shop.svg b/static/icons/open-shop.svg new file mode 100644 index 00000000..ca2e6baf --- /dev/null +++ b/static/icons/open-shop.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/open.svg b/static/icons/open.svg new file mode 100644 index 00000000..20e1305e --- /dev/null +++ b/static/icons/open.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/opera.svg b/static/icons/opera.svg new file mode 100644 index 00000000..a7232a71 --- /dev/null +++ b/static/icons/opera.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/outbox-inbox.svg b/static/icons/outbox-inbox.svg new file mode 100644 index 00000000..9093c2cd --- /dev/null +++ b/static/icons/outbox-inbox.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/outbox.svg b/static/icons/outbox.svg new file mode 100644 index 00000000..67494bc8 --- /dev/null +++ b/static/icons/outbox.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/outdent-ui.svg b/static/icons/outdent-ui.svg new file mode 100644 index 00000000..3ed53c95 --- /dev/null +++ b/static/icons/outdent-ui.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/package-delivery.svg b/static/icons/package-delivery.svg new file mode 100644 index 00000000..d75e8565 --- /dev/null +++ b/static/icons/package-delivery.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/package.svg b/static/icons/package.svg new file mode 100644 index 00000000..9cf3a823 --- /dev/null +++ b/static/icons/package.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/padlock-lock.svg b/static/icons/padlock-lock.svg new file mode 100644 index 00000000..09190377 --- /dev/null +++ b/static/icons/padlock-lock.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paid.svg b/static/icons/paid.svg new file mode 100644 index 00000000..63fd479e --- /dev/null +++ b/static/icons/paid.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paint-brush-art-and-design.svg b/static/icons/paint-brush-art-and-design.svg new file mode 100644 index 00000000..912ea562 --- /dev/null +++ b/static/icons/paint-brush-art-and-design.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paint-brush-artist.svg b/static/icons/paint-brush-artist.svg new file mode 100644 index 00000000..af2492d4 --- /dev/null +++ b/static/icons/paint-brush-artist.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paint-bucket.svg b/static/icons/paint-bucket.svg new file mode 100644 index 00000000..c9db1795 --- /dev/null +++ b/static/icons/paint-bucket.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pamela-hat.svg b/static/icons/pamela-hat.svg new file mode 100644 index 00000000..3a932530 --- /dev/null +++ b/static/icons/pamela-hat.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pantone.svg b/static/icons/pantone.svg new file mode 100644 index 00000000..37fcba3d --- /dev/null +++ b/static/icons/pantone.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paper-plane-origami.svg b/static/icons/paper-plane-origami.svg new file mode 100644 index 00000000..3f7da2b5 --- /dev/null +++ b/static/icons/paper-plane-origami.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paperclip-tools-and-utensils.svg b/static/icons/paperclip-tools-and-utensils.svg new file mode 100644 index 00000000..cd610465 --- /dev/null +++ b/static/icons/paperclip-tools-and-utensils.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paragraph.svg b/static/icons/paragraph.svg new file mode 100644 index 00000000..1b384e5c --- /dev/null +++ b/static/icons/paragraph.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/parthenon-athens.svg b/static/icons/parthenon-athens.svg new file mode 100644 index 00000000..fc961a73 --- /dev/null +++ b/static/icons/parthenon-athens.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/password.svg b/static/icons/password.svg new file mode 100644 index 00000000..fbb70f37 --- /dev/null +++ b/static/icons/password.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/password_1.svg b/static/icons/password_1.svg new file mode 100644 index 00000000..c2aa75f1 --- /dev/null +++ b/static/icons/password_1.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paste-sheet.svg b/static/icons/paste-sheet.svg new file mode 100644 index 00000000..b50ad229 --- /dev/null +++ b/static/icons/paste-sheet.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pause.svg b/static/icons/pause.svg new file mode 100644 index 00000000..cb1df5d9 --- /dev/null +++ b/static/icons/pause.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pause_1.svg b/static/icons/pause_1.svg new file mode 100644 index 00000000..f4376bee --- /dev/null +++ b/static/icons/pause_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pause_2.svg b/static/icons/pause_2.svg new file mode 100644 index 00000000..a12cbe88 --- /dev/null +++ b/static/icons/pause_2.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/paypal.svg b/static/icons/paypal.svg new file mode 100644 index 00000000..63d0ef4e --- /dev/null +++ b/static/icons/paypal.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pdf.svg b/static/icons/pdf.svg new file mode 100644 index 00000000..3f8cb003 --- /dev/null +++ b/static/icons/pdf.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pen-writing.svg b/static/icons/pen-writing.svg new file mode 100644 index 00000000..28e39f55 --- /dev/null +++ b/static/icons/pen-writing.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pen.svg b/static/icons/pen.svg new file mode 100644 index 00000000..7cac6cee --- /dev/null +++ b/static/icons/pen.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pencil-compose.svg b/static/icons/pencil-compose.svg new file mode 100644 index 00000000..087e3ee0 --- /dev/null +++ b/static/icons/pencil-compose.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pencil-edit.svg b/static/icons/pencil-edit.svg new file mode 100644 index 00000000..c90f3222 --- /dev/null +++ b/static/icons/pencil-edit.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/percentage-discount.svg b/static/icons/percentage-discount.svg new file mode 100644 index 00000000..d307c805 --- /dev/null +++ b/static/icons/percentage-discount.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pet-house-kennel.svg b/static/icons/pet-house-kennel.svg new file mode 100644 index 00000000..3e6eaf46 --- /dev/null +++ b/static/icons/pet-house-kennel.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/phone-booth-architecture-and-city.svg b/static/icons/phone-booth-architecture-and-city.svg new file mode 100644 index 00000000..43fedb79 --- /dev/null +++ b/static/icons/phone-booth-architecture-and-city.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/photo-camera.svg b/static/icons/photo-camera.svg new file mode 100644 index 00000000..9458c9b9 --- /dev/null +++ b/static/icons/photo-camera.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/php.svg b/static/icons/php.svg new file mode 100644 index 00000000..1f181fe9 --- /dev/null +++ b/static/icons/php.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/piano.svg b/static/icons/piano.svg new file mode 100644 index 00000000..50ba700d --- /dev/null +++ b/static/icons/piano.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/picasa.svg b/static/icons/picasa.svg new file mode 100644 index 00000000..c414706e --- /dev/null +++ b/static/icons/picasa.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/picture-image.svg b/static/icons/picture-image.svg new file mode 100644 index 00000000..8157d97d --- /dev/null +++ b/static/icons/picture-image.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/picture-image_1.svg b/static/icons/picture-image_1.svg new file mode 100644 index 00000000..02515541 --- /dev/null +++ b/static/icons/picture-image_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/picture-photo.svg b/static/icons/picture-photo.svg new file mode 100644 index 00000000..dc9bc708 --- /dev/null +++ b/static/icons/picture-photo.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pie-chart-financial.svg b/static/icons/pie-chart-financial.svg new file mode 100644 index 00000000..33d38571 --- /dev/null +++ b/static/icons/pie-chart-financial.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pie-chart-financial_1.svg b/static/icons/pie-chart-financial_1.svg new file mode 100644 index 00000000..ba7d5c91 --- /dev/null +++ b/static/icons/pie-chart-financial_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pie-chart-presentation.svg b/static/icons/pie-chart-presentation.svg new file mode 100644 index 00000000..236a898f --- /dev/null +++ b/static/icons/pie-chart-presentation.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pie-chart.svg b/static/icons/pie-chart.svg new file mode 100644 index 00000000..4278b341 --- /dev/null +++ b/static/icons/pie-chart.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pie-chart_1.svg b/static/icons/pie-chart_1.svg new file mode 100644 index 00000000..f0af8f3e --- /dev/null +++ b/static/icons/pie-chart_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pills-pill.svg b/static/icons/pills-pill.svg new file mode 100644 index 00000000..936f2c9b --- /dev/null +++ b/static/icons/pills-pill.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pinterest.svg b/static/icons/pinterest.svg new file mode 100644 index 00000000..5fbc2a3d --- /dev/null +++ b/static/icons/pinterest.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-aim.svg b/static/icons/placeholder-aim.svg new file mode 100644 index 00000000..10e2624b --- /dev/null +++ b/static/icons/placeholder-aim.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-gps copy.svg b/static/icons/placeholder-gps copy.svg new file mode 100644 index 00000000..7b8ce570 --- /dev/null +++ b/static/icons/placeholder-gps copy.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-gps.svg b/static/icons/placeholder-gps.svg new file mode 100644 index 00000000..520f239c --- /dev/null +++ b/static/icons/placeholder-gps.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-gps_1.svg b/static/icons/placeholder-gps_1.svg new file mode 100644 index 00000000..5978f2e1 --- /dev/null +++ b/static/icons/placeholder-gps_1.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-gps_2.svg b/static/icons/placeholder-gps_2.svg new file mode 100644 index 00000000..78ae7174 --- /dev/null +++ b/static/icons/placeholder-gps_2.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-house.svg b/static/icons/placeholder-house.svg new file mode 100644 index 00000000..4229a649 --- /dev/null +++ b/static/icons/placeholder-house.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-map-pointer.svg b/static/icons/placeholder-map-pointer.svg new file mode 100644 index 00000000..6eee6021 --- /dev/null +++ b/static/icons/placeholder-map-pointer.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-maps-and-location.svg b/static/icons/placeholder-maps-and-location.svg new file mode 100644 index 00000000..8db1114c --- /dev/null +++ b/static/icons/placeholder-maps-and-location.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/placeholder-pin.svg b/static/icons/placeholder-pin.svg new file mode 100644 index 00000000..dec165e8 --- /dev/null +++ b/static/icons/placeholder-pin.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/planet-earth-global.svg b/static/icons/planet-earth-global.svg new file mode 100644 index 00000000..4abfc6cd --- /dev/null +++ b/static/icons/planet-earth-global.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/play-movie.svg b/static/icons/play-movie.svg new file mode 100644 index 00000000..9e344fea --- /dev/null +++ b/static/icons/play-movie.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/play.svg b/static/icons/play.svg new file mode 100644 index 00000000..a94c26db --- /dev/null +++ b/static/icons/play.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/play_1.svg b/static/icons/play_1.svg new file mode 100644 index 00000000..7937951a --- /dev/null +++ b/static/icons/play_1.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/plus-add.svg b/static/icons/plus-add.svg new file mode 100644 index 00000000..44df6aa5 --- /dev/null +++ b/static/icons/plus-add.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/plus.svg b/static/icons/plus.svg new file mode 100644 index 00000000..5dc850e8 --- /dev/null +++ b/static/icons/plus.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/png.svg b/static/icons/png.svg new file mode 100644 index 00000000..c4985215 --- /dev/null +++ b/static/icons/png.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-cursor.svg b/static/icons/pointer-cursor.svg new file mode 100644 index 00000000..2f76d18e --- /dev/null +++ b/static/icons/pointer-cursor.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-cursor_1.svg b/static/icons/pointer-cursor_1.svg new file mode 100644 index 00000000..5d1fa39d --- /dev/null +++ b/static/icons/pointer-cursor_1.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-hands-and-gestures.svg b/static/icons/pointer-hands-and-gestures.svg new file mode 100644 index 00000000..e6bf393b --- /dev/null +++ b/static/icons/pointer-hands-and-gestures.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-hands-and-gestures_1.svg b/static/icons/pointer-hands-and-gestures_1.svg new file mode 100644 index 00000000..bd5328ad --- /dev/null +++ b/static/icons/pointer-hands-and-gestures_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-pin.svg b/static/icons/pointer-pin.svg new file mode 100644 index 00000000..52e15d59 --- /dev/null +++ b/static/icons/pointer-pin.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer-point.svg b/static/icons/pointer-point.svg new file mode 100644 index 00000000..c5ac3e59 --- /dev/null +++ b/static/icons/pointer-point.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointer.svg b/static/icons/pointer.svg new file mode 100644 index 00000000..338dd6ed --- /dev/null +++ b/static/icons/pointer.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointing-left-hands-and-gestures.svg b/static/icons/pointing-left-hands-and-gestures.svg new file mode 100644 index 00000000..55399ee8 --- /dev/null +++ b/static/icons/pointing-left-hands-and-gestures.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pointing-right-finger.svg b/static/icons/pointing-right-finger.svg new file mode 100644 index 00000000..0efec01f --- /dev/null +++ b/static/icons/pointing-right-finger.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/polaroids-polaroid.svg b/static/icons/polaroids-polaroid.svg new file mode 100644 index 00000000..1b355a96 --- /dev/null +++ b/static/icons/polaroids-polaroid.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/police-police-station.svg b/static/icons/police-police-station.svg new file mode 100644 index 00000000..52d845e0 --- /dev/null +++ b/static/icons/police-police-station.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/position-gps.svg b/static/icons/position-gps.svg new file mode 100644 index 00000000..3f6b53d0 --- /dev/null +++ b/static/icons/position-gps.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/position-gps_1.svg b/static/icons/position-gps_1.svg new file mode 100644 index 00000000..a7565ff7 --- /dev/null +++ b/static/icons/position-gps_1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/position-map-pointer.svg b/static/icons/position-map-pointer.svg new file mode 100644 index 00000000..60e0a60e --- /dev/null +++ b/static/icons/position-map-pointer.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/position-maps-and-flags.svg b/static/icons/position-maps-and-flags.svg new file mode 100644 index 00000000..de3c4422 --- /dev/null +++ b/static/icons/position-maps-and-flags.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/position-stick-man.svg b/static/icons/position-stick-man.svg new file mode 100644 index 00000000..d029b7d8 --- /dev/null +++ b/static/icons/position-stick-man.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/postcard.svg b/static/icons/postcard.svg new file mode 100644 index 00000000..19212351 --- /dev/null +++ b/static/icons/postcard.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pot-saucepan.svg b/static/icons/pot-saucepan.svg new file mode 100644 index 00000000..38f908b2 --- /dev/null +++ b/static/icons/pot-saucepan.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pound-sterling.svg b/static/icons/pound-sterling.svg new file mode 100644 index 00000000..20924896 --- /dev/null +++ b/static/icons/pound-sterling.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/power-button-start-button.svg b/static/icons/power-button-start-button.svg new file mode 100644 index 00000000..c6c4e626 --- /dev/null +++ b/static/icons/power-button-start-button.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/power-on-power.svg b/static/icons/power-on-power.svg new file mode 100644 index 00000000..6fa7d9c5 --- /dev/null +++ b/static/icons/power-on-power.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/power-on-ui.svg b/static/icons/power-on-ui.svg new file mode 100644 index 00000000..34da17c1 --- /dev/null +++ b/static/icons/power-on-ui.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/powerpoint-ppt.svg b/static/icons/powerpoint-ppt.svg new file mode 100644 index 00000000..d1ca70da --- /dev/null +++ b/static/icons/powerpoint-ppt.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/preview.svg b/static/icons/preview.svg new file mode 100644 index 00000000..c37c3968 --- /dev/null +++ b/static/icons/preview.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/previous-back.svg b/static/icons/previous-back.svg new file mode 100644 index 00000000..07681da3 --- /dev/null +++ b/static/icons/previous-back.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/previous-return.svg b/static/icons/previous-return.svg new file mode 100644 index 00000000..2b567968 --- /dev/null +++ b/static/icons/previous-return.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/previous-return_1.svg b/static/icons/previous-return_1.svg new file mode 100644 index 00000000..6e2a6ad0 --- /dev/null +++ b/static/icons/previous-return_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/previous-ui.svg b/static/icons/previous-ui.svg new file mode 100644 index 00000000..e333f22d --- /dev/null +++ b/static/icons/previous-ui.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/price-tag-discount.svg b/static/icons/price-tag-discount.svg new file mode 100644 index 00000000..b1fb2025 --- /dev/null +++ b/static/icons/price-tag-discount.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/price-tag-tag.svg b/static/icons/price-tag-tag.svg new file mode 100644 index 00000000..5b554264 --- /dev/null +++ b/static/icons/price-tag-tag.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/print.svg b/static/icons/print.svg new file mode 100644 index 00000000..96b4290d --- /dev/null +++ b/static/icons/print.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/printer-print.svg b/static/icons/printer-print.svg new file mode 100644 index 00000000..0db61087 --- /dev/null +++ b/static/icons/printer-print.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/printer.svg b/static/icons/printer.svg new file mode 100644 index 00000000..a391f443 --- /dev/null +++ b/static/icons/printer.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-analytics.svg b/static/icons/profits-analytics.svg new file mode 100644 index 00000000..f870a3f3 --- /dev/null +++ b/static/icons/profits-analytics.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-bar-chart.svg b/static/icons/profits-bar-chart.svg new file mode 100644 index 00000000..738ae91a --- /dev/null +++ b/static/icons/profits-bar-chart.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-bar-chart_1.svg b/static/icons/profits-bar-chart_1.svg new file mode 100644 index 00000000..fa781c61 --- /dev/null +++ b/static/icons/profits-bar-chart_1.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-dollar.svg b/static/icons/profits-dollar.svg new file mode 100644 index 00000000..a4d83317 --- /dev/null +++ b/static/icons/profits-dollar.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-statistics copy.svg b/static/icons/profits-statistics copy.svg new file mode 100644 index 00000000..a1ccd463 --- /dev/null +++ b/static/icons/profits-statistics copy.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/profits-statistics.svg b/static/icons/profits-statistics.svg new file mode 100644 index 00000000..109c21cc --- /dev/null +++ b/static/icons/profits-statistics.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/projector-electronics.svg b/static/icons/projector-electronics.svg new file mode 100644 index 00000000..87fb12f3 --- /dev/null +++ b/static/icons/projector-electronics.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/propeller.svg b/static/icons/propeller.svg new file mode 100644 index 00000000..caa61b76 --- /dev/null +++ b/static/icons/propeller.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/propeller_1.svg b/static/icons/propeller_1.svg new file mode 100644 index 00000000..f3a33760 --- /dev/null +++ b/static/icons/propeller_1.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/psd.svg b/static/icons/psd.svg new file mode 100644 index 00000000..dfadd914 --- /dev/null +++ b/static/icons/psd.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/push-pin-attach.svg b/static/icons/push-pin-attach.svg new file mode 100644 index 00000000..b848467f --- /dev/null +++ b/static/icons/push-pin-attach.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/push-pin.svg b/static/icons/push-pin.svg new file mode 100644 index 00000000..6d83ac94 --- /dev/null +++ b/static/icons/push-pin.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pyramid.svg b/static/icons/pyramid.svg new file mode 100644 index 00000000..49623159 --- /dev/null +++ b/static/icons/pyramid.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/pyramids-desert.svg b/static/icons/pyramids-desert.svg new file mode 100644 index 00000000..07319a1d --- /dev/null +++ b/static/icons/pyramids-desert.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/radio.svg b/static/icons/radio.svg new file mode 100644 index 00000000..dba9b969 --- /dev/null +++ b/static/icons/radio.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rain-umbrella.svg b/static/icons/rain-umbrella.svg new file mode 100644 index 00000000..b5417f09 --- /dev/null +++ b/static/icons/rain-umbrella.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rain-weather.svg b/static/icons/rain-weather.svg new file mode 100644 index 00000000..2d01afba --- /dev/null +++ b/static/icons/rain-weather.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rain.svg b/static/icons/rain.svg new file mode 100644 index 00000000..6d64523b --- /dev/null +++ b/static/icons/rain.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rainbow.svg b/static/icons/rainbow.svg new file mode 100644 index 00000000..3c64c8d4 --- /dev/null +++ b/static/icons/rainbow.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/raindrop-teardrop.svg b/static/icons/raindrop-teardrop.svg new file mode 100644 index 00000000..6ab21152 --- /dev/null +++ b/static/icons/raindrop-teardrop.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rainy-morning-rain.svg b/static/icons/rainy-morning-rain.svg new file mode 100644 index 00000000..1cdb6ec0 --- /dev/null +++ b/static/icons/rainy-morning-rain.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rainy-rain.svg b/static/icons/rainy-rain.svg new file mode 100644 index 00000000..87963e94 --- /dev/null +++ b/static/icons/rainy-rain.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rec-circle.svg b/static/icons/rec-circle.svg new file mode 100644 index 00000000..11ef4726 --- /dev/null +++ b/static/icons/rec-circle.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rec-dot.svg b/static/icons/rec-dot.svg new file mode 100644 index 00000000..127ee840 --- /dev/null +++ b/static/icons/rec-dot.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rec.svg b/static/icons/rec.svg new file mode 100644 index 00000000..b332c773 --- /dev/null +++ b/static/icons/rec.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/redo.svg b/static/icons/redo.svg new file mode 100644 index 00000000..478a4d56 --- /dev/null +++ b/static/icons/redo.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/redo_1.svg b/static/icons/redo_1.svg new file mode 100644 index 00000000..162dbf12 --- /dev/null +++ b/static/icons/redo_1.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/redo_2.svg b/static/icons/redo_2.svg new file mode 100644 index 00000000..8db304cd --- /dev/null +++ b/static/icons/redo_2.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reflector-vest-rescue.svg b/static/icons/reflector-vest-rescue.svg new file mode 100644 index 00000000..0294e6ef --- /dev/null +++ b/static/icons/reflector-vest-rescue.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reforestation.svg b/static/icons/reforestation.svg new file mode 100644 index 00000000..d684e4f4 --- /dev/null +++ b/static/icons/reforestation.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/refresh-loading.svg b/static/icons/refresh-loading.svg new file mode 100644 index 00000000..1a787903 --- /dev/null +++ b/static/icons/refresh-loading.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/refresh-loading_1.svg b/static/icons/refresh-loading_1.svg new file mode 100644 index 00000000..7fdcb9fb --- /dev/null +++ b/static/icons/refresh-loading_1.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/refresh.svg b/static/icons/refresh.svg new file mode 100644 index 00000000..8fddd97d --- /dev/null +++ b/static/icons/refresh.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/remove-miscellaneous.svg b/static/icons/remove-miscellaneous.svg new file mode 100644 index 00000000..7b63c16b --- /dev/null +++ b/static/icons/remove-miscellaneous.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/remove-ui.svg b/static/icons/remove-ui.svg new file mode 100644 index 00000000..6bbe6fb2 --- /dev/null +++ b/static/icons/remove-ui.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/repeat.svg b/static/icons/repeat.svg new file mode 100644 index 00000000..299da7e6 --- /dev/null +++ b/static/icons/repeat.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reply.svg b/static/icons/reply.svg new file mode 100644 index 00000000..8f897f78 --- /dev/null +++ b/static/icons/reply.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reply_1.svg b/static/icons/reply_1.svg new file mode 100644 index 00000000..96eda7f3 --- /dev/null +++ b/static/icons/reply_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reply_2.svg b/static/icons/reply_2.svg new file mode 100644 index 00000000..ce8a91ad --- /dev/null +++ b/static/icons/reply_2.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/reply_3.svg b/static/icons/reply_3.svg new file mode 100644 index 00000000..47b9cf0f --- /dev/null +++ b/static/icons/reply_3.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/resize-double-arrows.svg b/static/icons/resize-double-arrows.svg new file mode 100644 index 00000000..48760850 --- /dev/null +++ b/static/icons/resize-double-arrows.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/resize-vertical-arrow.svg b/static/icons/resize-vertical-arrow.svg new file mode 100644 index 00000000..c4dc5646 --- /dev/null +++ b/static/icons/resize-vertical-arrow.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/resize.svg b/static/icons/resize.svg new file mode 100644 index 00000000..85a4464a --- /dev/null +++ b/static/icons/resize.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/resize_1.svg b/static/icons/resize_1.svg new file mode 100644 index 00000000..d342655e --- /dev/null +++ b/static/icons/resize_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/retirement.svg b/static/icons/retirement.svg new file mode 100644 index 00000000..98a00977 --- /dev/null +++ b/static/icons/retirement.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-alignment-text.svg b/static/icons/right-alignment-text.svg new file mode 100644 index 00000000..b5c01176 --- /dev/null +++ b/static/icons/right-alignment-text.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-alignment-text_1.svg b/static/icons/right-alignment-text_1.svg new file mode 100644 index 00000000..198e86e2 --- /dev/null +++ b/static/icons/right-alignment-text_1.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-arrow-forward.svg b/static/icons/right-arrow-forward.svg new file mode 100644 index 00000000..29ebb5f3 --- /dev/null +++ b/static/icons/right-arrow-forward.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-arrow-next.svg b/static/icons/right-arrow-next.svg new file mode 100644 index 00000000..0ddac4c3 --- /dev/null +++ b/static/icons/right-arrow-next.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-arrow-next_1.svg b/static/icons/right-arrow-next_1.svg new file mode 100644 index 00000000..6ddf4279 --- /dev/null +++ b/static/icons/right-arrow-next_1.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/right-arrow-ui.svg b/static/icons/right-arrow-ui.svg new file mode 100644 index 00000000..c78838a4 --- /dev/null +++ b/static/icons/right-arrow-ui.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/road.svg b/static/icons/road.svg new file mode 100644 index 00000000..8d9aed96 --- /dev/null +++ b/static/icons/road.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/route-start.svg b/static/icons/route-start.svg new file mode 100644 index 00000000..107a0b1b --- /dev/null +++ b/static/icons/route-start.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/rss.svg b/static/icons/rss.svg new file mode 100644 index 00000000..e2b201c4 --- /dev/null +++ b/static/icons/rss.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/safebox-bank.svg b/static/icons/safebox-bank.svg new file mode 100644 index 00000000..e16d76ef --- /dev/null +++ b/static/icons/safebox-bank.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sailing-yacht.svg b/static/icons/sailing-yacht.svg new file mode 100644 index 00000000..04e2c298 --- /dev/null +++ b/static/icons/sailing-yacht.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sale.svg b/static/icons/sale.svg new file mode 100644 index 00000000..f0ed94f2 --- /dev/null +++ b/static/icons/sale.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/satellite-dish-radar.svg b/static/icons/satellite-dish-radar.svg new file mode 100644 index 00000000..1d3f14c9 --- /dev/null +++ b/static/icons/satellite-dish-radar.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/satellite-dish-radar_1.svg b/static/icons/satellite-dish-radar_1.svg new file mode 100644 index 00000000..da61fd94 --- /dev/null +++ b/static/icons/satellite-dish-radar_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/save-save-file.svg b/static/icons/save-save-file.svg new file mode 100644 index 00000000..6c7ac656 --- /dev/null +++ b/static/icons/save-save-file.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/save-save-file_1.svg b/static/icons/save-save-file_1.svg new file mode 100644 index 00000000..f6e5f460 --- /dev/null +++ b/static/icons/save-save-file_1.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/scale-image.svg b/static/icons/scale-image.svg new file mode 100644 index 00000000..9ce9ce3f --- /dev/null +++ b/static/icons/scale-image.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/school-college.svg b/static/icons/school-college.svg new file mode 100644 index 00000000..e7b5b81e --- /dev/null +++ b/static/icons/school-college.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/scroll.svg b/static/icons/scroll.svg new file mode 100644 index 00000000..8a873b97 --- /dev/null +++ b/static/icons/scroll.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/scroll_1.svg b/static/icons/scroll_1.svg new file mode 100644 index 00000000..685e7cc5 --- /dev/null +++ b/static/icons/scroll_1.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/scroll_2.svg b/static/icons/scroll_2.svg new file mode 100644 index 00000000..f37a4d8e --- /dev/null +++ b/static/icons/scroll_2.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/search-magnifying-glass.svg b/static/icons/search-magnifying-glass.svg new file mode 100644 index 00000000..3a2a2312 --- /dev/null +++ b/static/icons/search-magnifying-glass.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/search-zoom.svg b/static/icons/search-zoom.svg new file mode 100644 index 00000000..090184ed --- /dev/null +++ b/static/icons/search-zoom.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/search.svg b/static/icons/search.svg new file mode 100644 index 00000000..ccc0e29d --- /dev/null +++ b/static/icons/search.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/search_1.svg b/static/icons/search_1.svg new file mode 100644 index 00000000..cfaa07fe --- /dev/null +++ b/static/icons/search_1.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/search_2.svg b/static/icons/search_2.svg new file mode 100644 index 00000000..ee123af5 --- /dev/null +++ b/static/icons/search_2.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/semibreve.svg b/static/icons/semibreve.svg new file mode 100644 index 00000000..4548326d --- /dev/null +++ b/static/icons/semibreve.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/semiquaver.svg b/static/icons/semiquaver.svg new file mode 100644 index 00000000..f489aed5 --- /dev/null +++ b/static/icons/semiquaver.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/server.svg b/static/icons/server.svg new file mode 100644 index 00000000..bdae26e1 --- /dev/null +++ b/static/icons/server.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/settings-cogwheel.svg b/static/icons/settings-cogwheel.svg new file mode 100644 index 00000000..cdeccdda --- /dev/null +++ b/static/icons/settings-cogwheel.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/settings-gear.svg b/static/icons/settings-gear.svg new file mode 100644 index 00000000..75e4afc2 --- /dev/null +++ b/static/icons/settings-gear.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/settings-gear_1.svg b/static/icons/settings-gear_1.svg new file mode 100644 index 00000000..7ce97ae1 --- /dev/null +++ b/static/icons/settings-gear_1.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/settings-gear_2.svg b/static/icons/settings-gear_2.svg new file mode 100644 index 00000000..7effae53 --- /dev/null +++ b/static/icons/settings-gear_2.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/share.svg b/static/icons/share.svg new file mode 100644 index 00000000..0c064754 --- /dev/null +++ b/static/icons/share.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shield-security-system.svg b/static/icons/shield-security-system.svg new file mode 100644 index 00000000..83fa65be --- /dev/null +++ b/static/icons/shield-security-system.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shield.svg b/static/icons/shield.svg new file mode 100644 index 00000000..bdd00b49 --- /dev/null +++ b/static/icons/shield.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shield_1.svg b/static/icons/shield_1.svg new file mode 100644 index 00000000..29d250e6 --- /dev/null +++ b/static/icons/shield_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shield_2.svg b/static/icons/shield_2.svg new file mode 100644 index 00000000..354f7712 --- /dev/null +++ b/static/icons/shield_2.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shirt.svg b/static/icons/shirt.svg new file mode 100644 index 00000000..a0b23065 --- /dev/null +++ b/static/icons/shirt.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shirt_1.svg b/static/icons/shirt_1.svg new file mode 100644 index 00000000..5c22f0ab --- /dev/null +++ b/static/icons/shirt_1.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shop-architecture-and-city.svg b/static/icons/shop-architecture-and-city.svg new file mode 100644 index 00000000..bc697149 --- /dev/null +++ b/static/icons/shop-architecture-and-city.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shop-chinese.svg b/static/icons/shop-chinese.svg new file mode 100644 index 00000000..677471ac --- /dev/null +++ b/static/icons/shop-chinese.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shop.svg b/static/icons/shop.svg new file mode 100644 index 00000000..6377a13c --- /dev/null +++ b/static/icons/shop.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-bag.svg b/static/icons/shopping-bag.svg new file mode 100644 index 00000000..52edfe5b --- /dev/null +++ b/static/icons/shopping-bag.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-basket-remove.svg b/static/icons/shopping-basket-remove.svg new file mode 100644 index 00000000..4f3f9eb5 --- /dev/null +++ b/static/icons/shopping-basket-remove.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-basket.svg b/static/icons/shopping-basket.svg new file mode 100644 index 00000000..f9a5cae9 --- /dev/null +++ b/static/icons/shopping-basket.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-basket_1.svg b/static/icons/shopping-basket_1.svg new file mode 100644 index 00000000..d96c7dbe --- /dev/null +++ b/static/icons/shopping-basket_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-add.svg b/static/icons/shopping-cart-add.svg new file mode 100644 index 00000000..897a21f9 --- /dev/null +++ b/static/icons/shopping-cart-add.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart.svg b/static/icons/shopping-cart-cart.svg new file mode 100644 index 00000000..d5872015 --- /dev/null +++ b/static/icons/shopping-cart-cart.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart_1.svg b/static/icons/shopping-cart-cart_1.svg new file mode 100644 index 00000000..002992e3 --- /dev/null +++ b/static/icons/shopping-cart-cart_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart_2.svg b/static/icons/shopping-cart-cart_2.svg new file mode 100644 index 00000000..26b3299b --- /dev/null +++ b/static/icons/shopping-cart-cart_2.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart_3.svg b/static/icons/shopping-cart-cart_3.svg new file mode 100644 index 00000000..72dbd6e9 --- /dev/null +++ b/static/icons/shopping-cart-cart_3.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart_4.svg b/static/icons/shopping-cart-cart_4.svg new file mode 100644 index 00000000..541473f4 --- /dev/null +++ b/static/icons/shopping-cart-cart_4.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart-cart_5.svg b/static/icons/shopping-cart-cart_5.svg new file mode 100644 index 00000000..6aef0da8 --- /dev/null +++ b/static/icons/shopping-cart-cart_5.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart.svg b/static/icons/shopping-cart.svg new file mode 100644 index 00000000..0ea34526 --- /dev/null +++ b/static/icons/shopping-cart.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shopping-cart_1.svg b/static/icons/shopping-cart_1.svg new file mode 100644 index 00000000..9d72555a --- /dev/null +++ b/static/icons/shopping-cart_1.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/show.svg b/static/icons/show.svg new file mode 100644 index 00000000..2319c3b3 --- /dev/null +++ b/static/icons/show.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/shuffle-random.svg b/static/icons/shuffle-random.svg new file mode 100644 index 00000000..ffad3d0d --- /dev/null +++ b/static/icons/shuffle-random.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/signboard.svg b/static/icons/signboard.svg new file mode 100644 index 00000000..929efd44 --- /dev/null +++ b/static/icons/signboard.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/signpost.svg b/static/icons/signpost.svg new file mode 100644 index 00000000..158a5afe --- /dev/null +++ b/static/icons/signpost.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/skills.svg b/static/icons/skills.svg new file mode 100644 index 00000000..23c13084 --- /dev/null +++ b/static/icons/skills.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/skype.svg b/static/icons/skype.svg new file mode 100644 index 00000000..7a779f88 --- /dev/null +++ b/static/icons/skype.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/skyscrapper-edifice.svg b/static/icons/skyscrapper-edifice.svg new file mode 100644 index 00000000..c0b87bc4 --- /dev/null +++ b/static/icons/skyscrapper-edifice.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/skyscrapper-edifice_1.svg b/static/icons/skyscrapper-edifice_1.svg new file mode 100644 index 00000000..01bb37c6 --- /dev/null +++ b/static/icons/skyscrapper-edifice_1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-cellphone.svg b/static/icons/smartphone-cellphone.svg new file mode 100644 index 00000000..6b1b5212 --- /dev/null +++ b/static/icons/smartphone-cellphone.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-touch-screen.svg b/static/icons/smartphone-touch-screen.svg new file mode 100644 index 00000000..6dd56a72 --- /dev/null +++ b/static/icons/smartphone-touch-screen.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-touch-screen_1.svg b/static/icons/smartphone-touch-screen_1.svg new file mode 100644 index 00000000..eafc054d --- /dev/null +++ b/static/icons/smartphone-touch-screen_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-touch-screen_2.svg b/static/icons/smartphone-touch-screen_2.svg new file mode 100644 index 00000000..b557c796 --- /dev/null +++ b/static/icons/smartphone-touch-screen_2.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-touch-screen_3.svg b/static/icons/smartphone-touch-screen_3.svg new file mode 100644 index 00000000..5050fec4 --- /dev/null +++ b/static/icons/smartphone-touch-screen_3.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/smartphone-touch-screen_4.svg b/static/icons/smartphone-touch-screen_4.svg new file mode 100644 index 00000000..6ea70ebc --- /dev/null +++ b/static/icons/smartphone-touch-screen_4.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/snowflake.svg b/static/icons/snowflake.svg new file mode 100644 index 00000000..c436b7ea --- /dev/null +++ b/static/icons/snowflake.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/snowing-snowy.svg b/static/icons/snowing-snowy.svg new file mode 100644 index 00000000..6af1e031 --- /dev/null +++ b/static/icons/snowing-snowy.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/solidarity-ribbon.svg b/static/icons/solidarity-ribbon.svg new file mode 100644 index 00000000..96cf9bb1 --- /dev/null +++ b/static/icons/solidarity-ribbon.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/solidarity-ribbon_1.svg b/static/icons/solidarity-ribbon_1.svg new file mode 100644 index 00000000..778406ee --- /dev/null +++ b/static/icons/solidarity-ribbon_1.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sort-swap.svg b/static/icons/sort-swap.svg new file mode 100644 index 00000000..ae1f83af --- /dev/null +++ b/static/icons/sort-swap.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sort-switch.svg b/static/icons/sort-switch.svg new file mode 100644 index 00000000..7fbef03c --- /dev/null +++ b/static/icons/sort-switch.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sort-switch_1.svg b/static/icons/sort-switch_1.svg new file mode 100644 index 00000000..cf244b82 --- /dev/null +++ b/static/icons/sort-switch_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sound-speaker.svg b/static/icons/sound-speaker.svg new file mode 100644 index 00000000..98cb3cfe --- /dev/null +++ b/static/icons/sound-speaker.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sound-speaker_1.svg b/static/icons/sound-speaker_1.svg new file mode 100644 index 00000000..cb80ee9e --- /dev/null +++ b/static/icons/sound-speaker_1.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/soundcloud.svg b/static/icons/soundcloud.svg new file mode 100644 index 00000000..db63e81e --- /dev/null +++ b/static/icons/soundcloud.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/speakers-speaker.svg b/static/icons/speakers-speaker.svg new file mode 100644 index 00000000..d45a5fc3 --- /dev/null +++ b/static/icons/speakers-speaker.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/speech-bubble-chat.svg b/static/icons/speech-bubble-chat.svg new file mode 100644 index 00000000..d51b309b --- /dev/null +++ b/static/icons/speech-bubble-chat.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/spray-aerosol.svg b/static/icons/spray-aerosol.svg new file mode 100644 index 00000000..5b31ef9b --- /dev/null +++ b/static/icons/spray-aerosol.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sprout.svg b/static/icons/sprout.svg new file mode 100644 index 00000000..5d4fb53d --- /dev/null +++ b/static/icons/sprout.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/star.svg b/static/icons/star.svg new file mode 100644 index 00000000..75fac3f6 --- /dev/null +++ b/static/icons/star.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/star_1.svg b/static/icons/star_1.svg new file mode 100644 index 00000000..404ea6db --- /dev/null +++ b/static/icons/star_1.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/star_2.svg b/static/icons/star_2.svg new file mode 100644 index 00000000..250f60b0 --- /dev/null +++ b/static/icons/star_2.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/star_3.svg b/static/icons/star_3.svg new file mode 100644 index 00000000..df5b67ce --- /dev/null +++ b/static/icons/star_3.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/startup-rocket.svg b/static/icons/startup-rocket.svg new file mode 100644 index 00000000..211c88c1 --- /dev/null +++ b/static/icons/startup-rocket.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/statue-of-liberty.svg b/static/icons/statue-of-liberty.svg new file mode 100644 index 00000000..19e592ca --- /dev/null +++ b/static/icons/statue-of-liberty.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sticker.svg b/static/icons/sticker.svg new file mode 100644 index 00000000..1b71e871 --- /dev/null +++ b/static/icons/sticker.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/stop-music-and-multimedia.svg b/static/icons/stop-music-and-multimedia.svg new file mode 100644 index 00000000..92f4e711 --- /dev/null +++ b/static/icons/stop-music-and-multimedia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/stop-video-player.svg b/static/icons/stop-video-player.svg new file mode 100644 index 00000000..bbcfc327 --- /dev/null +++ b/static/icons/stop-video-player.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/stop.svg b/static/icons/stop.svg new file mode 100644 index 00000000..f289f437 --- /dev/null +++ b/static/icons/stop.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/store-search.svg b/static/icons/store-search.svg new file mode 100644 index 00000000..c5eb7019 --- /dev/null +++ b/static/icons/store-search.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/store.svg b/static/icons/store.svg new file mode 100644 index 00000000..a0fe21e5 --- /dev/null +++ b/static/icons/store.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/storm-rain.svg b/static/icons/storm-rain.svg new file mode 100644 index 00000000..8c63ad10 --- /dev/null +++ b/static/icons/storm-rain.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/street-light.svg b/static/icons/street-light.svg new file mode 100644 index 00000000..ba51065a --- /dev/null +++ b/static/icons/street-light.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/street-light_1.svg b/static/icons/street-light_1.svg new file mode 100644 index 00000000..d8bc12f0 --- /dev/null +++ b/static/icons/street-light_1.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/street-map-gps.svg b/static/icons/street-map-gps.svg new file mode 100644 index 00000000..7da0a9e1 --- /dev/null +++ b/static/icons/street-map-gps.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/street-map.svg b/static/icons/street-map.svg new file mode 100644 index 00000000..062088a7 --- /dev/null +++ b/static/icons/street-map.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/street-map_1.svg b/static/icons/street-map_1.svg new file mode 100644 index 00000000..e27500df --- /dev/null +++ b/static/icons/street-map_1.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/strikethrough.svg b/static/icons/strikethrough.svg new file mode 100644 index 00000000..b968f1e9 --- /dev/null +++ b/static/icons/strikethrough.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/stumbleupon-brands-and-logotypes.svg b/static/icons/stumbleupon-brands-and-logotypes.svg new file mode 100644 index 00000000..fc48c5fd --- /dev/null +++ b/static/icons/stumbleupon-brands-and-logotypes.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/subscript-text-formatting.svg b/static/icons/subscript-text-formatting.svg new file mode 100644 index 00000000..efac24b6 --- /dev/null +++ b/static/icons/subscript-text-formatting.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/suitcase-portfolio.svg b/static/icons/suitcase-portfolio.svg new file mode 100644 index 00000000..99866773 --- /dev/null +++ b/static/icons/suitcase-portfolio.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sun-cream.svg b/static/icons/sun-cream.svg new file mode 100644 index 00000000..28b37f40 --- /dev/null +++ b/static/icons/sun-cream.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sun-umbrella.svg b/static/icons/sun-umbrella.svg new file mode 100644 index 00000000..4f20b96e --- /dev/null +++ b/static/icons/sun-umbrella.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sun-warm.svg b/static/icons/sun-warm.svg new file mode 100644 index 00000000..a9ac9183 --- /dev/null +++ b/static/icons/sun-warm.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sunglasses.svg b/static/icons/sunglasses.svg new file mode 100644 index 00000000..6c2fa8bd --- /dev/null +++ b/static/icons/sunglasses.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sunrise-evening.svg b/static/icons/sunrise-evening.svg new file mode 100644 index 00000000..04590720 --- /dev/null +++ b/static/icons/sunrise-evening.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sunset-sea.svg b/static/icons/sunset-sea.svg new file mode 100644 index 00000000..b1c90b29 --- /dev/null +++ b/static/icons/sunset-sea.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/superscript.svg b/static/icons/superscript.svg new file mode 100644 index 00000000..511ef9a9 --- /dev/null +++ b/static/icons/superscript.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/swimsuit.svg b/static/icons/swimsuit.svg new file mode 100644 index 00000000..ff339bd0 --- /dev/null +++ b/static/icons/swimsuit.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/swiss-army-knife.svg b/static/icons/swiss-army-knife.svg new file mode 100644 index 00000000..33ebe401 --- /dev/null +++ b/static/icons/swiss-army-knife.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/switch-button.svg b/static/icons/switch-button.svg new file mode 100644 index 00000000..1ed5915a --- /dev/null +++ b/static/icons/switch-button.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/switch.svg b/static/icons/switch.svg new file mode 100644 index 00000000..6f36d4f7 --- /dev/null +++ b/static/icons/switch.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/switch_1.svg b/static/icons/switch_1.svg new file mode 100644 index 00000000..96a49994 --- /dev/null +++ b/static/icons/switch_1.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/sydney-opera-house-australia.svg b/static/icons/sydney-opera-house-australia.svg new file mode 100644 index 00000000..c2f83fcb --- /dev/null +++ b/static/icons/sydney-opera-house-australia.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/symbol-maps-and-flags.svg b/static/icons/symbol-maps-and-flags.svg new file mode 100644 index 00000000..673fb56d --- /dev/null +++ b/static/icons/symbol-maps-and-flags.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/table-excel.svg b/static/icons/table-excel.svg new file mode 100644 index 00000000..884c6a34 --- /dev/null +++ b/static/icons/table-excel.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/table-excel_1.svg b/static/icons/table-excel_1.svg new file mode 100644 index 00000000..34c95e63 --- /dev/null +++ b/static/icons/table-excel_1.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tablet.svg b/static/icons/tablet.svg new file mode 100644 index 00000000..7606dc0b --- /dev/null +++ b/static/icons/tablet.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tag-price.svg b/static/icons/tag-price.svg new file mode 100644 index 00000000..5a307fb2 --- /dev/null +++ b/static/icons/tag-price.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/taj-mahal.svg b/static/icons/taj-mahal.svg new file mode 100644 index 00000000..9b426ea9 --- /dev/null +++ b/static/icons/taj-mahal.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tap-finger.svg b/static/icons/tap-finger.svg new file mode 100644 index 00000000..ea818415 --- /dev/null +++ b/static/icons/tap-finger.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tap-hands-and-gestures.svg b/static/icons/tap-hands-and-gestures.svg new file mode 100644 index 00000000..4d3383d8 --- /dev/null +++ b/static/icons/tap-hands-and-gestures.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tap-hands-and-gestures_1.svg b/static/icons/tap-hands-and-gestures_1.svg new file mode 100644 index 00000000..2d2d4a57 --- /dev/null +++ b/static/icons/tap-hands-and-gestures_1.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tap-hands-and-gestures_2.svg b/static/icons/tap-hands-and-gestures_2.svg new file mode 100644 index 00000000..2c2f9b6d --- /dev/null +++ b/static/icons/tap-hands-and-gestures_2.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tap.svg b/static/icons/tap.svg new file mode 100644 index 00000000..49bd3755 --- /dev/null +++ b/static/icons/tap.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target-aim.svg b/static/icons/target-aim.svg new file mode 100644 index 00000000..aff15cf2 --- /dev/null +++ b/static/icons/target-aim.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target-aim_1.svg b/static/icons/target-aim_1.svg new file mode 100644 index 00000000..84e58f0f --- /dev/null +++ b/static/icons/target-aim_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target-shooting.svg b/static/icons/target-shooting.svg new file mode 100644 index 00000000..853430b0 --- /dev/null +++ b/static/icons/target-shooting.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target.svg b/static/icons/target.svg new file mode 100644 index 00000000..dc51a377 --- /dev/null +++ b/static/icons/target.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target_1.svg b/static/icons/target_1.svg new file mode 100644 index 00000000..5fe0e1d7 --- /dev/null +++ b/static/icons/target_1.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/target_2.svg b/static/icons/target_2.svg new file mode 100644 index 00000000..3cb401fb --- /dev/null +++ b/static/icons/target_2.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/technorati-brands-and-logotypes.svg b/static/icons/technorati-brands-and-logotypes.svg new file mode 100644 index 00000000..3cd7f1bc --- /dev/null +++ b/static/icons/technorati-brands-and-logotypes.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/teddy-bear-animal.svg b/static/icons/teddy-bear-animal.svg new file mode 100644 index 00000000..c347e6fc --- /dev/null +++ b/static/icons/teddy-bear-animal.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/telegram.svg b/static/icons/telegram.svg new file mode 100644 index 00000000..7d06f8ab --- /dev/null +++ b/static/icons/telegram.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/telephone-call.svg b/static/icons/telephone-call.svg new file mode 100644 index 00000000..7f2b998e --- /dev/null +++ b/static/icons/telephone-call.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/telephone-phone.svg b/static/icons/telephone-phone.svg new file mode 100644 index 00000000..ae16fe67 --- /dev/null +++ b/static/icons/telephone-phone.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/telephone-telephone-call.svg b/static/icons/telephone-telephone-call.svg new file mode 100644 index 00000000..80d2999b --- /dev/null +++ b/static/icons/telephone-telephone-call.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/telephone.svg b/static/icons/telephone.svg new file mode 100644 index 00000000..7de37d31 --- /dev/null +++ b/static/icons/telephone.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/television-tv.svg b/static/icons/television-tv.svg new file mode 100644 index 00000000..8a2a84b7 --- /dev/null +++ b/static/icons/television-tv.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/temperature.svg b/static/icons/temperature.svg new file mode 100644 index 00000000..35a1e7ed --- /dev/null +++ b/static/icons/temperature.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/temperature_1.svg b/static/icons/temperature_1.svg new file mode 100644 index 00000000..f0eca06b --- /dev/null +++ b/static/icons/temperature_1.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tent.svg b/static/icons/tent.svg new file mode 100644 index 00000000..257b5a0b --- /dev/null +++ b/static/icons/tent.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/teotihuacan-architectonic.svg b/static/icons/teotihuacan-architectonic.svg new file mode 100644 index 00000000..c7777f00 --- /dev/null +++ b/static/icons/teotihuacan-architectonic.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/test.svg b/static/icons/test.svg new file mode 100644 index 00000000..a1562fec --- /dev/null +++ b/static/icons/test.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/text-height-edit-tools.svg b/static/icons/text-height-edit-tools.svg new file mode 100644 index 00000000..c01c3639 --- /dev/null +++ b/static/icons/text-height-edit-tools.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/text-width-edit-tools.svg b/static/icons/text-width-edit-tools.svg new file mode 100644 index 00000000..726e118c --- /dev/null +++ b/static/icons/text-width-edit-tools.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/text.svg b/static/icons/text.svg new file mode 100644 index 00000000..3d007926 --- /dev/null +++ b/static/icons/text.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/thermometer-temperature.svg b/static/icons/thermometer-temperature.svg new file mode 100644 index 00000000..b875528c --- /dev/null +++ b/static/icons/thermometer-temperature.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/thermometer-temperature_1.svg b/static/icons/thermometer-temperature_1.svg new file mode 100644 index 00000000..0ccca846 --- /dev/null +++ b/static/icons/thermometer-temperature_1.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/thermometer-temperature_2.svg b/static/icons/thermometer-temperature_2.svg new file mode 100644 index 00000000..7f0a4db3 --- /dev/null +++ b/static/icons/thermometer-temperature_2.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/ticket.svg b/static/icons/ticket.svg new file mode 100644 index 00000000..723fda03 --- /dev/null +++ b/static/icons/ticket.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tie.svg b/static/icons/tie.svg new file mode 100644 index 00000000..1852c8d6 --- /dev/null +++ b/static/icons/tie.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/time-hourglass.svg b/static/icons/time-hourglass.svg new file mode 100644 index 00000000..b42f6245 --- /dev/null +++ b/static/icons/time-hourglass.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/time-left-wait.svg b/static/icons/time-left-wait.svg new file mode 100644 index 00000000..857c1665 --- /dev/null +++ b/static/icons/time-left-wait.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/time-left.svg b/static/icons/time-left.svg new file mode 100644 index 00000000..1b2f49c9 --- /dev/null +++ b/static/icons/time-left.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/time-management-watch.svg b/static/icons/time-management-watch.svg new file mode 100644 index 00000000..4f775e2d --- /dev/null +++ b/static/icons/time-management-watch.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/time-time-and-date.svg b/static/icons/time-time-and-date.svg new file mode 100644 index 00000000..9688466f --- /dev/null +++ b/static/icons/time-time-and-date.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/timer-stopwatch.svg b/static/icons/timer-stopwatch.svg new file mode 100644 index 00000000..ac1e1907 --- /dev/null +++ b/static/icons/timer-stopwatch.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tools-pen.svg b/static/icons/tools-pen.svg new file mode 100644 index 00000000..cdc3728f --- /dev/null +++ b/static/icons/tools-pen.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tornado.svg b/static/icons/tornado.svg new file mode 100644 index 00000000..2033bd97 --- /dev/null +++ b/static/icons/tornado.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/traffic-light.svg b/static/icons/traffic-light.svg new file mode 100644 index 00000000..f54dec49 --- /dev/null +++ b/static/icons/traffic-light.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/traffic-sign-danger.svg b/static/icons/traffic-sign-danger.svg new file mode 100644 index 00000000..cc56c6f3 --- /dev/null +++ b/static/icons/traffic-sign-danger.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/trees-forest.svg b/static/icons/trees-forest.svg new file mode 100644 index 00000000..92ae6977 --- /dev/null +++ b/static/icons/trees-forest.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/trolley-items.svg b/static/icons/trolley-items.svg new file mode 100644 index 00000000..717cd4e3 --- /dev/null +++ b/static/icons/trolley-items.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/trophy.svg b/static/icons/trophy.svg new file mode 100644 index 00000000..b9db6e79 --- /dev/null +++ b/static/icons/trophy.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/truck.svg b/static/icons/truck.svg new file mode 100644 index 00000000..e4d9cd12 --- /dev/null +++ b/static/icons/truck.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/truck_1.svg b/static/icons/truck_1.svg new file mode 100644 index 00000000..ba1c7a02 --- /dev/null +++ b/static/icons/truck_1.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/truck_2.svg b/static/icons/truck_2.svg new file mode 100644 index 00000000..40783f91 --- /dev/null +++ b/static/icons/truck_2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/tumblr.svg b/static/icons/tumblr.svg new file mode 100644 index 00000000..78acb1d9 --- /dev/null +++ b/static/icons/tumblr.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-left-ui.svg b/static/icons/turn-left-ui.svg new file mode 100644 index 00000000..84ce1234 --- /dev/null +++ b/static/icons/turn-left-ui.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-left-ui_1.svg b/static/icons/turn-left-ui_1.svg new file mode 100644 index 00000000..386e3e6a --- /dev/null +++ b/static/icons/turn-left-ui_1.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-left-ui_2.svg b/static/icons/turn-left-ui_2.svg new file mode 100644 index 00000000..76087a60 --- /dev/null +++ b/static/icons/turn-left-ui_2.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-left.svg b/static/icons/turn-left.svg new file mode 100644 index 00000000..3ce20977 --- /dev/null +++ b/static/icons/turn-left.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-right-arrows.svg b/static/icons/turn-right-arrows.svg new file mode 100644 index 00000000..dcce52d2 --- /dev/null +++ b/static/icons/turn-right-arrows.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-right-ui.svg b/static/icons/turn-right-ui.svg new file mode 100644 index 00000000..773a34b9 --- /dev/null +++ b/static/icons/turn-right-ui.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-right-ui_1.svg b/static/icons/turn-right-ui_1.svg new file mode 100644 index 00000000..dcaa99f0 --- /dev/null +++ b/static/icons/turn-right-ui_1.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/turn-right-ui_2.svg b/static/icons/turn-right-ui_2.svg new file mode 100644 index 00000000..db5e075a --- /dev/null +++ b/static/icons/turn-right-ui_2.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/twitter.svg b/static/icons/twitter.svg new file mode 100644 index 00000000..3d0387e7 --- /dev/null +++ b/static/icons/twitter.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/typewriter.svg b/static/icons/typewriter.svg new file mode 100644 index 00000000..63133494 --- /dev/null +++ b/static/icons/typewriter.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/umbrella.svg b/static/icons/umbrella.svg new file mode 100644 index 00000000..19020de1 --- /dev/null +++ b/static/icons/umbrella.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/underline-edit-tools.svg b/static/icons/underline-edit-tools.svg new file mode 100644 index 00000000..a524a471 --- /dev/null +++ b/static/icons/underline-edit-tools.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/undo.svg b/static/icons/undo.svg new file mode 100644 index 00000000..b572b554 --- /dev/null +++ b/static/icons/undo.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/undo_1.svg b/static/icons/undo_1.svg new file mode 100644 index 00000000..02a7e862 --- /dev/null +++ b/static/icons/undo_1.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/undo_2.svg b/static/icons/undo_2.svg new file mode 100644 index 00000000..31104026 --- /dev/null +++ b/static/icons/undo_2.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/unlink.svg b/static/icons/unlink.svg new file mode 100644 index 00000000..9f51835b --- /dev/null +++ b/static/icons/unlink.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/unlock-lock.svg b/static/icons/unlock-lock.svg new file mode 100644 index 00000000..b4f7e5c5 --- /dev/null +++ b/static/icons/unlock-lock.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow-control.svg b/static/icons/up-arrow-control.svg new file mode 100644 index 00000000..70bc48d9 --- /dev/null +++ b/static/icons/up-arrow-control.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow-ui.svg b/static/icons/up-arrow-ui.svg new file mode 100644 index 00000000..00fc2760 --- /dev/null +++ b/static/icons/up-arrow-ui.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow.svg b/static/icons/up-arrow.svg new file mode 100644 index 00000000..387f134d --- /dev/null +++ b/static/icons/up-arrow.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow_1.svg b/static/icons/up-arrow_1.svg new file mode 100644 index 00000000..d3161ad1 --- /dev/null +++ b/static/icons/up-arrow_1.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow_2.svg b/static/icons/up-arrow_2.svg new file mode 100644 index 00000000..d27b37a7 --- /dev/null +++ b/static/icons/up-arrow_2.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/up-arrow_3.svg b/static/icons/up-arrow_3.svg new file mode 100644 index 00000000..5ee2563e --- /dev/null +++ b/static/icons/up-arrow_3.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload-up-arrow.svg b/static/icons/upload-up-arrow.svg new file mode 100644 index 00000000..a8374945 --- /dev/null +++ b/static/icons/upload-up-arrow.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload.svg b/static/icons/upload.svg new file mode 100644 index 00000000..ebafe2df --- /dev/null +++ b/static/icons/upload.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload_1.svg b/static/icons/upload_1.svg new file mode 100644 index 00000000..7f4145e1 --- /dev/null +++ b/static/icons/upload_1.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload_2.svg b/static/icons/upload_2.svg new file mode 100644 index 00000000..ae5d916e --- /dev/null +++ b/static/icons/upload_2.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload_3.svg b/static/icons/upload_3.svg new file mode 100644 index 00000000..e065591a --- /dev/null +++ b/static/icons/upload_3.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/upload_4.svg b/static/icons/upload_4.svg new file mode 100644 index 00000000..1a8c6fc2 --- /dev/null +++ b/static/icons/upload_4.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/usb-cable.svg b/static/icons/usb-cable.svg new file mode 100644 index 00000000..63c2a46a --- /dev/null +++ b/static/icons/usb-cable.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/usb.svg b/static/icons/usb.svg new file mode 100644 index 00000000..1d6659f2 --- /dev/null +++ b/static/icons/usb.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/usb_1.svg b/static/icons/usb_1.svg new file mode 100644 index 00000000..424f7a08 --- /dev/null +++ b/static/icons/usb_1.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-add.svg b/static/icons/user-add.svg new file mode 100644 index 00000000..3e5c3673 --- /dev/null +++ b/static/icons/user-add.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-add_1.svg b/static/icons/user-add_1.svg new file mode 100644 index 00000000..e385b90d --- /dev/null +++ b/static/icons/user-add_1.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-block.svg b/static/icons/user-block.svg new file mode 100644 index 00000000..2ede3fca --- /dev/null +++ b/static/icons/user-block.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-delete.svg b/static/icons/user-delete.svg new file mode 100644 index 00000000..0a55eaf5 --- /dev/null +++ b/static/icons/user-delete.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-delete_1.svg b/static/icons/user-delete_1.svg new file mode 100644 index 00000000..39d627c3 --- /dev/null +++ b/static/icons/user-delete_1.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-follower.svg b/static/icons/user-follower.svg new file mode 100644 index 00000000..d47c2b59 --- /dev/null +++ b/static/icons/user-follower.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-followers.svg b/static/icons/user-followers.svg new file mode 100644 index 00000000..e7598b90 --- /dev/null +++ b/static/icons/user-followers.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-remove.svg b/static/icons/user-remove.svg new file mode 100644 index 00000000..2c6080bf --- /dev/null +++ b/static/icons/user-remove.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web.svg b/static/icons/user-seo-and-web.svg new file mode 100644 index 00000000..7f1a0969 --- /dev/null +++ b/static/icons/user-seo-and-web.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_1.svg b/static/icons/user-seo-and-web_1.svg new file mode 100644 index 00000000..936a1aab --- /dev/null +++ b/static/icons/user-seo-and-web_1.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_2.svg b/static/icons/user-seo-and-web_2.svg new file mode 100644 index 00000000..d350312b --- /dev/null +++ b/static/icons/user-seo-and-web_2.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_3.svg b/static/icons/user-seo-and-web_3.svg new file mode 100644 index 00000000..7f8a12d6 --- /dev/null +++ b/static/icons/user-seo-and-web_3.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_4.svg b/static/icons/user-seo-and-web_4.svg new file mode 100644 index 00000000..424abbc2 --- /dev/null +++ b/static/icons/user-seo-and-web_4.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_5.svg b/static/icons/user-seo-and-web_5.svg new file mode 100644 index 00000000..ee7a8f27 --- /dev/null +++ b/static/icons/user-seo-and-web_5.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user-seo-and-web_6.svg b/static/icons/user-seo-and-web_6.svg new file mode 100644 index 00000000..2073f629 --- /dev/null +++ b/static/icons/user-seo-and-web_6.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user.svg b/static/icons/user.svg new file mode 100644 index 00000000..c54f4fac --- /dev/null +++ b/static/icons/user.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user_1.svg b/static/icons/user_1.svg new file mode 100644 index 00000000..9cc84804 --- /dev/null +++ b/static/icons/user_1.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/user_2.svg b/static/icons/user_2.svg new file mode 100644 index 00000000..a5cbccd9 --- /dev/null +++ b/static/icons/user_2.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/users-user.svg b/static/icons/users-user.svg new file mode 100644 index 00000000..86a91ecd --- /dev/null +++ b/static/icons/users-user.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/vatican.svg b/static/icons/vatican.svg new file mode 100644 index 00000000..a708b0e3 --- /dev/null +++ b/static/icons/vatican.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/viber.svg b/static/icons/viber.svg new file mode 100644 index 00000000..d7021edb --- /dev/null +++ b/static/icons/viber.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/video-camera-cinema.svg b/static/icons/video-camera-cinema.svg new file mode 100644 index 00000000..4e85da5d --- /dev/null +++ b/static/icons/video-camera-cinema.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/video-camera-film.svg b/static/icons/video-camera-film.svg new file mode 100644 index 00000000..ee3453a3 --- /dev/null +++ b/static/icons/video-camera-film.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/video-camera.svg b/static/icons/video-camera.svg new file mode 100644 index 00000000..b6f2d8e0 --- /dev/null +++ b/static/icons/video-camera.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/video-player-movie.svg b/static/icons/video-player-movie.svg new file mode 100644 index 00000000..beae773f --- /dev/null +++ b/static/icons/video-player-movie.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/video.svg b/static/icons/video.svg new file mode 100644 index 00000000..c717ac0a --- /dev/null +++ b/static/icons/video.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/vimeo-brands-and-logotypes.svg b/static/icons/vimeo-brands-and-logotypes.svg new file mode 100644 index 00000000..d7158ec2 --- /dev/null +++ b/static/icons/vimeo-brands-and-logotypes.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/visa.svg b/static/icons/visa.svg new file mode 100644 index 00000000..423581c3 --- /dev/null +++ b/static/icons/visa.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/visualization-grid.svg b/static/icons/visualization-grid.svg new file mode 100644 index 00000000..a3f10aa1 --- /dev/null +++ b/static/icons/visualization-grid.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/visualization-grid_1.svg b/static/icons/visualization-grid_1.svg new file mode 100644 index 00000000..69f3101e --- /dev/null +++ b/static/icons/visualization-grid_1.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/vk-vk.svg b/static/icons/vk-vk.svg new file mode 100644 index 00000000..c823a6a6 --- /dev/null +++ b/static/icons/vk-vk.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/volume-down.svg b/static/icons/volume-down.svg new file mode 100644 index 00000000..7d7b18f1 --- /dev/null +++ b/static/icons/volume-down.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/volume-max.svg b/static/icons/volume-max.svg new file mode 100644 index 00000000..566ed4e2 --- /dev/null +++ b/static/icons/volume-max.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/volume-music-and-multimedia.svg b/static/icons/volume-music-and-multimedia.svg new file mode 100644 index 00000000..e680f4d5 --- /dev/null +++ b/static/icons/volume-music-and-multimedia.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/volume-mute.svg b/static/icons/volume-mute.svg new file mode 100644 index 00000000..dc5537d5 --- /dev/null +++ b/static/icons/volume-mute.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/volume-up.svg b/static/icons/volume-up.svg new file mode 100644 index 00000000..aa266058 --- /dev/null +++ b/static/icons/volume-up.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wait-hourglass.svg b/static/icons/wait-hourglass.svg new file mode 100644 index 00000000..41ea5c69 --- /dev/null +++ b/static/icons/wait-hourglass.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wallet.svg b/static/icons/wallet.svg new file mode 100644 index 00000000..c9ff9e89 --- /dev/null +++ b/static/icons/wallet.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/watch.svg b/static/icons/watch.svg new file mode 100644 index 00000000..f4f27635 --- /dev/null +++ b/static/icons/watch.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/water-raindrop.svg b/static/icons/water-raindrop.svg new file mode 100644 index 00000000..336452e2 --- /dev/null +++ b/static/icons/water-raindrop.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/water.svg b/static/icons/water.svg new file mode 100644 index 00000000..ca7c5264 --- /dev/null +++ b/static/icons/water.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/water_1.svg b/static/icons/water_1.svg new file mode 100644 index 00000000..7ecfd31d --- /dev/null +++ b/static/icons/water_1.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/waterfall-river.svg b/static/icons/waterfall-river.svg new file mode 100644 index 00000000..1dace3e4 --- /dev/null +++ b/static/icons/waterfall-river.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/webcam.svg b/static/icons/webcam.svg new file mode 100644 index 00000000..720ce019 --- /dev/null +++ b/static/icons/webcam.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wheelchair.svg b/static/icons/wheelchair.svg new file mode 100644 index 00000000..3b15bf48 --- /dev/null +++ b/static/icons/wheelchair.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wifi.svg b/static/icons/wifi.svg new file mode 100644 index 00000000..9fca9ce1 --- /dev/null +++ b/static/icons/wifi.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wifi_1.svg b/static/icons/wifi_1.svg new file mode 100644 index 00000000..88b225b5 --- /dev/null +++ b/static/icons/wifi_1.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wikipedia.svg b/static/icons/wikipedia.svg new file mode 100644 index 00000000..11dd5841 --- /dev/null +++ b/static/icons/wikipedia.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wind-rose.svg b/static/icons/wind-rose.svg new file mode 100644 index 00000000..e2adcc70 --- /dev/null +++ b/static/icons/wind-rose.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wind.svg b/static/icons/wind.svg new file mode 100644 index 00000000..fa2ef445 --- /dev/null +++ b/static/icons/wind.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/windmill-mill.svg b/static/icons/windmill-mill.svg new file mode 100644 index 00000000..48478a6f --- /dev/null +++ b/static/icons/windmill-mill.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wma-files-and-folders.svg b/static/icons/wma-files-and-folders.svg new file mode 100644 index 00000000..42ee38b4 --- /dev/null +++ b/static/icons/wma-files-and-folders.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/word.svg b/static/icons/word.svg new file mode 100644 index 00000000..c8a5b4e5 --- /dev/null +++ b/static/icons/word.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/wordpress.svg b/static/icons/wordpress.svg new file mode 100644 index 00000000..25a066e5 --- /dev/null +++ b/static/icons/wordpress.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/workflow.svg b/static/icons/workflow.svg new file mode 100644 index 00000000..f719126c --- /dev/null +++ b/static/icons/workflow.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/workflow_1.svg b/static/icons/workflow_1.svg new file mode 100644 index 00000000..82098c04 --- /dev/null +++ b/static/icons/workflow_1.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/worldwide-global.svg b/static/icons/worldwide-global.svg new file mode 100644 index 00000000..d117cc97 --- /dev/null +++ b/static/icons/worldwide-global.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/worldwide-gps.svg b/static/icons/worldwide-gps.svg new file mode 100644 index 00000000..46d1a262 --- /dev/null +++ b/static/icons/worldwide-gps.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/writing-edit.svg b/static/icons/writing-edit.svg new file mode 100644 index 00000000..6c55fb3f --- /dev/null +++ b/static/icons/writing-edit.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/writing-note.svg b/static/icons/writing-note.svg new file mode 100644 index 00000000..fd7f0ba3 --- /dev/null +++ b/static/icons/writing-note.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/writing-tools-and-utensils.svg b/static/icons/writing-tools-and-utensils.svg new file mode 100644 index 00000000..5724f807 --- /dev/null +++ b/static/icons/writing-tools-and-utensils.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/xing.svg b/static/icons/xing.svg new file mode 100644 index 00000000..e6d79f19 --- /dev/null +++ b/static/icons/xing.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/yahoo.svg b/static/icons/yahoo.svg new file mode 100644 index 00000000..ef4f8542 --- /dev/null +++ b/static/icons/yahoo.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/yandex.svg b/static/icons/yandex.svg new file mode 100644 index 00000000..6b02abe2 --- /dev/null +++ b/static/icons/yandex.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/yen.svg b/static/icons/yen.svg new file mode 100644 index 00000000..0ef08342 --- /dev/null +++ b/static/icons/yen.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/youtube.svg b/static/icons/youtube.svg new file mode 100644 index 00000000..2301cd94 --- /dev/null +++ b/static/icons/youtube.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/zerply-brands-and-logotypes.svg b/static/icons/zerply-brands-and-logotypes.svg new file mode 100644 index 00000000..3b1c0825 --- /dev/null +++ b/static/icons/zerply-brands-and-logotypes.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/zoom-in.svg b/static/icons/zoom-in.svg new file mode 100644 index 00000000..41628278 --- /dev/null +++ b/static/icons/zoom-in.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/icons/zoom-out.svg b/static/icons/zoom-out.svg new file mode 100644 index 00000000..2f5cec6f --- /dev/null +++ b/static/icons/zoom-out.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/images/.DS_Store b/static/images/.DS_Store index 424c00d1..f1366b6d 100644 Binary files a/static/images/.DS_Store and b/static/images/.DS_Store differ diff --git a/static/images/icons/.DS_Store b/static/images/icons/.DS_Store index 37bc4ddc..2ccd893d 100644 Binary files a/static/images/icons/.DS_Store and b/static/images/icons/.DS_Store differ diff --git a/static/images/icons/excel.png b/static/images/icons/excel.png deleted file mode 100644 index 48fab56d..00000000 Binary files a/static/images/icons/excel.png and /dev/null differ diff --git a/static/images/icons/pdf.png b/static/images/icons/pdf.png deleted file mode 100644 index 856080f6..00000000 Binary files a/static/images/icons/pdf.png and /dev/null differ diff --git a/static/js/travel-agency-dashboard.js b/static/js/travel-agency-dashboard.js index 1cd65b87..065be080 100644 --- a/static/js/travel-agency-dashboard.js +++ b/static/js/travel-agency-dashboard.js @@ -659,9 +659,7 @@ const chart = window.echarts.init($financialActivitiesChartEl); const profitLagend = document.querySelector(`#${userOptions.optionOne}`); const revenueLagend = document.querySelector(`#${userOptions.optionTwo}`); - const expansesLagend = document.querySelector( - `#${userOptions.optionThree}` - ); + const expansesLagend = document.querySelector(`#${userOptions.optionThree}`); const getDefaultOptions = () => ({ color: [getColor('primary'), getColor('tertiary-bg')], diff --git a/templates/crm/leads/lead_list.html b/templates/crm/leads/lead_list.html index b26d0b01..a84f45ea 100644 --- a/templates/crm/leads/lead_list.html +++ b/templates/crm/leads/lead_list.html @@ -15,17 +15,7 @@
- + {% include 'partials/search_box.html' %}
diff --git a/templates/dashboards/accounting.html b/templates/dashboards/manager.html similarity index 98% rename from templates/dashboards/accounting.html rename to templates/dashboards/manager.html index 31d24bf3..4d5135e5 100644 --- a/templates/dashboards/accounting.html +++ b/templates/dashboards/manager.html @@ -45,7 +45,10 @@
-

$3,339.00

12.21%From last month +

$3,339.00

+ + 12.21% + From last month
@@ -107,7 +110,6 @@
-

Visitors

Users across countries

@@ -177,7 +179,8 @@
Calender
-
+ +
@@ -244,7 +247,7 @@
$271,319,000
-
+

29.98%

@@ -257,7 +260,7 @@
$162,791,400
-
+

03.90%

@@ -290,8 +293,9 @@ + + {% endblock %} diff --git a/templates/dealers/dealer_detail.html b/templates/dealers/dealer_detail.html index cf30a321..b9e99ffc 100644 --- a/templates/dealers/dealer_detail.html +++ b/templates/dealers/dealer_detail.html @@ -57,11 +57,11 @@
{% trans 'Total users'|capfirst %}
-

{{ dealer.total_count }} / {{ dealer.get_active_plan.plan.max_users }}

+

{{ dealer.staff_count }} / {{ allowed_users }}

{% trans 'Subscription' %}
- {% if dealer.get_active_plan.is_active %} + {% if dealer.user.userplan.active %} {% trans 'Active' %} {% else %} {% trans 'Expired' %} @@ -71,6 +71,7 @@
+
@@ -105,29 +106,25 @@
-
-
- -
- -
-
+
+
+ +
+ +
+
- - -
+
- -
-

{{ dealer.get_active_plan.plan.name|capfirst }}

{% trans 'most valuable'|upper %} +

{{ dealer.user.userplan.plan|capfirst }}

{% trans 'most valuable'|upper %}
-

{% trans 'Active until' %}: {{ dealer.get_active_plan.end_date|date}}

+

{% trans 'Active until' %}: {{ dealer.user.userplan.expire}}

-

{{ dealer.get_active_plan.plan.price|floatformat }} {% trans 'SAR' %}

+

{{ dealer.user.userplan.plan.planpricing_set.first.price }} {% trans 'SAR' %}

Per month
@@ -136,7 +133,7 @@
-
{{ dealer.get_active_plan.plan.description}}
+
{{ dealer.user.userplan.plan.description}}
@@ -146,9 +143,466 @@
+
+
+
+
+
+

57 new orders

+

Awating processing

+
+
+
+
+
+
+

5 orders

+

On hold

+
+
+
+
+
+
+

15 products

+

Out of stock

+
+
+
+
+
+
+

Pricing

+
+
+
+ +
+
+
+
+
+ +
+ +
+
+
+ +
+
+ + +
+
+
+
+

Startup

+
+

For individuals who are interested
in giving it a shot first.

+
+

Free

+
Forever
+
+
+
+
+
+
+
    +
  • Up to 4 Members
  • +
  • 3 Collaboration projects
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Standard

+
+

For teams that need to create
project plans with confidence.

+
+

$14.99

+
Per month
+
+
+
+
+
+
+
    +
  • Up to 8 Members
  • +
  • Create & Share libraries
  • +
  • 10 Collaboration projects
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Business Plus

recommended +
+

For teams that need to manage
work across initiatives.

+
+

$49.99

+
Per month
+
+
+
+
+
+
+
    +
  • Technical Supports
  • +
  • Up to 20 Members
  • +
  • Create & Share libraries
  • +
  • Unlimited Collaboration
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Enterprise

+
+

For organizations that need
additional security and support.

+
+

$149.99

+
Per month
+
+
+
+
+
+
+
    +
  • 24/7 VIP Support
  • +
  • Automated analytics
  • +
  • Unlimited Members*
  • +
  • Create & Share libraries
  • +
  • Centralized billing
  • +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Startup

+
+

For individuals who are interested
in giving it a shot first.

+
+

Free

+
Forever
+
+
+
+
+
+
+
    +
  • Up to 4 Members
  • +
  • 3 Collaboration projects
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Standard

+
+

For teams that need to create
project plans with confidence.

+
+

$179.88

+
Per year
+
+
+
+
+
+
+
    +
  • Up to 8 Members
  • +
  • Create & Share libraries
  • +
  • 10 Collaboration projects
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Business Plus

recommended +
+

For teams that need to manage
work across initiatives.

+
+

$599.88

+
Per year
+
+
+
+
+
+
+
    +
  • Technical Supports
  • +
  • Up to 20 Members
  • +
  • Create & Share libraries
  • +
  • Unlimited Collaboration
  • +
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+
+
+ + +
+
+ + +
+
+
+
+

Enterprise

+
+

For organizations that need
additional security and support.

+
+

$1,799.88

+
Per year
+
+
+
+
+
+
+
    +
  • 24/7 VIP Support
  • +
  • Automated analytics
  • +
  • Unlimited Members*
  • +
  • Create & Share libraries
  • +
  • Centralized billing
  • +
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Business Starter, Business Standard, and Business Plus plans can be purchased for a maximum of 300 users. There is no
maximum user limit for Enterprise plans.

+

Phoenix customers may have access to additional features for a limited
promotional period.

+
+ + +
+
+
+
+

Included in our all packages

+
+
+
+

Timeline

+
+
+
+
+

Advanced Search

+
+
+
+
+

Custom fields

New +
+
+
+
+

Task dependencies

+
+
+
+
+

20TB of additional space

+
+
+
+
+

Bandwidth of Upto 1 Gbps

+
+
+
+
+

Private teams & projects

+
+
+
+
+

Customer Support and Training

+
+
+
+
+
+
diff --git a/templates/header.html b/templates/header.html index 495059e5..00fdb8a8 100644 --- a/templates/header.html +++ b/templates/header.html @@ -11,18 +11,20 @@
@@ -66,18 +78,17 @@ - + -->
- -
@@ -26,4 +28,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/templates/notifications.html b/templates/notifications.html index 7c5adabd..5bf7e6b0 100644 --- a/templates/notifications.html +++ b/templates/notifications.html @@ -10,8 +10,8 @@
-
Notifications
- +
{{ _("Notifications") }}
+
diff --git a/templates/partials/search_box.html b/templates/partials/search_box.html index cea634fd..0a307c11 100644 --- a/templates/partials/search_box.html +++ b/templates/partials/search_box.html @@ -1,15 +1,32 @@ + + + diff --git a/templates/plans/current.html b/templates/plans/current.html index 0e68e4bb..f987ab58 100644 --- a/templates/plans/current.html +++ b/templates/plans/current.html @@ -15,7 +15,7 @@
{% trans "Account" %}:
{{ user.dealer.get_local_name }}
-
{% trans "State" %}:
+
{% trans "Status" %}:
{% if userplan.active %} {% trans "Active" %} @@ -24,7 +24,7 @@ {% endif %}
-
{% trans "Expire" %}:
+
{% trans "Active until" %}:
{{ userplan.expire }}
{% trans "Plan" %}: