new editor init

This commit is contained in:
codecalm 2023-02-25 14:46:30 +01:00
parent f50eac83f2
commit 390ad99d67
6866 changed files with 1522 additions and 29723 deletions

View File

@ -0,0 +1,5 @@
export const Icon = ({ name, strokeWidth = 2 }) => {
return <svg className="icon" width={24} height={24} strokeWidth={strokeWidth}>
<use xlinkHref={`#icon-${name}`} />
</svg>
}

View File

@ -0,0 +1,21 @@
import icons from '../data/icons.json'
export const Sprite = () => {
return <svg style={{ display: 'none' }}>
{icons.map(i => (
<symbol
key={i.name}
id={`icon-${i.name}`}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
dangerouslySetInnerHTML={{ __html: i.content }}
/>
))}
</svg>
}

View File

@ -0,0 +1,15 @@
import { Icon } from './Icon.js'
export const Toolbar = ({ items, strokeWidth, setIcon }) => {
return <div className="toolbar">
{items.split('|').map((group, i) => (
<div className="buttons" key={i}>
{group.split(',').map(i =>
<div className="button" key={i} onClick={() => setIcon(i)}>
<Icon name={i} strokeWidth={strokeWidth} />
</div>
)}
</div>
))}
</div>
}

7
.build/app/helpers.mjs Normal file
View File

@ -0,0 +1,7 @@
import glob from 'glob'
import matter from 'gray-matter'
import fs from 'fs'
import path from 'path'

View File

@ -0,0 +1,10 @@
import { getIcons } from '../helpers.mjs'
import fs from 'fs'
import path from 'path'
import url from 'url'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url)),
file = path.join(__dirname, './data/icons.json'),
icons = getIcons()
fs.writeFileSync(file, JSON.stringify(icons))

View File

@ -0,0 +1,20 @@
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
webpack(config, options) {
config.resolve = {
...config.resolve,
fallback: {
'fs': false,
'path': false,
'os': false,
child_process: false
}
}
return config
}
}
export default nextConfig

5
.build/app/pages/_app.js Normal file
View File

@ -0,0 +1,5 @@
import '../style.scss'
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}

View File

@ -0,0 +1,48 @@
import icons from '../data/icons.json'
import { Icon } from '../components/Icon.js'
import { Sprite } from '../components/Sprite.js'
export default function Icons() {
return <>
<div className="container">
<Sprite />
<div className="box">
<div className="mb">
<div className="icons-list">
{icons.map(icon => (
<div className="icons-list-icon js-icon" title={icon.name}>
<Icon name={icon.name}/>
</div>
))}
</div>
</div>
</div>
{/* {% if jekyll.environment != "development" %}*/}
{/* <div class="box">*/}
{/* <div class="mb">*/}
{/* <div class="icons-list">*/}
{/* {% for icon in site.icons %}*/}
{/* {% assign name = icon.slug %}*/}
{/* <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">*/}
{/* {% include_cached icon.html name=name stroke=1.5 %}*/}
{/* </div>*/}
{/* {% endfor %}*/}
{/* </div>*/}
{/* </div>*/}
{/* </div>*/}
{/* <div class="box">*/}
{/* <div class="mb">*/}
{/* <div class="icons-list">*/}
{/* {% for icon in site.icons %}*/}
{/* {% assign name = icon.slug %}*/}
{/* <div class="icons-list-icon js-icon" title="{{ icon.slug }}" data-icon="{{ name }}">*/}
{/* {% include_cached icon.html name=name stroke=1 %}*/}
{/* </div>*/}
{/* {% endfor %}*/}
{/* </div>*/}
{/* </div>*/}
{/* </div>*/}
{/* {% endif %}*/}
</div>
</>
}

30
.build/app/pages/tags.jsx Normal file
View File

@ -0,0 +1,30 @@
import icons from '../data/icons.json'
import { Icon } from '../components/Icon.js'
import { Sprite } from '../components/Sprite.js'
export default function Tags () {
return <>
<div class="container">
<Sprite />
<div class="box">
<table class="table mb">
{icons.map(icon => (
<tr key={icon.name}>
<td class="td-1">
<Icon name={icon.name} />
</td>
<th>{ icon.name }</th>
<td>{ (icon.tags || []).join(', ') }</td>
<td>{ icon.category }</td>
<td>{ icon.version }</td>
<td>{ icon.unicode }</td>
</tr>
))}
</table>
{/*<p>Untagged: {{ i }}</p>*/}
</div>
</div>
</>
}

231
.build/app/public/bg.svg Normal file
View File

@ -0,0 +1,231 @@
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd" stroke="#206bc4" stroke-width=".025" opacity=".5">
<rect x="4" y="2" width="16" height="20" rx="3" stroke-dasharray=".5 .5"/>
<rect x="2" y="4" width="20" height="16" rx="3" stroke-dasharray=".5 .5"/>
<rect x="3" y="3" width="18" height="18" rx="3" />
<circle cx="12" cy="12" r="5" />
<circle cx="12" cy="12" r="10" />
<line x1="0" y1="12" x2="24" y2="12" />
<line x1="12" y1="0" x2="12" y2="24" />
</g>
<g font-family="system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji">
<g fill="#ccc" font-size=".3">
<text x="0" y="1.35" >1</text>
<text x="1.1" y=".25" >1</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="1" x2="24" y2="1" />
<line x1="1" y1="0" x2="1" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="2.35" >2</text>
<text x="2.1" y=".25" >2</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="2" x2="24" y2="2" />
<line x1="2" y1="0" x2="2" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="3.35" >3</text>
<text x="3.1" y=".25" >3</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="3" x2="24" y2="3" />
<line x1="3" y1="0" x2="3" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="4.35" >4</text>
<text x="4.1" y=".25" >4</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="4" x2="24" y2="4" />
<line x1="4" y1="0" x2="4" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="5.35" >5</text>
<text x="5.1" y=".25" >5</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="5" x2="24" y2="5" />
<line x1="5" y1="0" x2="5" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="6.35" >6</text>
<text x="6.1" y=".25" >6</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="6" x2="24" y2="6" />
<line x1="6" y1="0" x2="6" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="7.35" >7</text>
<text x="7.1" y=".25" >7</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="7" x2="24" y2="7" />
<line x1="7" y1="0" x2="7" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="8.35" >8</text>
<text x="8.1" y=".25" >8</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="8" x2="24" y2="8" />
<line x1="8" y1="0" x2="8" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="9.35" >9</text>
<text x="9.1" y=".25" >9</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="9" x2="24" y2="9" />
<line x1="9" y1="0" x2="9" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="10.35" >10</text>
<text x="10.1" y=".25" >10</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="10" x2="24" y2="10" />
<line x1="10" y1="0" x2="10" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="11.35" >11</text>
<text x="11.1" y=".25" >11</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="11" x2="24" y2="11" />
<line x1="11" y1="0" x2="11" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="12.35" >12</text>
<text x="12.1" y=".25" >12</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="12" x2="24" y2="12" />
<line x1="12" y1="0" x2="12" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="13.35" >13</text>
<text x="13.1" y=".25" >13</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="13" x2="24" y2="13" />
<line x1="13" y1="0" x2="13" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="14.35" >14</text>
<text x="14.1" y=".25" >14</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="14" x2="24" y2="14" />
<line x1="14" y1="0" x2="14" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="15.35" >15</text>
<text x="15.1" y=".25" >15</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="15" x2="24" y2="15" />
<line x1="15" y1="0" x2="15" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="16.35" >16</text>
<text x="16.1" y=".25" >16</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="16" x2="24" y2="16" />
<line x1="16" y1="0" x2="16" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="17.35" >17</text>
<text x="17.1" y=".25" >17</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="17" x2="24" y2="17" />
<line x1="17" y1="0" x2="17" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="18.35" >18</text>
<text x="18.1" y=".25" >18</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="18" x2="24" y2="18" />
<line x1="18" y1="0" x2="18" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="19.35" >19</text>
<text x="19.1" y=".25" >19</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="19" x2="24" y2="19" />
<line x1="19" y1="0" x2="19" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="20.35" >20</text>
<text x="20.1" y=".25" >20</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="20" x2="24" y2="20" />
<line x1="20" y1="0" x2="20" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="21.35" >21</text>
<text x="21.1" y=".25" >21</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="21" x2="24" y2="21" />
<line x1="21" y1="0" x2="21" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="22.35" >22</text>
<text x="22.1" y=".25" >22</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="22" x2="24" y2="22" />
<line x1="22" y1="0" x2="22" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="23.35" >23</text>
<text x="23.1" y=".25" >23</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="23" x2="24" y2="23" />
<line x1="23" y1="0" x2="23" y2="24" />
</g>
<g fill="#ccc" font-size=".3">
<text x="0" y="24.35" >24</text>
<text x="24.1" y=".25" >24</text>
</g>
<g stroke="#666" stroke-width=".01">
<line x1="0" y1="24" x2="24" y2="24" />
<line x1="24" y1="0" x2="24" y2="24" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.9 KiB

458
.build/app/style.scss Normal file
View File

@ -0,0 +1,458 @@
$breakpoint: 50rem;
$primary: #206bc4;
$border: #eeeeee;
$muted: #aaaaaa;
$dark: #354052;
$light: #fafbfc;
$btn-form-height: 2rem;
$hover: rgba(0, 0, 0, .04);
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 16px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
body {
background: #fafbfc;
font-size: .9375rem;
color: $dark;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@media print {
color: #000;
}
}
a {
color: $primary;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.container {
max-width: 60rem;
margin: 0 auto;
padding: 1rem;
@media (max-width: #{$breakpoint}) {
padding: 0;
}
@media print {
padding: 0;
max-width: 100%;
}
}
.row {
display: flex;
flex-direction: column;
@media (min-width: #{$breakpoint}) {
flex-direction: row;
}
}
.col {
flex: 1;
}
.col-aside {
width: 15rem;
margin-top: 2rem;
display: flex;
flex-direction: column;
@media (min-width: #{$breakpoint}) {
margin-top: 0;
margin-left: 2rem;
}
}
.box {
padding: 2rem;
background: #ffff;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .1);
page-break-before: always;
margin-bottom: 2rem;
@media (max-width: #{$breakpoint}) {
padding: .5rem;
box-shadow: none;
}
@media print {
padding: 0;
box-shadow: none;
margin-bottom: 0;
}
}
.icon-title {
font-size: 1.25rem;
line-height: 1;
margin: 0 0 3rem;
font-weight: 600;
}
.icon-subtitle {
font-size: 1rem;
line-height: 1;
margin: 0 0 1rem;
font-weight: 600;
}
.category-subtitle {
font-size: .9rem;
line-height: 1;
margin: 1rem 0 .5rem;
font-weight: 600;
}
.icon-preview-wrap {
position: relative;
&:before {
content: '';
padding-top: 100%;
display: block;
}
}
.icon-preview {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url(public/bg.svg) no-repeat center/100%;
svg {
width: 100%;
height: 100%;
opacity: .8;
+ svg {
stroke-width: .08;
opacity: 1;
stroke: red;
position: absolute;
left: 0;
top: 0;
pointer-events: none;
stroke-dasharray: 0 !important;
* {
stroke-dasharray: 0 !important;
}
}
}
}
.icons-list {
display: table;
margin: -.25rem;
}
.icons-list-borders {
.icons-list-icon {
border-color: $dark;
}
}
.icons-list-squares,
.icons-list-circles {
.icons-list-icon {
background: $dark;
color: $light;
}
}
.icons-list-circles {
.icons-list-icon {
border-radius: 50%;
}
}
.icons-list-icon {
margin: .25rem;
min-width: 2.25rem;
height: 2.25rem;
color: inherit;
border-radius: 3px;
display: inline-flex;
align-items: center;
justify-content: center;
border: 1px solid transparent;
position: relative;
page-break-inside: avoid;
&.new-icon {
&:after {
content: '';
position: absolute;
top: 2px;
right: 2px;
width: 6px;
height: 6px;
background: #cc0000;
border-radius: 50%;
}
}
&.active {
background: #f0f0f0;
}
@at-root a#{&}:hover {
opacity: .75;
}
.icon {
display: block;
width: 1.5rem;
height: 1.5rem;
}
}
.mb {
margin-bottom: 2rem;
}
.mt-auto {
margin-top: auto;
}
/*
Components
*/
.btn {
display: inline-flex;
color: #ffffff;
background: $primary;
border: 0;
border-radius: 3px;
font-size: inherit;
line-height: 1;
justify-content: center;
align-items: center;
min-height: $btn-form-height;
min-width: $btn-form-height;
padding: 0 .75rem;
.icon {
width: 1rem;
height: 1rem;
margin: 0 .5rem 0 -.25rem;
}
}
.btn-icon {
padding: 0;
justify-content: center;
.icon {
margin: 0;
}
}
.btn-link {
background: transparent;
color: $primary;
}
.input {
border: 1px solid $border;
border-radius: 3px;
height: $btn-form-height;
display: block;
font-size: inherit;
font-family: inherit;
padding: 0 .5rem;
width: 100%;
&:focus {
outline: 0;
box-shadow: 0 0 0 3px rgba($primary, .1);
border-color: rgba($primary, .4);
}
@at-root textarea#{&} {
min-height: 8rem;
}
}
.icon {
width: 1em;
height: 1em;
vertical-align: -.15em;
}
.input-icon {
position: relative;
.input {
padding-right: 2rem;
}
.icon {
color: $muted;
width: 1.25rem;
height: 1.25rem;
position: absolute;
top: ($btn-form-height - 1.25rem) * .5;
right: ($btn-form-height - 1.25rem) * .5;
stroke-width: 1.75;
}
&.icon-left {
.icon {
left: ($btn-form-height - 1.25rem) * .5;
right: auto;
}
.input {
padding-left: 2rem;
padding-right: 0;
}
}
}
.avatar {
background: rgba($muted, .1);
color: $muted;
display: inline-flex;
width: 2.5rem;
height: 2.5rem;
align-items: center;
justify-content: center;
border-radius: 50%;
vertical-align: bottom;
.icon {
height: 60%;
width: 60%;
}
}
.avatar-sm {
width: 1.5rem;
height: 1.5rem;
}
.tabs {
display: flex;
.tab {
flex: 1;
text-align: center;
border-bottom: 1px solid $border;
padding: .25rem 0;
color: inherit;
text-decoration: none;
cursor: pointer;
&.active {
color: $primary;
border-bottom-color: $primary;
}
.icon {
width: 1rem;
height: 1rem;
}
}
}
.input-range {
width: 100%;
}
.icon-size {
display: inline-block;
svg {
width: 100%;
height: 100%;
}
}
.icon-size-16 { width: 16px; height: 16px }
.icon-size-24 { width: 24px; height: 24px }
.icon-size-32 { width: 32px; height: 32px }
.icon-size-48 { width: 48px; height: 48px }
.icon-size-64 { width: 64px; height: 64px }
.table {
width: 100%;
border-collapse: collapse;
td, th {
padding: .5rem;
text-align: left;
border: 1px solid #eee;
}
.icon {
width: 24px;
height: 24px;
}
}
.td-1 {
width: 1%;
}
$border-color: #e0e0e0;
.toolbar {
display: flex;
flex-wrap: wrap;
}
.buttons {
display: flex;
margin-right: .5rem;
margin-bottom: .5rem;
border: 1px solid $border-color;
border-radius: 3px;
cursor: pointer;
.button + .button {
border-left: 1px solid $border-color;
}
}
.button {
display: inline-flex;
width: 2rem;
height: 2rem;
align-items: center;
justify-content: center;
color: mix($dark, #fff, 75%);
svg {
width: 1.25rem;
height: 1.25rem;
}
}
.text-muted {
color: $muted;
}

View File

@ -9,6 +9,21 @@ import { parseSync } from 'svgson'
import { optimize } from 'svgo'
import cp from 'child_process'
import minimist from 'minimist'
import glob from 'glob'
import matter from 'gray-matter'
const defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
className: "icon icon-tabler",
width: "24",
height: "24",
viewBox: "0 0 24 24",
strokeWidth: "2",
stroke: "currentColor",
fill: "none",
strokeLinecap: "round",
strokeLinejoin: "round"
}
export const getCurrentDirPath = () => {
return path.dirname(fileURLToPath(import.meta.url));

40
.build/svg.mjs Normal file
View File

@ -0,0 +1,40 @@
import glob from 'glob'
import matter from 'gray-matter'
import { getCurrentDirPath } from './helpers.mjs'
const getRawIconData = (content) => {
return content
.replace('<svg>', '')
.replace('</svg>', '')
.replace(/\n\s+/g, '')
.trim()
}
export const getIcons = () => {
return glob.sync(path.join(getCurrentDirPath(), '../src/*.svg')).map(icon => {
const svg = fs.readFileSync(icon, 'utf-8'),
name = path.basename(icon, '.svg')
const { content, data } = matter(svg)
return {
name,
content: getRawIconData(content, name),
...data
}
})
}
export const groupByCategory = (items) => {
return Object.values(items.reduce((group, item) => {
const { category } = item;
group[category] = group[category] ?? {
name: category,
items: []
};
group[category].items.push(item);
return group;
}, {}))
}

2
.gitignore vendored
View File

@ -33,3 +33,5 @@ packages/icons*/icons/*
.turbo
.sass-cache
.build/app/data/icons.json

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-123" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 10l2 -2v8" />
<path d="M9 8h3a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h3" />
<path d="M17 8h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5" />
</svg>

Before

Width:  |  Height:  |  Size: 536 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-24-hours" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4" />
<path d="M4 13a8.094 8.094 0 0 0 3 5.24" />
<path d="M11 15h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-1a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h2" />
<path d="M17 15v2a1 1 0 0 0 1 1h1" />
<path d="M20 15v6" />
</svg>

Before

Width:  |  Height:  |  Size: 548 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-2fa" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54" />
<path d="M10 16v-8h4" />
<path d="M10 12l3 0" />
<path d="M17 16v-6a2 2 0 0 1 4 0v6" />
<path d="M17 13l4 0" />
</svg>

Before

Width:  |  Height:  |  Size: 463 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-360-view" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M14 6a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v6a1 1 0 0 0 1 1h2a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-3" />
<path d="M3 5h2.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-1.5h1.5a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1 -1.5 1.5h-2.5" />
<path d="M17 7v4a2 2 0 1 0 4 0v-4a2 2 0 1 0 -4 0z" />
<path d="M3 16c0 1.657 4.03 3 9 3s9 -1.343 9 -3" />
</svg>

Before

Width:  |  Height:  |  Size: 643 B

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-360" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M17 15.328c2.414 -.718 4 -1.94 4 -3.328c0 -2.21 -4.03 -4 -9 -4s-9 1.79 -9 4s4.03 4 9 4" />
<path d="M9 13l3 3l-3 3" />
</svg>

Before

Width:  |  Height:  |  Size: 418 B

View File

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-3d-cube-sphere-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M6 17.6l-2 -1.1v-2.5" />
<path d="M4 10v-2.5l2 -1.1" />
<path d="M10 4.1l2 -1.1l2 1.1" />
<path d="M18 6.4l2 1.1v2.5" />
<path d="M20 14v2" />
<path d="M14 19.9l-2 1.1l-2 -1.1" />
<path d="M18 8.6l2 -1.1" />
<path d="M12 12v2.5" />
<path d="M12 18.5v2.5" />
<path d="M12 12l-2 -1.12" />
<path d="M6 8.6l-2 -1.1" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 673 B

View File

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-3d-cube-sphere" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M6 17.6l-2 -1.1v-2.5" />
<path d="M4 10v-2.5l2 -1.1" />
<path d="M10 4.1l2 -1.1l2 1.1" />
<path d="M18 6.4l2 1.1v2.5" />
<path d="M20 14v2.5l-2 1.12" />
<path d="M14 19.9l-2 1.1l-2 -1.1" />
<path d="M12 12l2 -1.1" />
<path d="M18 8.6l2 -1.1" />
<path d="M12 12l0 2.5" />
<path d="M12 18.5l0 2.5" />
<path d="M12 12l-2 -1.12" />
<path d="M6 8.6l-2 -1.1" />
</svg>

Before

Width:  |  Height:  |  Size: 686 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-3d-rotate" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 3a7 7 0 0 1 7 7v4l-3 -3" />
<path d="M22 11l-3 3" />
<path d="M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z" />
<path d="M3 12.5v5.5l5 3" />
<path d="M8 15.545l5 -3.03" />
</svg>

Before

Width:  |  Height:  |  Size: 474 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-a-b-2" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z" />
<path d="M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z" />
<path d="M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4" />
<path d="M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9" />
<path d="M8 7h-4" />
</svg>

Before

Width:  |  Height:  |  Size: 602 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-a-b-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5" />
<path d="M12 12v6" />
<path d="M12 6v2" />
<path d="M16 8h3a2 2 0 1 1 0 4h-3m3 0a2 2 0 0 1 .83 3.82m-3.83 -3.82v-4" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 497 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-a-b" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 16v-5.5a2.5 2.5 0 0 1 5 0v5.5m0 -4h-5" />
<path d="M12 6l0 12" />
<path d="M16 16v-8h3a2 2 0 0 1 0 4h-3m3 0a2 2 0 0 1 0 4h-3" />
</svg>

Before

Width:  |  Height:  |  Size: 433 B

View File

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-abacus-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 5v16" />
<path d="M19 21v-2m0 -4v-12" />
<path d="M5 7h2m4 0h8" />
<path d="M5 15h10" />
<path d="M8 13v4" />
<path d="M11 13v4" />
<path d="M16 16v1" />
<path d="M14 5v4" />
<path d="M11 5v2" />
<path d="M8 8v1" />
<path d="M3 21h18" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 591 B

View File

@ -1,16 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-abacus" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5 3v18" />
<path d="M19 21v-18" />
<path d="M5 7h14" />
<path d="M5 15h14" />
<path d="M8 13v4" />
<path d="M11 13v4" />
<path d="M16 13v4" />
<path d="M14 5v4" />
<path d="M11 5v4" />
<path d="M8 5v4" />
<path d="M3 21h18" />
</svg>

Before

Width:  |  Height:  |  Size: 548 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-abc" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 16v-6a2 2 0 1 1 4 0v6" />
<path d="M3 13h4" />
<path d="M10 8v6a2 2 0 1 0 4 0v-1a2 2 0 1 0 -4 0v1" />
<path d="M20.732 12a2 2 0 0 0 -3.732 1v1a2 2 0 0 0 3.726 1.01" />
</svg>

Before

Width:  |  Height:  |  Size: 474 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-access-point-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 3l18 18" />
<path d="M14.828 9.172a4 4 0 0 1 1.172 2.828" />
<path d="M17.657 6.343a8 8 0 0 1 1.635 8.952" />
<path d="M9.168 14.828a4 4 0 0 1 0 -5.656" />
<path d="M6.337 17.657a8 8 0 0 1 0 -11.314" />
</svg>

Before

Width:  |  Height:  |  Size: 524 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-access-point" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 12l0 .01" />
<path d="M14.828 9.172a4 4 0 0 1 0 5.656" />
<path d="M17.657 6.343a8 8 0 0 1 0 11.314" />
<path d="M9.168 14.828a4 4 0 0 1 0 -5.656" />
<path d="M6.337 17.657a8 8 0 0 1 0 -11.314" />
</svg>

Before

Width:  |  Height:  |  Size: 515 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-accessible-off-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-1.051 6.844a1 1 0 0 0 -1.152 -.663l-.113 .03l-2.684 .895l-2.684 -.895l-.113 -.03a1 1 0 0 0 -.628 1.884l.109 .044l2.316 .771v.976l-1.832 2.75l-.06 .1a1 1 0 0 0 .237 1.21l.1 .076l.101 .06a1 1 0 0 0 1.21 -.237l.076 -.1l1.168 -1.752l1.168 1.752l.07 .093a1 1 0 0 0 1.653 -1.102l-.059 -.1l-1.832 -2.75v-.977l2.316 -.771l.109 -.044a1 1 0 0 0 .524 -1.221zm-3.949 -4.184a1.5 1.5 0 1 0 0 3a1.5 1.5 0 0 0 0 -3z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 842 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-accessible-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M10 16.5l2 -3l2 3m-2 -3v-1.5m2.627 -1.376l.373 -.124m-6 0l2.231 .744" />
<path d="M20.042 16.045a9 9 0 0 0 -12.087 -12.087m-2.318 1.677a9 9 0 1 0 12.725 12.73" />
<path d="M12 8a.5 .5 0 1 0 -.5 -.5" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 540 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-accessible" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" />
<path d="M10 16.5l2 -3l2 3m-2 -3v-2l3 -1m-6 0l3 1" />
<circle cx="12" cy="7.5" r=".5" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 464 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-activity-heartbeat" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 12h4.5l1.5 -6l4 12l2 -9l1.5 3h4.5" />
</svg>

Before

Width:  |  Height:  |  Size: 353 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-activity" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 12h4l3 8l4 -16l3 8h4" />
</svg>

Before

Width:  |  Height:  |  Size: 330 B

View File

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-ad-2" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M11.933 5h-6.933v16h13v-8" />
<path d="M14 17h-5" />
<path d="M9 13h5v-4h-5z" />
<path d="M15 5v-2" />
<path d="M18 6l2 -2" />
<path d="M19 9h2" />
</svg>

Before

Width:  |  Height:  |  Size: 456 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-ad-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M19 4h-14a3 3 0 0 0 -3 3v10a3 3 0 0 0 3 3h14a3 3 0 0 0 3 -3v-10a3 3 0 0 0 -3 -3zm-10 4a3 3 0 0 1 2.995 2.824l.005 .176v4a1 1 0 0 1 -1.993 .117l-.007 -.117v-1h-2v1a1 1 0 0 1 -1.993 .117l-.007 -.117v-4a3 3 0 0 1 3 -3zm0 2a1 1 0 0 0 -.993 .883l-.007 .117v1h2v-1a1 1 0 0 0 -1 -1zm8 -2a1 1 0 0 1 .993 .883l.007 .117v6a1 1 0 0 1 -.883 .993l-.117 .007h-1.5a2.5 2.5 0 1 1 .326 -4.979l.174 .029v-2.05a1 1 0 0 1 .883 -.993l.117 -.007zm-1.41 5.008l-.09 -.008a.5 .5 0 0 0 -.09 .992l.09 .008h.5v-.5l-.008 -.09a.5 .5 0 0 0 -.318 -.379l-.084 -.023z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 878 B

View File

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-ad-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 5h10a2 2 0 0 1 2 2v10m-2 2h-14a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2" />
<path d="M7 15v-4a2 2 0 0 1 2 -2m2 2v4" />
<path d="M7 13h4" />
<path d="M17 9v4" />
<path d="M16.115 12.131c.33 .149 .595 .412 .747 .74" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 548 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-ad" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" />
<path d="M7 15v-4a2 2 0 0 1 4 0v4" />
<path d="M7 13l4 0" />
<path d="M17 9v6h-1.5a1.5 1.5 0 1 1 1.5 -1.5" />
</svg>

Before

Width:  |  Height:  |  Size: 496 B

View File

@ -1,12 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-address-book-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M8 4h10a2 2 0 0 1 2 2v10m-.57 3.399c-.363 .37 -.87 .601 -1.43 .601h-10a2 2 0 0 1 -2 -2v-12" />
<path d="M10 16h6" />
<path d="M11 11a2 2 0 0 0 2 2m2 -2a2 2 0 0 0 -2 -2" />
<path d="M4 8h3" />
<path d="M4 12h3" />
<path d="M4 16h3" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 580 B

View File

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-address-book" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z" />
<path d="M10 16h6" />
<path d="M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M4 8h3" />
<path d="M4 12h3" />
<path d="M4 16h3" />
</svg>

Before

Width:  |  Height:  |  Size: 539 B

View File

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-adjustments-alt" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 8h4v4h-4z" />
<path d="M6 4l0 4" />
<path d="M6 12l0 8" />
<path d="M10 14h4v4h-4z" />
<path d="M12 4l0 10" />
<path d="M12 18l0 2" />
<path d="M16 5h4v4h-4z" />
<path d="M18 4l0 1" />
<path d="M18 9l0 11" />
</svg>

Before

Width:  |  Height:  |  Size: 537 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-adjustments-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M6 3a1 1 0 0 1 .993 .883l.007 .117v3.171a3.001 3.001 0 0 1 0 5.658v7.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-7.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-3.17a1 1 0 0 1 1 -1z" stroke-width="0" fill="currentColor" />
<path d="M12 3a1 1 0 0 1 .993 .883l.007 .117v9.171a3.001 3.001 0 0 1 0 5.658v1.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-1.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-9.17a1 1 0 0 1 1 -1z" stroke-width="0" fill="currentColor" />
<path d="M18 3a1 1 0 0 1 .993 .883l.007 .117v.171a3.001 3.001 0 0 1 0 5.658v10.171a1 1 0 0 1 -1.993 .117l-.007 -.117v-10.17a3.002 3.002 0 0 1 -1.995 -2.654l-.005 -.176l.005 -.176a3.002 3.002 0 0 1 1.995 -2.654v-.17a1 1 0 0 1 1 -1z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-adjustments-horizontal" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M14 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M4 6l8 0" />
<path d="M16 6l4 0" />
<path d="M8 12m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M4 12l2 0" />
<path d="M10 12l10 0" />
<path d="M17 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M4 18l11 0" />
<path d="M19 18l1 0" />
</svg>

Before

Width:  |  Height:  |  Size: 624 B

View File

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-adjustments-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M6 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M6 6v2" />
<path d="M6 12v8" />
<path d="M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M12 4v4" />
<path d="M12 12v2" />
<path d="M12 18v2" />
<path d="M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M18 4v1" />
<path d="M18 9v5" />
<path d="M18 18v2" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 676 B

View File

@ -1,14 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-adjustments" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M6 10m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M6 4l0 4" />
<path d="M6 12l0 8" />
<path d="M12 16m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M12 4l0 10" />
<path d="M12 18l0 2" />
<path d="M18 7m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
<path d="M18 4l0 1" />
<path d="M18 9l0 11" />
</svg>

Before

Width:  |  Height:  |  Size: 612 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-aerial-lift" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 5l16 -2m-8 1v10m-5.106 -6h10.306c2.45 3 2.45 9 -.2 12h-10.106c-2.544 -3 -2.544 -9 0 -12zm-1.894 6h14" />
</svg>

Before

Width:  |  Height:  |  Size: 413 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-affiliate-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.5 3a2.5 2.5 0 1 1 -.912 4.828l-4.556 4.555a5.475 5.475 0 0 1 .936 3.714l2.624 .787a2.5 2.5 0 1 1 -.575 1.916l-2.623 -.788a5.5 5.5 0 0 1 -10.39 -2.29l-.004 -.222l.004 -.221a5.5 5.5 0 0 1 2.984 -4.673l-.788 -2.624a2.498 2.498 0 0 1 -2.194 -2.304l-.006 -.178l.005 -.164a2.5 2.5 0 1 1 4.111 2.071l.787 2.625a5.475 5.475 0 0 1 3.714 .936l4.555 -4.556a2.487 2.487 0 0 1 -.167 -.748l-.005 -.164l.005 -.164a2.5 2.5 0 0 1 2.495 -2.336z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 782 B

View File

@ -1,11 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-affiliate" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M5.931 6.936l1.275 4.249m5.607 5.609l4.251 1.275" />
<path d="M11.683 12.317l5.759 -5.759" />
<path d="M5.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0" />
<path d="M18.5 5.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0" />
<path d="M18.5 18.5m-1.5 0a1.5 1.5 0 1 0 3 0a1.5 1.5 0 1 0 -3 0" />
<path d="M8.5 15.5m-4.5 0a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0 -9 0" />
</svg>

Before

Width:  |  Height:  |  Size: 675 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-air-balloon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M10 19m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" />
<path d="M12 16c3.314 0 6 -4.686 6 -8a6 6 0 1 0 -12 0c0 3.314 2.686 8 6 8z" />
<path d="M12 9m-2 0a2 7 0 1 0 4 0a2 7 0 1 0 -4 0" />
</svg>

Before

Width:  |  Height:  |  Size: 524 B

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-air-conditioning-disabled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M3 8m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" />
<path d="M7 16v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3" />
</svg>

Before

Width:  |  Height:  |  Size: 459 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-air-conditioning" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M8 16a3 3 0 0 1 -3 3" />
<path d="M16 16a3 3 0 0 0 3 3" />
<path d="M12 16v4" />
<path d="M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" />
<path d="M7 13v-3a1 1 0 0 1 1 -1h8a1 1 0 0 1 1 1v3" />
</svg>

Before

Width:  |  Height:  |  Size: 546 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 2.928a1 1 0 0 0 -1 1v3l.007 .117a1 1 0 0 0 .993 .883h2l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
<path d="M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z" stroke-width="0" fill="currentColor" />
<path d="M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 912 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-minus-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 5.928h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
<path d="M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z" stroke-width="0" fill="currentColor" />
<path d="M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 834 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-minus" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
<path d="M7 4l-2.75 2" />
<path d="M17 4l2.75 2" />
<path d="M10 13h4" />
</svg>

Before

Width:  |  Height:  |  Size: 432 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M7.587 7.566a7 7 0 1 0 9.833 9.864m1.35 -2.645a7 7 0 0 0 -8.536 -8.56" />
<path d="M12 12v1h1" />
<path d="M5.261 5.265l-1.011 .735" />
<path d="M17 4l2.75 2" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 497 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-plus-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-4 3.928a1 1 0 0 0 -1 1v1h-1l-.117 .007a1 1 0 0 0 .117 1.993h1v1l.007 .117a1 1 0 0 0 1.993 -.117v-1h1l.117 -.007a1 1 0 0 0 -.117 -1.993h-1v-1l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
<path d="M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z" stroke-width="0" fill="currentColor" />
<path d="M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 929 B

View File

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-plus" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
<path d="M7 4l-2.75 2" />
<path d="M17 4l2.75 2" />
<path d="M10 13h4" />
<path d="M12 11v4" />
</svg>

Before

Width:  |  Height:  |  Size: 455 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-snooze-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M16 6.072a8 8 0 1 1 -11.995 7.213l-.005 -.285l.005 -.285a8 8 0 0 1 11.995 -6.643zm-2 3.928h-4l-.117 .007a1 1 0 0 0 -.883 .993l.007 .117a1 1 0 0 0 .993 .883h1.584l-2.291 2.293l-.076 .084c-.514 .637 -.07 1.623 .783 1.623h4l.117 -.007a1 1 0 0 0 .883 -.993l-.007 -.117a1 1 0 0 0 -.993 -.883h-1.586l2.293 -2.293l.076 -.084c.514 -.637 .07 -1.623 -.783 -1.623z" stroke-width="0" fill="currentColor" />
<path d="M6.412 3.191a1 1 0 0 1 1.273 1.539l-.097 .08l-2.75 2a1 1 0 0 1 -1.273 -1.54l.097 -.08l2.75 -2z" stroke-width="0" fill="currentColor" />
<path d="M16.191 3.412a1 1 0 0 1 1.291 -.288l.106 .067l2.75 2a1 1 0 0 1 -1.07 1.685l-.106 -.067l-2.75 -2a1 1 0 0 1 -.22 -1.397z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm-snooze" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
<path d="M10 11h4l-4 4h4" />
<path d="M7 4l-2.75 2" />
<path d="M17 4l2.75 2" />
</svg>

Before

Width:  |  Height:  |  Size: 440 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alarm" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 13m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
<path d="M12 10l0 3l2 0" />
<path d="M7 4l-2.75 2" />
<path d="M17 4l2.75 2" />
</svg>

Before

Width:  |  Height:  |  Size: 432 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-album-off" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M8 4h10a2 2 0 0 1 2 2v10m-.581 3.41c-.362 .364 -.864 .59 -1.419 .59h-12a2 2 0 0 1 -2 -2v-12c0 -.552 .224 -1.052 .585 -1.413" />
<path d="M12 4v4m1.503 1.497l.497 -.497l2 2v-7" />
<path d="M3 3l18 18" />
</svg>

Before

Width:  |  Height:  |  Size: 510 B

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-album" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
<path d="M12 4v7l2 -2l2 2v-7" />
</svg>

Before

Width:  |  Height:  |  Size: 418 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-circle-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M17 3.34a10 10 0 1 1 -14.995 8.984l-.005 -.324l.005 -.324a10 10 0 0 1 14.995 -8.336zm-4.99 11.66l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 652 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-circle" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" />
<path d="M12 8l0 4" />
<path d="M12 16l.01 0" />
</svg>

Before

Width:  |  Height:  |  Size: 406 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-octagon-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M15.3 2c.5 0 .914 .16 1.274 .47l.133 .123l4.7 4.7c.348 .348 .546 .745 .586 1.224l.007 .183v6.6c0 .5 -.16 .914 -.47 1.274l-.123 .133l-4.7 4.7c-.348 .348 -.745 .546 -1.224 .586l-.183 .007h-6.6c-.5 0 -.914 -.16 -1.274 -.47l-.133 -.123l-4.7 -4.7c-.348 -.348 -.546 -.745 -.586 -1.224l-.007 -.183v-6.6c0 -.5 .16 -.914 .47 -1.274l.123 -.133l4.7 -4.7c.348 -.348 .745 -.546 1.224 -.586l.183 -.007h6.6zm-3.29 13l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -8a1 1 0 0 0 -.993 .883l-.007 .117v4l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 958 B

View File

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-octagon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M8.7 3h6.6c.3 0 .5 .1 .7 .3l4.7 4.7c.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-.2 .2 -.4 .3 -.7 .3h-6.6c-.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c.2 -.2 .4 -.3 .7 -.3z" />
<path d="M12 8l0 4" />
<path d="M12 16l.01 0" />
</svg>

Before

Width:  |  Height:  |  Size: 588 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-triangle-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M11.99 1.968c1.023 0 1.97 .521 2.512 1.359l.103 .172l7.1 12.25l.062 .126a3 3 0 0 1 -2.568 4.117l-.199 .008h-14l-.049 -.003l-.112 .002a3 3 0 0 1 -2.268 -1.226l-.109 -.16a3 3 0 0 1 -.32 -2.545l.072 -.194l.06 -.125l7.092 -12.233a3 3 0 0 1 2.625 -1.548zm.02 12.032l-.127 .007a1 1 0 0 0 0 1.986l.117 .007l.127 -.007a1 1 0 0 0 0 -1.986l-.117 -.007zm-.01 -6a1 1 0 0 0 -.993 .883l-.007 .117v2l.007 .117a1 1 0 0 0 1.986 0l.007 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 818 B

View File

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alert-triangle" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 9v2m0 4v.01" />
<path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" />
</svg>

Before

Width:  |  Height:  |  Size: 433 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alien-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12.004 2c4.942 0 8.288 2.503 8.85 6.444a12.884 12.884 0 0 1 -2.163 9.308a11.794 11.794 0 0 1 -3.51 3.356c-1.982 1.19 -4.376 1.19 -6.373 -.008a11.763 11.763 0 0 1 -3.489 -3.34a12.808 12.808 0 0 1 -2.171 -9.306c.564 -3.95 3.91 -6.454 8.856 -6.454zm1.913 14.6a1 1 0 0 0 -1.317 -.517l-.146 .055a1.5 1.5 0 0 1 -1.054 -.055l-.11 -.04a1 1 0 0 0 -.69 1.874a3.5 3.5 0 0 0 2.8 0a1 1 0 0 0 .517 -1.317zm-5.304 -6.39a1 1 0 0 0 -1.32 1.497l2 2l.094 .083a1 1 0 0 0 1.32 -1.497l-2 -2zm8.094 .083a1 1 0 0 0 -1.414 0l-2 2l-.083 .094a1 1 0 0 0 1.497 1.32l2 -2l.083 -.094a1 1 0 0 0 -.083 -1.32z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 924 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-alien" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M11 17a2.5 2.5 0 0 0 2 0" />
<path d="M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 2 8.592a10.777 10.777 0 0 0 3.199 3.064c1.666 1 3.664 1 5.33 0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 2 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z" />
<path d="M8 11l2 2" />
<path d="M16 11l-2 2" />
</svg>

Before

Width:  |  Height:  |  Size: 621 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-center-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3zm-9 11a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 719 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-center" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
<path d="M9 15v2" />
<path d="M12 11v6" />
<path d="M15 13v4" />
</svg>

Before

Width:  |  Height:  |  Size: 472 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-left-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3zm-11 11a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 718 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-left" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
<path d="M7 15v2" />
<path d="M10 11v6" />
<path d="M13 13v4" />
</svg>

Before

Width:  |  Height:  |  Size: 470 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-right-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1 -3 3h-12a3 3 0 0 1 -3 -3v-12a3 3 0 0 1 3 -3zm-7 11a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 -4a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 2a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 718 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-bottom-right" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
<path d="M11 15v2" />
<path d="M14 11v6" />
<path d="M17 13v4" />
</svg>

Before

Width:  |  Height:  |  Size: 472 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-bottom-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-9.222 13h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 758 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-bottom" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778z" />
<path d="M9 17h-2" />
<path d="M13 14h-6" />
<path d="M11 11h-4" />
</svg>

Before

Width:  |  Height:  |  Size: 565 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-middle-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-9.222 11h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 758 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-middle" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778z" />
<path d="M9 15h-2" />
<path d="M13 12h-6" />
<path d="M11 9h-4" />
</svg>

Before

Width:  |  Height:  |  Size: 564 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-top-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-9.222 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm4 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm-2 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 754 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-left-top" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M20 18.222v-12.444c0 -.982 -.796 -1.778 -1.778 -1.778h-12.444c-.982 0 -1.778 .796 -1.778 1.778v12.444c0 .982 .796 1.778 1.778 1.778h12.444c.982 0 1.778 -.796 1.778 -1.778z" />
<path d="M9 13h-2" />
<path d="M13 10h-6" />
<path d="M11 7h-4" />
</svg>

Before

Width:  |  Height:  |  Size: 561 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-right-bottom-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-1.222 13h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 758 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-right-bottom" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778z" />
<path d="M15 17h2" />
<path d="M11 14h6" />
<path d="M13 11h4" />
</svg>

Before

Width:  |  Height:  |  Size: 560 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-right-middle" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778z" />
<path d="M15 15h2" />
<path d="M11 12h6" />
<path d="M13 9h4" />
</svg>

Before

Width:  |  Height:  |  Size: 559 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-right-top-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-1.222 9h-2l-.117 .007a1 1 0 0 0 .117 1.993h2l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-6l-.117 .007a1 1 0 0 0 .117 1.993h6l.117 -.007a1 1 0 0 0 -.117 -1.993zm0 -3h-4l-.117 .007a1 1 0 0 0 .117 1.993h4l.117 -.007a1 1 0 0 0 -.117 -1.993z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 754 B

View File

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-right-top" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M4 18.222v-12.444c0 -.982 .796 -1.778 1.778 -1.778h12.444c.982 0 1.778 .796 1.778 1.778v12.444c0 .982 -.796 1.778 -1.778 1.778h-12.444a1.778 1.778 0 0 1 -1.778 -1.778z" />
<path d="M15 13h2" />
<path d="M11 10h6" />
<path d="M13 7h4" />
</svg>

Before

Width:  |  Height:  |  Size: 556 B

View File

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-align-box-top-center-filled" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M18.222 3a2.778 2.778 0 0 1 2.778 2.778v12.444a2.778 2.778 0 0 1 -2.778 2.778h-12.444a2.778 2.778 0 0 1 -2.778 -2.778v-12.444a2.778 2.778 0 0 1 2.778 -2.778zm-6.222 3a1 1 0 0 0 -1 1v6l.007 .117a1 1 0 0 0 1.993 -.117v-6l-.007 -.117a1 1 0 0 0 -.993 -.883zm3 0a1 1 0 0 0 -1 1v4l.007 .117a1 1 0 0 0 1.993 -.117v-4l-.007 -.117a1 1 0 0 0 -.993 -.883zm-6 0a1 1 0 0 0 -1 1v2l.007 .117a1 1 0 0 0 1.993 -.117v-2l-.007 -.117a1 1 0 0 0 -.993 -.883z" stroke-width="0" fill="currentColor" />
</svg>

Before

Width:  |  Height:  |  Size: 799 B

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