switch from softies to feathericons

also organize icons in folders per origin
This commit is contained in:
Rigel Kent 2020-06-30 11:21:04 +02:00 committed by Rigel Kent
parent 9b01cfc788
commit c41c0e28ed
132 changed files with 146 additions and 432 deletions

View file

@ -387,7 +387,8 @@
# Icons
* [Robbie Pearce](https://robbiepearce.com/softies/)
* [Fork-Awesome](https://github.com/ForkAwesome/Fork-Awesome)
* `playlist add` by Material UI
* `language` by Aaron Jin
* [Feather Icons](feathericons.com/) (MIT)
* `playlist add`, `history`, `subscriptions`, `miscellaneous_services` by Material UI (Apache 2.0)
* `support` by Chocobozzz (CC-BY)
* `language` by Aaron Jin (CC-BY)
* `video-language` by Rigel Kent (CC-BY)

View file

@ -31,7 +31,7 @@
<my-button i18n-label label="Change ownership"
className="action-button-change-ownership grey-button"
icon="forward"
icon="ownership-change"
(click)="changeOwnership($event, video)"
></my-button>
</div>

View file

@ -30,7 +30,7 @@ export class MyAccountComponent implements OnInit {
{
label: this.i18n('My channels'),
routerLink: '/my-account/video-channels',
iconName: 'folder'
iconName: 'channel'
},
{
label: this.i18n('My videos'),
@ -45,7 +45,7 @@ export class MyAccountComponent implements OnInit {
{
label: this.i18n('My subscriptions'),
routerLink: '/my-account/subscriptions',
iconName: 'subscriptions'
iconName: 'inbox-full'
},
{
label: this.i18n('My history'),
@ -79,7 +79,7 @@ export class MyAccountComponent implements OnInit {
{
label: this.i18n('Ownership changes'),
routerLink: '/my-account/ownership',
iconName: 'forward'
iconName: 'ownership-change'
}
]
}

View file

@ -31,7 +31,7 @@
position: relative;
top: -1px;
margin-right: 5px;
background-image: url('../../assets/images/search/filter.svg');
background-image: url('../../assets/images/feather/filter.svg');
}
}
}

View file

@ -69,7 +69,7 @@
(click)="updateSecondStep()"
[ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }"
>
<my-global-icon iconName="validate" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
<input type="button" i18n-value value="Update" />
</div>
</div>

View file

@ -65,7 +65,7 @@
(click)="updateSecondStep()"
[ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }"
>
<my-global-icon iconName="validate" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
<input type="button" i18n-value value="Update" />
</div>
</div>

View file

@ -83,7 +83,7 @@
(click)="updateSecondStep()"
[ngClass]="{ disabled: isPublishingButtonDisabled() }"
>
<my-global-icon iconName="validate" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
<input [disabled]="isPublishingButtonDisabled()" type="button" i18n-value value="Publish" />
</div>
</div>

View file

@ -14,7 +14,7 @@
<div class="submit-container">
<div class="submit-button" (click)="update()" [ngClass]="{ disabled: !form.valid || isUpdatingVideo === true }">
<my-global-icon iconName="validate" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="circle-tick" aria-hidden="true"></my-global-icon>
<input type="button" i18n-value value="Update" />
</div>
</div>

View file

@ -249,7 +249,7 @@ $video-info-margin-left: 44px;
filter: brightness(120%);
.count {
margin-right: 5px;
margin: 0 5px;
}
}

View file

@ -39,7 +39,7 @@
&.icon-menu {
background-color: pvar(--mainForegroundColor);
mask-image: url('../assets/images/header/menu.svg');
mask-image: url('../assets/images/misc/menu.svg');
margin: 0 18px 0 20px;
}
}

View file

@ -4,7 +4,7 @@
[(ngModel)]="search" (ngModelChange)="onSearchChange()" (keydown)="handleKey($event)" (keydown.enter)="doSearch()"
aria-label="Search" autocomplete="off"
>
<span class="icon icon-search" (click)="doSearch()"></span>
<my-global-icon iconName="search" class="icon icon-search" role="button" (click)="doSearch()" (keydown.enter)="doSearch()"></my-global-icon>
<div class="position-absolute jump-to-suggestions">

View file

@ -16,15 +16,13 @@
.icon.icon-search {
@include icon(25px);
height: 21px;
background-color: pvar(--mainForegroundColor);
mask: url('../../assets/images/header/search.svg') no-repeat 50% 50%;
height: 18px;
// yolo
position: absolute;
margin-left: -35px;
margin-top: 5px;
margin-top: 3.5px;
right: 10px;
}
.jump-to-suggestions {

View file

@ -11,7 +11,7 @@
></div>
<div class="border rounded flex-shrink-0 px-1 bg-gray text-gray-light ml-1 f6">
<span *ngIf="result.type === 'search-instance'" i18n>In this instance</span>
<span *ngIf="result.type === 'search-instance'" i18n>In this instance's network</span>
<span *ngIf="result.type === 'search-index'" i18n>In the vidiverse</span>
</div>
</a>

View file

@ -26,7 +26,7 @@
</a>
<a ngbDropdownItem ngbDropdownToggle class="dropdown-item" routerLink="/my-account/video-channels">
<my-global-icon iconName="folder" aria-hidden="true"></my-global-icon> <ng-container i18n>Channels settings</ng-container>
<my-global-icon iconName="channel" aria-hidden="true"></my-global-icon> <ng-container i18n>Channels settings</ng-container>
</a>
<div class="dropdown-divider"></div>

View file

@ -296,7 +296,7 @@ menu {
top: -1px;
margin-right: 10px;
background-image: url('../../assets/images/menu/keyboard.png');
background-image: url('../../assets/images/misc/keyboard.png');
}
}

View file

@ -30,7 +30,7 @@
top: -1px;
margin-right: 4px;
background-image: url('../../assets/images/menu/keyboard.png');
background-image: url('../../assets/images/misc/keyboard.png');
}
}

View file

@ -2,62 +2,65 @@ import { ChangeDetectionStrategy, Component, ElementRef, Input, OnInit } from '@
import { HooksService } from '@app/core/plugins/hooks.service'
const icons = {
'add': require('!!raw-loader?!../../../assets/images/global/add.svg').default,
'user': require('!!raw-loader?!../../../assets/images/global/user.svg').default,
'sign-out': require('!!raw-loader?!../../../assets/images/global/sign-out.svg').default,
'syndication': require('!!raw-loader?!../../../assets/images/global/syndication.svg').default,
'help': require('!!raw-loader?!../../../assets/images/global/help.svg').default,
'sparkle': require('!!raw-loader?!../../../assets/images/global/sparkle.svg').default,
'alert': require('!!raw-loader?!../../../assets/images/global/alert.svg').default,
'cloud-error': require('!!raw-loader?!../../../assets/images/global/cloud-error.svg').default,
'clock': require('!!raw-loader?!../../../assets/images/global/clock.svg').default,
'user-add': require('!!raw-loader?!../../../assets/images/global/user-add.svg').default,
'no': require('!!raw-loader?!../../../assets/images/global/no.svg').default,
'cloud-download': require('!!raw-loader?!../../../assets/images/global/cloud-download.svg').default,
'undo': require('!!raw-loader?!../../../assets/images/global/undo.svg').default,
'history': require('!!raw-loader?!../../../assets/images/global/history.svg').default,
'circle-tick': require('!!raw-loader?!../../../assets/images/global/circle-tick.svg').default,
'cog': require('!!raw-loader?!../../../assets/images/global/cog.svg').default,
'download': require('!!raw-loader?!../../../assets/images/global/download.svg').default,
'go': require('!!raw-loader?!../../../assets/images/menu/go.svg').default,
'edit': require('!!raw-loader?!../../../assets/images/global/edit.svg').default,
'forward': require('!!raw-loader?!../../../assets/images/global/forward.svg').default,
'delete': require('!!raw-loader?!../../../assets/images/global/delete.svg').default,
'server': require('!!raw-loader?!../../../assets/images/global/server.svg').default,
'cross': require('!!raw-loader?!../../../assets/images/global/cross.svg').default,
'validate': require('!!raw-loader?!../../../assets/images/global/validate.svg').default,
'tick': require('!!raw-loader?!../../../assets/images/global/tick.svg').default,
'repeat': require('!!raw-loader?!../../../assets/images/global/repeat.svg').default,
'inbox-full': require('!!raw-loader?!../../../assets/images/global/inbox-full.svg').default,
'dislike': require('!!raw-loader?!../../../assets/images/video/dislike.svg').default,
'support': require('!!raw-loader?!../../../assets/images/video/support.svg').default,
'like': require('!!raw-loader?!../../../assets/images/video/like.svg').default,
'more-horizontal': require('!!raw-loader?!../../../assets/images/global/more-horizontal.svg').default,
'more-vertical': require('!!raw-loader?!../../../assets/images/global/more-vertical.svg').default,
'share': require('!!raw-loader?!../../../assets/images/video/share.svg').default,
'upload': require('!!raw-loader?!../../../assets/images/video/upload.svg').default,
'playlist-add': require('!!raw-loader?!../../../assets/images/video/playlist-add.svg').default,
'play': require('!!raw-loader?!../../../assets/images/global/play.svg').default,
'playlists': require('!!raw-loader?!../../../assets/images/global/playlists.svg').default,
'globe': require('!!raw-loader?!../../../assets/images/menu/globe.svg').default,
'home': require('!!raw-loader?!../../../assets/images/menu/home.svg').default,
'recently-added': require('!!raw-loader?!../../../assets/images/menu/recently-added.svg').default,
'trending': require('!!raw-loader?!../../../assets/images/menu/trending.svg').default,
'video-lang': require('!!raw-loader?!../../../assets/images/global/video-lang.svg').default,
'videos': require('!!raw-loader?!../../../assets/images/global/videos.svg').default,
'folder': require('!!raw-loader?!../../../assets/images/global/folder.svg').default,
'subscriptions': require('!!raw-loader?!../../../assets/images/menu/subscriptions.svg').default,
'language': require('!!raw-loader?!../../../assets/images/menu/language.svg').default,
'unsensitive': require('!!raw-loader?!../../../assets/images/menu/eye.svg').default,
'sensitive': require('!!raw-loader?!../../../assets/images/menu/eye-closed.svg').default,
'p2p': require('!!raw-loader?!../../../assets/images/menu/p2p.svg').default,
'users': require('!!raw-loader?!../../../assets/images/global/users.svg').default,
'search': require('!!raw-loader?!../../../assets/images/global/search.svg').default,
'refresh': require('!!raw-loader?!../../../assets/images/global/refresh.svg').default,
'npm': require('!!raw-loader?!../../../assets/images/global/npm.svg').default,
'fullscreen': require('!!raw-loader?!../../../assets/images/global/fullscreen.svg').default,
'exit-fullscreen': require('!!raw-loader?!../../../assets/images/global/exit-fullscreen.svg').default,
'robot': require('!!raw-loader?!../../../assets/images/global/robot.svg').default
// misc icons
'npm': require('!!raw-loader?!../../../assets/images/misc/npm.svg').default,
'language': require('!!raw-loader?!../../../assets/images/misc/language.svg').default,
'video-lang': require('!!raw-loader?!../../../assets/images/misc/video-lang.svg').default,
'support': require('!!raw-loader?!../../../assets/images/misc/support.svg').default,
'robot': require('!!raw-loader?!../../../assets/images/misc/miscellaneous_services.svg').default, // material ui
'videos': require('!!raw-loader?!../../../assets/images/misc/video_library.svg').default, // material ui
'history': require('!!raw-loader?!../../../assets/images/misc/history.svg').default, // material ui
'subscriptions': require('!!raw-loader?!../../../assets/images/misc/subscriptions.svg').default, // material ui
'playlist-add': require('!!raw-loader?!../../../assets/images/misc/playlist-add.svg').default, // material ui
// feather icons
'flag': require('!!raw-loader?!../../../assets/images/feather/flag.svg').default,
'playlists': require('!!raw-loader?!../../../assets/images/feather/list.svg').default,
'syndication': require('!!raw-loader?!../../../assets/images/feather/syndication.svg').default,
'help': require('!!raw-loader?!../../../assets/images/feather/help.svg').default,
'alert': require('!!raw-loader?!../../../assets/images/feather/alert.svg').default,
'globe': require('!!raw-loader?!../../../assets/images/feather/globe.svg').default,
'home': require('!!raw-loader?!../../../assets/images/feather/home.svg').default,
'recently-added': require('!!raw-loader?!../../../assets/images/feather/recently-added.svg').default,
'trending': require('!!raw-loader?!../../../assets/images/feather/trending.svg').default,
'search': require('!!raw-loader?!../../../assets/images/feather/search.svg').default,
'upload': require('!!raw-loader?!../../../assets/images/feather/upload.svg').default,
'dislike': require('!!raw-loader?!../../../assets/images/feather/dislike.svg').default,
'like': require('!!raw-loader?!../../../assets/images/feather/like.svg').default,
'no': require('!!raw-loader?!../../../assets/images/feather/no.svg').default,
'cloud-download': require('!!raw-loader?!../../../assets/images/feather/cloud-download.svg').default,
'clock': require('!!raw-loader?!../../../assets/images/feather/clock.svg').default,
'cog': require('!!raw-loader?!../../../assets/images/feather/cog.svg').default,
'delete': require('!!raw-loader?!../../../assets/images/feather/delete.svg').default,
'inbox-full': require('!!raw-loader?!../../../assets/images/feather/inbox-full.svg').default,
'sign-out': require('!!raw-loader?!../../../assets/images/feather/log-out.svg').default,
'download': require('!!raw-loader?!../../../assets/images/feather/download.svg').default,
'ownership-change': require('!!raw-loader?!../../../assets/images/feather/share.svg').default,
'share': require('!!raw-loader?!../../../assets/images/feather/share-2.svg').default,
'channel': require('!!raw-loader?!../../../assets/images/feather/tv.svg').default,
'user': require('!!raw-loader?!../../../assets/images/feather/user.svg').default,
'users': require('!!raw-loader?!../../../assets/images/feather/users.svg').default,
'user-add': require('!!raw-loader?!../../../assets/images/feather/user-plus.svg').default,
'server': require('!!raw-loader?!../../../assets/images/feather/server.svg').default,
'add': require('!!raw-loader?!../../../assets/images/feather/plus-circle.svg').default,
'cloud-error': require('!!raw-loader?!../../../assets/images/feather/cloud-off.svg').default,
'undo': require('!!raw-loader?!../../../assets/images/feather/corner-up-left.svg').default,
'circle-tick': require('!!raw-loader?!../../../assets/images/feather/check-circle.svg').default,
'more-horizontal': require('!!raw-loader?!../../../assets/images/feather/more-horizontal.svg').default,
'more-vertical': require('!!raw-loader?!../../../assets/images/feather/more-vertical.svg').default,
'play': require('!!raw-loader?!../../../assets/images/feather/play.svg').default,
'p2p': require('!!raw-loader?!../../../assets/images/feather/airplay.svg').default,
'fullscreen': require('!!raw-loader?!../../../assets/images/feather/maximize.svg').default,
'exit-fullscreen': require('!!raw-loader?!../../../assets/images/feather/minimize.svg').default,
'film': require('!!raw-loader?!../../../assets/images/feather/film.svg').default,
'edit': require('!!raw-loader?!../../../assets/images/feather/edit-2.svg').default,
'sensitive': require('!!raw-loader?!../../../assets/images/feather/eye.svg').default,
'unsensitive': require('!!raw-loader?!../../../assets/images/feather/eye-off.svg').default,
'refresh': require('!!raw-loader?!../../../assets/images/feather/refresh-cw.svg').default,
'go': require('!!raw-loader?!../../../assets/images/feather/arrow-up-right.svg').default,
'cross': require('!!raw-loader?!../../../assets/images/feather/x.svg').default,
'tick': require('!!raw-loader?!../../../assets/images/feather/check.svg').default,
'repeat': require('!!raw-loader?!../../../assets/images/feather/repeat.svg').default
}
export type GlobalIconName = keyof typeof icons

View file

@ -10,6 +10,10 @@ my-small-loader ::ng-deep .root {
.action-button {
@include peertube-button-link;
@include button-with-icon(21px, 0, -2px);
> :nth-child(2) {
margin-left: 5px;
}
}
.orange-button {

View file

@ -43,7 +43,7 @@
</ng-container>
<ng-container *ngSwitchCase="UserNotificationType.NEW_VIDEO_ABUSE_FOR_MODERATORS">
<my-global-icon iconName="alert" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="flag" aria-hidden="true"></my-global-icon>
<div class="message" i18n>
<a (click)="markAsRead(notification)" [routerLink]="notification.videoAbuseUrl">A new video abuse</a> has been created on video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.videoAbuse.video.name }}</a>
@ -81,7 +81,7 @@
</ng-container>
<ng-container *ngSwitchCase="UserNotificationType.MY_VIDEO_PUBLISHED">
<my-global-icon iconName="sparkle" aria-hidden="true"></my-global-icon>
<my-global-icon iconName="film" aria-hidden="true"></my-global-icon>
<div class="message" i18n>
Your video <a (click)="markAsRead(notification)" [routerLink]="notification.videoUrl">{{ notification.video.name }}</a> has been published

View file

@ -283,7 +283,7 @@ export class VideoActionsDropdownComponent implements OnChanges {
label: this.i18n('Report'),
handler: () => this.showReportModal(),
isDisplayed: () => this.authService.isLoggedIn() && this.displayOptions.report,
iconName: 'alert'
iconName: 'flag'
}
],
[ // actions regarding the account/its server

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-airplay"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon></svg>

After

Width:  |  Height:  |  Size: 362 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-alert-triangle"><path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path><line x1="12" y1="9" x2="12" y2="13"></line><line x1="12" y1="17" x2="12.01" y2="17"></line></svg>

After

Width:  |  Height:  |  Size: 424 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-up-right"><line x1="7" y1="17" x2="17" y2="7"></line><polyline points="7 7 17 7 17 17"></polyline></svg>

After

Width:  |  Height:  |  Size: 314 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check-circle"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>

After

Width:  |  Height:  |  Size: 328 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>

After

Width:  |  Height:  |  Size: 262 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-clock"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>

After

Width:  |  Height:  |  Size: 304 B

View file

Before

Width:  |  Height:  |  Size: 377 B

After

Width:  |  Height:  |  Size: 377 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-cloud-off"><path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"></path><line x1="1" y1="1" x2="23" y2="23"></line></svg>

After

Width:  |  Height:  |  Size: 371 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-settings"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>

After

Width:  |  Height:  |  Size: 1,011 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-corner-up-left"><polyline points="9 14 4 9 9 4"></polyline><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path></svg>

After

Width:  |  Height:  |  Size: 312 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trash-2"><polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line></svg>

After

Width:  |  Height:  |  Size: 448 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-thumbs-down"><path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"></path></svg>

After

Width:  |  Height:  |  Size: 374 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-download"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line></svg>

After

Width:  |  Height:  |  Size: 370 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-edit-2"><path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path></svg>

After

Width:  |  Height:  |  Size: 291 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-eye-off"><path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path><line x1="1" y1="1" x2="23" y2="23"></line></svg>

After

Width:  |  Height:  |  Size: 460 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-eye"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></svg>

After

Width:  |  Height:  |  Size: 316 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-film"><rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line></svg>

After

Width:  |  Height:  |  Size: 586 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-filter"><polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></polygon></svg>

After

Width:  |  Height:  |  Size: 290 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-flag"><path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line></svg>

After

Width:  |  Height:  |  Size: 334 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-globe"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>

After

Width:  |  Height:  |  Size: 409 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-help-circle"><circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line></svg>

After

Width:  |  Height:  |  Size: 365 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-home"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline></svg>

After

Width:  |  Height:  |  Size: 332 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-inbox"><polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path></svg>

After

Width:  |  Height:  |  Size: 405 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-thumbs-up"><path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path></svg>

After

Width:  |  Height:  |  Size: 354 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>

After

Width:  |  Height:  |  Size: 482 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-log-out"><path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line></svg>

After

Width:  |  Height:  |  Size: 367 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-maximize"><path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path></svg>

After

Width:  |  Height:  |  Size: 331 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minimize"><path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"></path></svg>

After

Width:  |  Height:  |  Size: 331 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-horizontal"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg>

After

Width:  |  Height:  |  Size: 343 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-more-vertical"><circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle></svg>

After

Width:  |  Height:  |  Size: 341 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-slash"><circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line></svg>

After

Width:  |  Height:  |  Size: 312 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-play"><polygon points="5 3 19 12 5 21 5 3"></polygon></svg>

After

Width:  |  Height:  |  Size: 263 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>

After

Width:  |  Height:  |  Size: 351 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line></svg>

After

Width:  |  Height:  |  Size: 351 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-refresh-cw"><polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path></svg>

After

Width:  |  Height:  |  Size: 400 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-repeat"><polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path></svg>

After

Width:  |  Height:  |  Size: 392 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>

After

Width:  |  Height:  |  Size: 308 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-server"><rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect><rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect><line x1="6" y1="6" x2="6.01" y2="6"></line><line x1="6" y1="18" x2="6.01" y2="18"></line></svg>

After

Width:  |  Height:  |  Size: 431 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-share-2"><circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line></svg>

After

Width:  |  Height:  |  Size: 445 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-share"><path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line></svg>

After

Width:  |  Height:  |  Size: 364 B

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg>

After

Width:  |  Height:  |  Size: 330 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-trending-up"><polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline></svg>

After

Width:  |  Height:  |  Size: 328 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-tv"><rect x="2" y="7" width="20" height="15" rx="2" ry="2"></rect><polyline points="17 2 12 7 7 2"></polyline></svg>

After

Width:  |  Height:  |  Size: 320 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-upload-cloud"><polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline></svg>

After

Width:  |  Height:  |  Size: 431 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user-plus"><path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="20" y1="8" x2="20" y2="14"></line><line x1="23" y1="11" x2="17" y2="11"></line></svg>

After

Width:  |  Height:  |  Size: 408 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>

After

Width:  |  Height:  |  Size: 313 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-users"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>

After

Width:  |  Height:  |  Size: 400 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>

After

Width:  |  Height:  |  Size: 299 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<circle cx="12" cy="12" r="10" stroke="#000" stroke-width="2"/>
<rect width="2" height="10" x="11" y="7" fill="#000" rx="1"/>
<rect width="10" height="2" x="7" y="11" fill="#000" rx="1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 323 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<path stroke="#000" stroke-linejoin="round" stroke-width="2" d="M12.9 3.5L12 2l-.9 1.5-9 16-.8 1.5h21.4l-.8-1.5-9-16z"/>
<path fill="#000" d="M12 17.8a1.3 1.3 0 100-2.6 1.3 1.3 0 000 2.6z"/>
<rect width="2" height="5" x="11" y="9" fill="#000" rx="1"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 387 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="2">
<circle cx="12" cy="12" r="10"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M8.5 12.5l2 2 5-5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 272 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="2">
<path d="M12 21a9 9 0 110-18 9 9 0 010 18z"/>
<path stroke-linecap="round" d="M12 12h4"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M12 12V7"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 324 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M7 18H5a4 4 0 111-7.9v-.6a5.5 5.5 0 0110.8-1.4A5 5 0 0123 13a5 5 0 01-5 5h-1M9 21l6-6M15 21l-6-6"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 314 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="none" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M7.2 4.4A9 9 0 0110 3.2V2c0-.6.4-1 1-1h2c.5 0 1 .4 1 1v1.2c1 .3 2 .6 2.8 1.2l.9-.9a1 1 0 011.4 0L20.5 5c.4.4.4 1 0 1.4l-.9 1a9 9 0 011.2 2.7H22c.6 0 1 .4 1 1v2c0 .5-.4 1-1 1h-1.2a9 9 0 01-1.2 2.8l.9.9c.4.3.4 1 0 1.4L19 20.5a1 1 0 01-1.4 0l-1-.9a9 9 0 01-2.7 1.2V22c0 .6-.4 1-1 1h-2a1 1 0 01-1-1v-1.2a9 9 0 01-2.8-1.2l-.9.9a1 1 0 01-1.4 0L3.5 19a1 1 0 010-1.4l.9-1A9 9 0 013.2 14H2a1 1 0 01-1-1v-2c0-.5.4-1 1-1h1.2c.3-1 .6-2 1.2-2.8l-.9-.9a1 1 0 010-1.4L5 3.5a1 1 0 011.4 0l1 .9zM12 16a4 4 0 100-8 4 4 0 000 8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 689 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="2">
<path d="M19 5L5 19M5 5l14 14"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 214 B

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<path stroke="#000" stroke-width="2" d="M5 7v13c0 1.1.9 2 2 2h10a2 2 0 002-2V7"/>
<rect width="20" height="2" x="2" y="4" fill="#000" rx="1"/>
<path fill="#000" d="M9 11c0-.6.4-1 1-1s1 .5 1 1v6c0 .6-.4 1-1 1a1 1 0 01-1-1v-6zm4 0c0-.6.4-1 1-1s1 .5 1 1v6c0 .6-.4 1-1 1a1 1 0 01-1-1v-6z"/>
<path stroke="#000" stroke-linejoin="round" stroke-width="2" d="M9 5V3c0-.6.5-1 1-1h4c.6 0 1 .4 1 1v2"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 531 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="2">
<path d="M12 3v12"/>
<path stroke-linejoin="round" d="M18 11l-6 6-6-6M3 18v2c0 .6.4 1 1 1h16c.6 0 1-.4 1-1v-2"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 298 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 21v-4L15.9 4.1a3 3 0 014.2 0L20 4a3 3 0 010 4.2L7 21H3z"/>
<path d="M14.5 5.5l4 4"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 306 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#333" stroke-linejoin="round" stroke-width="2">
<path d="M6 8h12v8H6z"/>
<path stroke-linecap="round" d="M20 4v3h3M1 17h3v3M20 20v-3h3M1 7h3V4"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 284 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<path stroke="#000" stroke-linejoin="round" stroke-width="2" d="M11.6 8l2.7-2.7.3-.3H20a2 2 0 012 2v11a2 2 0 01-2 2H4a2 2 0 01-2-2v-8c0-1.1.9-2 2-2h7.6z"/>
<path fill="#000" d="M3 5c0-.6.4-1 1-1h8.5l-2 2H4a1 1 0 01-1-1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 354 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="#000000" fill-rule="nonzero" d="M15 7v4H8l-4 1 4 1h7v4l5-5-5-5zm-7 8a2 2 0 01-.5 0l-4-1c-2-.5-2-3.4 0-4l4-1H13V7a2 2 0 013.4-1.4l5 5c.8.8.8 2 0 2.8l-5 5A2 2 0 0113 17v-2H8z"/>
</svg>

Before

Width:  |  Height:  |  Size: 268 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#333" stroke-width="2">
<rect width="22" height="16" x="1" y="4" rx="1"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M20 10V7h-3M7 17H4v-3M20 14v3h-3M7 7H4v3"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 312 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<circle cx="12" cy="12" r="10" stroke="#000" stroke-width="2"/>
<path fill="#000" d="M12 14.5c.4 0 .6-.2.7-.6v-.7c1.8-.3 3.3-1.2 3.3-3.3 0-2-1.5-3.2-3.8-3.2-1.4 0-2.5.5-3.4 1.3-.2.2-.3.4-.3.7a.9.9 0 001.5.6c.7-.5 1.3-.9 2.2-.9 1.1 0 1.8.7 1.8 1.6 0 1-.8 1.6-2.3 1.7-.4 0-.7.4-.6.8l.1 1.4c0 .4.4.6.7.6h.1zm-1.2 2.3v.2a1 1 0 001.1 1 1 1 0 001.2-1v-.2a1 1 0 00-1.2-1 1 1 0 00-1.1 1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 514 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M6.6 18.4A9 9 0 0013 21h0a9 9 0 10-9-9"/>
<path fill="#000" d="M1.5 11h6l-3 3z"/>
<path d="M13 7v5l2.5 2.5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 332 B

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<path stroke="#333" stroke-linejoin="round" stroke-width="2" d="M7.4 14H2v6c0 1.1.9 2 2 2h16a2 2 0 002-2v-6H15.9l-.2.6a4 4 0 01-7.4 0l-.2-.6h-.7z"/>
<path stroke="#333" stroke-linejoin="round" stroke-width="2" d="M2 15.5V13l3.6-9c.2-.6.8-1 1.4-1h10c.6 0 1.2.4 1.4 1l3.7 9-.1 2"/>
<path fill="#333" d="M6 9h12v1H6V9zm-1 2h14v1H5v-1zm2-4h10v1H7V7zm1-2h8v1H8V5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 524 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="#000" fill-rule="evenodd" d="M10 12a2 2 0 114 0 2 2 0 11-4 0zm7 0a2 2 0 114 0 2 2 0 11-4 0zM3 12a2 2 0 114 0 2 2 0 11-4 0z"/>
</svg>

Before

Width:  |  Height:  |  Size: 218 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24">
<defs/>
<path fill="#000" fill-rule="evenodd" d="M10 12a2 2 0 114 0 2 2 0 11-4 0zm0-7a2 2 0 114 0 2 2 0 11-4 0zm0 14a2 2 0 114 0 2 2 0 11-4 0z"/>
</svg>

Before

Width:  |  Height:  |  Size: 245 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="2">
<circle cx="12" cy="12" r="9"/>
<path d="M18 18L6 6"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 217 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="#000" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M5 21V3l16 9z"/>
</svg>

Before

Width:  |  Height:  |  Size: 193 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="none" fill-rule="evenodd" stroke="#000" d="M7.5 7c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5s-.2.5-.5.5H8a.5.5 0 01-.5-.5zm0 5c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5s-.2.5-.5.5H8a.5.5 0 01-.5-.5zm0 5c0-.3.2-.5.5-.5h12c.3 0 .5.2.5.5s-.2.5-.5.5H8a.5.5 0 01-.5-.5zM4 7.5a.5.5 0 110-1 .5.5 0 010 1zm0 5a.5.5 0 110-1 .5.5 0 010 1zm0 5a.5.5 0 110-1 .5.5 0 010 1z"/>
</svg>

Before

Width:  |  Height:  |  Size: 434 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<path fill="#000" fill-rule="evenodd" d="M21 13a9 9 0 11-9-9v2a7 7 0 107 7 1 1 0 112 0zm-9-4V1l4 4-4 4z"/>
</svg>

Before

Width:  |  Height:  |  Size: 187 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<path fill="#333" fill-rule="nonzero" d="M16.6 9.8A1 1 0 0115 9V5a1 1 0 011.6-.8l3 2a1 1 0 010 1.6l-3 2zM7.4 19.8l-3-2a1 1 0 010-1.6l3-2A1 1 0 019 15v4a1 1 0 01-1.6.8z"/>
<path stroke="#333" stroke-linecap="round" stroke-width="2" d="M3 12a5 5 0 015-5h10m3 5a5 5 0 01-5 5H7"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 408 B

View file

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<rect width="22" height="14" x="1" y="7" stroke="#000" stroke-width="2" rx="2"/>
<path fill="#000" d="M11 3h2v4h-2z"/>
<circle cx="12" cy="2" r="2" fill="#000"/>
<circle cx="18" cy="12" r="2" fill="#000"/>
<circle cx="6" cy="12" r="2" fill="#000"/>
<path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 15c0 1.1.9 2 2 2h0a2 2 0 002-2"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 548 B

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="2">
<circle cx="10" cy="10" r="7"/>
<path stroke-linecap="round" stroke-linejoin="round" d="M15 15l6 6"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 291 B

View file

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd">
<ellipse cx="12" cy="6" stroke="#000" stroke-width="2" rx="9" ry="3"/>
<path stroke="#000" d="M3 10.5c0 1.7 4 3 9 3h0c5 0 9-1.3 9-3M3 14.5c0 1.7 4 3 9 3s9-1.3 9-3"/>
<path stroke="#000" stroke-width="2" d="M3 6v13c0 1.7 4 3 9 3s9-1.3 9-3V6"/>
<circle cx="18.5" cy="10.5" r="1" fill="#000"/>
<circle cx="18.5" cy="14.5" r="1" fill="#000"/>
<circle cx="18.5" cy="18.5" r="1" fill="#000"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 534 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1536 1536">
<defs/>
<path d="M640 1440c0 28 13 96-32 96H288A288 288 0 010 1248V544c0-159 129-288 288-288h320c17 0 32 15 32 32 0 28 13 96-32 96H288c-88 0-160 72-160 160v704c0 88 72 160 160 160h288c25 0 64-5 64 32zm928-544c0 17-7 33-19 45l-544 544c-12 12-28 19-45 19-35 0-64-29-64-64v-288H448c-35 0-64-29-64-64V704c0-35 29-64 64-64h448V352c0-35 29-64 64-64 17 0 33 7 45 19l544 544c12 12 19 28 19 45z"/>
</svg>

Before

Width:  |  Height:  |  Size: 465 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path d="M10 9C8.5 7.5 8 3 8 3s-.5 4.5-2 6-4 2-4 2 2.5.5 4 2 2 6 2 6 .5-4.5 2-6 4-2 4-2-2.5-.5-4-2zM19.7 4.8c-1-1-1.2-3.8-1.2-3.8s-.3 2.8-1.2 3.8C16.5 5.7 15 6 15 6s1.5.3 2.3 1.3c1 .9 1.2 3.7 1.2 3.7s.3-2.8 1.2-3.8C20.5 6.3 22 6 22 6s-1.5-.3-2.3-1.3zM17 17c-.8-.8-1-3-1-3s-.3 2.3-1 3c-.8.8-2 1-2 1s1.3.3 2 1c.8.8 1 3 1 3s.3-2.3 1-3c.8-.8 2-1 2-1s-1.3-.3-2-1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 567 B

View file

@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 559 559">
<defs/>
<path d="M53 0a497 497 0 01358 148 508 508 0 01148 358c0 15-5 27-15 38a51 51 0 01-38 15c-15 0-27-5-38-15a51 51 0 01-15-38 390 390 0 00-117-282A400 400 0 0053 106 52 52 0 010 53c0-14 5-27 16-37C26 5 39 0 53 0zm0 201c42 0 82 8 119 25s69 37 96 65a312 312 0 0190 215c0 15-5 27-16 38a51 51 0 01-37 15c-15 0-27-5-38-15a51 51 0 01-15-38 192 192 0 00-59-140 201 201 0 00-140-58c-14 0-27-5-37-16-11-10-16-23-16-37s5-28 16-38c10-10 23-16 37-16zm98 280a73 73 0 01-45 69c-10 4-19 6-30 6a73 73 0 01-68-46 74 74 0 0139-98 74 74 0 01104 69z"/>
</svg>

Before

Width:  |  Height:  |  Size: 615 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<defs/>
<g fill="none" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="2">
<path d="M21 6L9 18M4 13l5 5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 213 B

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