Compare commits
104 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f35f45c7b3 | ||
|
|
c9a418dfc4 | ||
|
|
70be608a58 | ||
|
|
db311ab023 | ||
|
|
cac81636fb | ||
|
|
4b225a2e80 | ||
|
|
8aac1c7ba6 | ||
|
|
d513a2b9df | ||
|
|
204a418643 | ||
|
|
36039d8bdc | ||
|
|
49bd49b843 | ||
|
|
4679ff791d | ||
|
|
bfab755958 | ||
|
|
63aa17a001 | ||
|
|
db6194369d | ||
|
|
29c952fdaf | ||
|
|
637e285c52 | ||
|
|
d6ee5d963c | ||
|
|
97d02ec6e5 | ||
|
|
f5be205fc9 | ||
|
|
f2e0da9bb1 | ||
|
|
2ca852fc7d | ||
|
|
a64215bb25 | ||
|
|
6d975609c4 | ||
|
|
13b9c1fadb | ||
|
|
dcf396f1e3 | ||
|
|
debf9b77c1 | ||
|
|
d30f3fe0c5 | ||
|
|
7d0f9996e6 | ||
|
|
c263c8baee | ||
|
|
c61207c0ac | ||
|
|
ec5327b870 | ||
|
|
61d3c6f452 | ||
|
|
d777895135 | ||
|
|
846a74ef50 | ||
|
|
3901a12d78 | ||
|
|
f9c49d9973 | ||
|
|
08b04f84b7 | ||
|
|
f3a97ed59e | ||
|
|
01663fb90b | ||
|
|
97aec42fb2 | ||
|
|
05eaf17ef9 | ||
|
|
e4d3a74434 | ||
|
|
de6b172e0a | ||
|
|
348628329d | ||
|
|
38d5093b1d | ||
|
|
3014d0aa32 | ||
|
|
a418010baa | ||
|
|
329d75a2c1 | ||
|
|
2482416aef | ||
|
|
11d7b48d70 | ||
|
|
5cbf9363cf | ||
|
|
92531a8a86 | ||
|
|
c67655d402 | ||
|
|
edc614bf43 | ||
|
|
ded24ab61f | ||
|
|
b626e91d7c | ||
|
|
a68ea8c33e | ||
|
|
4fd815a46c | ||
|
|
0e180515a3 | ||
|
|
5dbae5df45 | ||
|
|
bcad75bddd | ||
|
|
78a0640832 | ||
|
|
05ea32948c | ||
|
|
2e11931d2b | ||
|
|
689b3e1d83 | ||
|
|
8ec672bd86 | ||
|
|
c096bf2325 | ||
|
|
a796cb105d | ||
|
|
e4ac2cc4e9 | ||
|
|
2ee208652f | ||
|
|
d0826259d1 | ||
|
|
3acbfb428b | ||
|
|
250bd20199 | ||
|
|
221e213292 | ||
|
|
1e48aecbfe | ||
|
|
7a6dc5b2f7 | ||
|
|
7f6999fee7 | ||
|
|
08c1bc68da | ||
|
|
930260aab5 | ||
|
|
96473f7f7d | ||
|
|
f620c85e3b | ||
|
|
f4a8f3d0d8 | ||
|
|
36725eeed9 | ||
|
|
ee7ee203e6 | ||
|
|
7a26dddbcb | ||
|
|
408c683a13 | ||
|
|
546cf61a2e | ||
|
|
a7496aa454 | ||
|
|
93cfd3d27d | ||
|
|
76ce22ef14 | ||
|
|
873997b48e | ||
|
|
03276eee9d | ||
|
|
cf5aa0534b | ||
|
|
cccf89e7bb | ||
|
|
2d4676160b | ||
|
|
6346d80ee7 | ||
|
|
e983ccf974 | ||
|
|
f0fe196872 | ||
|
|
85eaa5fc50 | ||
|
|
6a7732077a | ||
|
|
c1c0f99d65 | ||
|
|
ee2bfaff0d | ||
|
|
9370449d7e |
2
.github/workflows/ci.yml
vendored
@@ -5,7 +5,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- icons/**
|
- icons/**/*.svg
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create-release:
|
create-release:
|
||||||
|
|||||||
57
.github/workflows/pull-request.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
name: Add Changed Icons comment
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
paths:
|
||||||
|
- 'icons/*.svg'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
add-changed-icons-comment:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: refs/pull/${{ github.event.pull_request.number }}/merge
|
||||||
|
- name: Get changed files
|
||||||
|
id: changed-files
|
||||||
|
uses: tj-actions/changed-files@v35
|
||||||
|
with:
|
||||||
|
files: icons/*.svg
|
||||||
|
- name: Generate comment
|
||||||
|
id: generate-comment
|
||||||
|
run: |
|
||||||
|
delimiter="$(openssl rand -hex 8)"
|
||||||
|
echo "body<<$delimiter" >> $GITHUB_OUTPUT
|
||||||
|
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
|
||||||
|
cat "$file" | # get file content
|
||||||
|
tr '\n' ' ' | # remove line breaks
|
||||||
|
sed -e 's/<svg[^>]*>/<svg>/g' | # remove attributes from svg element
|
||||||
|
base64 -w 0 | # encode svg
|
||||||
|
sed "s|.*|<img width=\"400\" title=\"$file\" alt=\"$file\" src=\"https://lucide.dev/api/gh-icon/$(basename ${file//\.svg/})/&.svg\"/> |"
|
||||||
|
done | tr '\n' ' ' >> $GITHUB_OUTPUT
|
||||||
|
echo >> $GITHUB_OUTPUT
|
||||||
|
echo "$delimiter" >> $GITHUB_OUTPUT
|
||||||
|
- name: Find Comment
|
||||||
|
uses: peter-evans/find-comment@v2
|
||||||
|
id: fc
|
||||||
|
with:
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
comment-author: 'github-actions[bot]'
|
||||||
|
body-includes: Added or changed icons
|
||||||
|
- name: Create or update comment
|
||||||
|
uses: peter-evans/create-or-update-comment@v2
|
||||||
|
with:
|
||||||
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
||||||
|
issue-number: ${{ github.event.pull_request.number }}
|
||||||
|
body: |
|
||||||
|
### Added or changed icons
|
||||||
|
<details>
|
||||||
|
<summary>Icon X-rays</summary>
|
||||||
|
${{ steps.generate-comment.outputs.body }}
|
||||||
|
</details>
|
||||||
|
edit-mode: replace
|
||||||
15
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "pwa-chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch Chrome against localhost",
|
||||||
|
"url": "http://localhost:8080",
|
||||||
|
"webRoot": "${workspaceFolder}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
7
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"cSpell.words": [
|
||||||
|
"devs",
|
||||||
|
"preact",
|
||||||
|
"Preact"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -59,13 +59,13 @@ If you are a designer who wants to contribute to Lucide but you don't know what
|
|||||||
## Development
|
## Development
|
||||||
|
|
||||||
You will need minimum version of [Nodejs 16.4+](https://nodejs.org)
|
You will need minimum version of [Nodejs 16.4+](https://nodejs.org)
|
||||||
For packagemanagement you will need [yarn v1](https://yarnpkg.com/getting-started/install).
|
For package management you will need [PNPM](https://pnpm.io/installation).
|
||||||
For flutter package development, you need [Flutter 1.17+](https://docs.flutter.dev/get-started/install).
|
For flutter package development, you need [Flutter 1.17+](https://docs.flutter.dev/get-started/install).
|
||||||
|
|
||||||
After cloning the project you need to run:
|
After cloning the project you need to run:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
yarn # Install dependencies, including the workspace packages
|
pnpm install # Install dependencies, including the workspace packages
|
||||||
```
|
```
|
||||||
|
|
||||||
### Packages -> PNPM Workspaces
|
### Packages -> PNPM Workspaces
|
||||||
@@ -73,6 +73,7 @@ yarn # Install dependencies, including the workspace packages
|
|||||||
To distribute different packages we use PNPM workspaces. Before you start make sure you are familiar with this concept. The concept of working in workspaces is created by Yarn, they have a well written introduction: [yarn workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces).
|
To distribute different packages we use PNPM workspaces. Before you start make sure you are familiar with this concept. The concept of working in workspaces is created by Yarn, they have a well written introduction: [yarn workspaces](https://classic.yarnpkg.com/lang/en/docs/workspaces).
|
||||||
|
|
||||||
The configured directory for workspaces is the [packages](./packages) directory, located in the root directory. There you will find all the current packages from lucide.
|
The configured directory for workspaces is the [packages](./packages) directory, located in the root directory. There you will find all the current packages from lucide.
|
||||||
|
There are more workspaces defined, see [`pnpm-workspace.yaml`](./pnpm-workspace.yaml).
|
||||||
|
|
||||||
> Note: One package is not managed by pnpm: **lucide-flutter**, this package is written in Dart and used pub for publishing.
|
> Note: One package is not managed by pnpm: **lucide-flutter**, this package is written in Dart and used pub for publishing.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "../category.schema.json",
|
|
||||||
"title": "Coding",
|
|
||||||
"icon": "code-2"
|
|
||||||
}
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../category.schema.json",
|
"$schema": "../category.schema.json",
|
||||||
"title": "Development",
|
"title": "Coding & development",
|
||||||
"icon": "git-pull-request"
|
"icon": "code-2"
|
||||||
}
|
}
|
||||||
@@ -55,6 +55,8 @@ Here are rules that should be followed to keep quality and consistency when maki
|
|||||||
|
|
||||||
Before an icon is added to the library, we like to have readable and optimized svg code.
|
Before an icon is added to the library, we like to have readable and optimized svg code.
|
||||||
|
|
||||||
|
Never use [`<use>`](https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use). While it may sometimes seem like a good way to optimize file size, there's no way to ensure that the referenced element IDs will be unique once the SVGs are embedded in HTML documents.
|
||||||
|
|
||||||
### Global Attributes
|
### Global Attributes
|
||||||
|
|
||||||
For each icon these attributes are applied, corresponding to the above rules.
|
For each icon these attributes are applied, corresponding to the above rules.
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="16" cy="4" r="1" />
|
<circle cx="16" cy="4" r="1" />
|
||||||
<path d="m18 19 1-7-5.87.94" />
|
<path d="m18 19 1-7-6 1" />
|
||||||
<path d="m5 8 3-3 5.5 3-2.21 3.1" />
|
<path d="m5 8 3-3 5.5 3-2.36 3.5" />
|
||||||
<path d="M4.24 14.48c-.19.58-.27 1.2-.23 1.84a5 5 0 0 0 5.31 4.67c.65-.04 1.25-.2 1.8-.46" />
|
<path d="M4.24 14.5a5 5 0 0 0 6.88 6" />
|
||||||
<path d="M13.76 17.52c.19-.58.27-1.2.23-1.84a5 5 0 0 0-5.31-4.67c-.65.04-1.25.2-1.8.46" />
|
<path d="M13.76 17.5a5 5 0 0 0-6.88-6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 504 B After Width: | Height: | Size: 398 B |
@@ -1,7 +1,11 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../icon.schema.json",
|
"$schema": "../icon.schema.json",
|
||||||
"tags": [
|
"tags": [
|
||||||
"done"
|
"done",
|
||||||
|
"todo",
|
||||||
|
"tick",
|
||||||
|
"complete",
|
||||||
|
"task"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"devices",
|
"devices",
|
||||||
|
|||||||
@@ -9,10 +9,10 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z" />
|
<circle cx="12" cy="13" r="8" />
|
||||||
<path d="M5 3 2 6" />
|
<path d="M5 3 2 6" />
|
||||||
<path d="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="M6.38 18.7 4 21" />
|
||||||
<path d="m18 19 2 2" />
|
<path d="M17.64 18.67 20 21" />
|
||||||
<path d="m9 13 2 2 4-4" />
|
<path d="m9 13 2 2 4-4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 386 B |
@@ -10,9 +10,9 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M6.87 6.87a8 8 0 1 0 11.26 11.26" />
|
<path d="M6.87 6.87a8 8 0 1 0 11.26 11.26" />
|
||||||
<path d="M19.9 14.25A7.44 7.44 0 0 0 20 13a8 8 0 0 0-8-8 7.44 7.44 0 0 0-1.25.1" />
|
<path d="M19.9 14.25a8 8 0 0 0-9.15-9.15" />
|
||||||
<path d="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="M6.26 18.67 4 21" />
|
||||||
<path d="m2 2 20 20" />
|
<path d="m2 2 20 20" />
|
||||||
<path d="M4 4 2 6" />
|
<path d="M4 4 2 6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 410 B |
@@ -13,6 +13,6 @@
|
|||||||
<path d="M12 9v4l2 2" />
|
<path d="M12 9v4l2 2" />
|
||||||
<path d="M5 3 2 6" />
|
<path d="M5 3 2 6" />
|
||||||
<path d="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="M6.38 18.7 4 21" />
|
||||||
<path d="m18 19 2 2" />
|
<path d="M17.64 18.67 20 21" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 370 B After Width: | Height: | Size: 384 B |
@@ -9,10 +9,10 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z" />
|
<circle cx="12" cy="13" r="8" />
|
||||||
<path d="M5 3 2 6" />
|
<path d="M5 3 2 6" />
|
||||||
<path d="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="M6.38 18.7 4 21" />
|
||||||
<path d="m18 19 2 2" />
|
<path d="M17.64 18.67 20 21" />
|
||||||
<path d="M9 13h6" />
|
<path d="M9 13h6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 380 B |
@@ -9,11 +9,11 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M12 21a8 8 0 1 0 0-16 8 8 0 0 0 0 16z" />
|
<circle cx="12" cy="13" r="8" />
|
||||||
<path d="M5 3 2 6" />
|
<path d="M5 3 2 6" />
|
||||||
<path d="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="M6.38 18.7 4 21" />
|
||||||
<path d="m18 19 2 2" />
|
<path d="M17.64 18.67 20 21" />
|
||||||
<path d="M12 10v6" />
|
<path d="M12 10v6" />
|
||||||
<path d="M9 13h6" />
|
<path d="M9 13h6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 408 B After Width: | Height: | Size: 404 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
|
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
||||||
<polyline points="11 3 11 11 14 8 17 11 17 3" />
|
<polyline points="11 3 11 11 14 8 17 11 17 3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 319 B After Width: | Height: | Size: 319 B |
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<line x1="12" y1="8" x2="12" y2="12" />
|
<line x1="12" x2="12" y1="8" y2="12" />
|
||||||
<line x1="12" y1="16" x2="12.01" y2="16" />
|
<line x1="12" x2="12.01" y1="16" y2="16" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" />
|
<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2" />
|
||||||
<line x1="12" y1="8" x2="12" y2="12" />
|
<line x1="12" x2="12" y1="8" y2="12" />
|
||||||
<line x1="12" y1="16" x2="12.01" y2="16" />
|
<line x1="12" x2="12.01" y1="16" y2="16" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" />
|
<path d="m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" />
|
||||||
<line x1="12" y1="9" x2="12" y2="13" />
|
<line x1="12" x2="12" y1="9" y2="13" />
|
||||||
<line x1="12" y1="17" x2="12.01" y2="17" />
|
<line x1="12" x2="12.01" y1="17" y2="17" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 385 B After Width: | Height: | Size: 385 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="21" y1="6" x2="3" y2="6" />
|
<line x1="21" x2="3" y1="6" y2="6" />
|
||||||
<line x1="17" y1="12" x2="7" y2="12" />
|
<line x1="17" x2="7" y1="12" y2="12" />
|
||||||
<line x1="19" y1="18" x2="5" y2="18" />
|
<line x1="19" x2="5" y1="18" y2="18" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="4" y="2" width="6" height="16" rx="2" />
|
<rect width="6" height="16" x="4" y="2" rx="2" />
|
||||||
<rect x="14" y="9" width="6" height="9" rx="2" />
|
<rect width="6" height="9" x="14" y="9" rx="2" />
|
||||||
<path d="M22 22H2" />
|
<path d="M22 22H2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="4" width="16" height="6" rx="2" />
|
<rect width="16" height="6" x="2" y="4" rx="2" />
|
||||||
<rect x="9" y="14" width="9" height="6" rx="2" />
|
<rect width="9" height="6" x="9" y="14" rx="2" />
|
||||||
<path d="M22 22V2" />
|
<path d="M22 22V2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="4" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="4" y="5" rx="2" />
|
||||||
<rect x="14" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="14" y="7" rx="2" />
|
||||||
<path d="M17 22v-5" />
|
<path d="M17 22v-5" />
|
||||||
<path d="M17 7V2" />
|
<path d="M17 7V2" />
|
||||||
<path d="M7 22v-3" />
|
<path d="M7 22v-3" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="4" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="4" y="5" rx="2" />
|
||||||
<rect x="14" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="14" y="7" rx="2" />
|
||||||
<path d="M10 2v20" />
|
<path d="M10 2v20" />
|
||||||
<path d="M20 2v20" />
|
<path d="M20 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 361 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="4" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="4" y="5" rx="2" />
|
||||||
<rect x="14" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="14" y="7" rx="2" />
|
||||||
<path d="M4 2v20" />
|
<path d="M4 2v20" />
|
||||||
<path d="M14 2v20" />
|
<path d="M14 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="2" y="5" rx="2" />
|
||||||
<rect x="16" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="16" y="7" rx="2" />
|
||||||
<path d="M12 2v20" />
|
<path d="M12 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="2" y="5" rx="2" />
|
||||||
<rect x="12" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="12" y="7" rx="2" />
|
||||||
<path d="M22 2v20" />
|
<path d="M22 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="6" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="6" y="5" rx="2" />
|
||||||
<rect x="16" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="16" y="7" rx="2" />
|
||||||
<path d="M2 2v20" />
|
<path d="M2 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="9" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="9" y="7" rx="2" />
|
||||||
<path d="M4 22V2" />
|
<path d="M4 22V2" />
|
||||||
<path d="M20 22V2" />
|
<path d="M20 22V2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="3" y="5" width="6" height="14" rx="2" />
|
<rect width="6" height="14" x="3" y="5" rx="2" />
|
||||||
<rect x="15" y="7" width="6" height="10" rx="2" />
|
<rect width="6" height="10" x="15" y="7" rx="2" />
|
||||||
<path d="M3 2v20" />
|
<path d="M3 2v20" />
|
||||||
<path d="M21 2v20" />
|
<path d="M21 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="3" y1="6" x2="21" y2="6" />
|
<line x1="3" x2="21" y1="6" y2="6" />
|
||||||
<line x1="3" y1="12" x2="21" y2="12" />
|
<line x1="3" x2="21" y1="12" y2="12" />
|
||||||
<line x1="3" y1="18" x2="21" y2="18" />
|
<line x1="3" x2="21" y1="18" y2="18" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="21" y1="6" x2="3" y2="6" />
|
<line x1="21" x2="3" y1="6" y2="6" />
|
||||||
<line x1="15" y1="12" x2="3" y2="12" />
|
<line x1="15" x2="3" y1="12" y2="12" />
|
||||||
<line x1="17" y1="18" x2="3" y2="18" />
|
<line x1="17" x2="3" y1="18" y2="18" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="21" y1="6" x2="3" y2="6" />
|
<line x1="21" x2="3" y1="6" y2="6" />
|
||||||
<line x1="21" y1="12" x2="9" y2="12" />
|
<line x1="21" x2="9" y1="12" y2="12" />
|
||||||
<line x1="21" y1="18" x2="7" y2="18" />
|
<line x1="21" x2="7" y1="18" y2="18" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 332 B After Width: | Height: | Size: 332 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="4" y="6" width="6" height="16" rx="2" />
|
<rect width="6" height="16" x="4" y="6" rx="2" />
|
||||||
<rect x="14" y="6" width="6" height="9" rx="2" />
|
<rect width="6" height="9" x="14" y="6" rx="2" />
|
||||||
<path d="M22 2H2" />
|
<path d="M22 2H2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 335 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="6" y="14" width="9" height="6" rx="2" />
|
<rect width="9" height="6" x="6" y="14" rx="2" />
|
||||||
<rect x="6" y="4" width="16" height="6" rx="2" />
|
<rect width="16" height="6" x="6" y="4" rx="2" />
|
||||||
<path d="M2 2v20" />
|
<path d="M2 2v20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 335 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="14" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="14" rx="2" />
|
||||||
<rect x="7" y="4" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="4" rx="2" />
|
||||||
<path d="M22 7h-5" />
|
<path d="M22 7h-5" />
|
||||||
<path d="M7 7H1" />
|
<path d="M7 7H1" />
|
||||||
<path d="M22 17h-3" />
|
<path d="M22 17h-3" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="14" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="14" rx="2" />
|
||||||
<rect x="7" y="4" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="4" rx="2" />
|
||||||
<path d="M2 20h20" />
|
<path d="M2 20h20" />
|
||||||
<path d="M2 10h20" />
|
<path d="M2 10h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 361 B After Width: | Height: | Size: 361 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="14" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="14" rx="2" />
|
||||||
<rect x="7" y="4" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="4" rx="2" />
|
||||||
<path d="M2 14h20" />
|
<path d="M2 14h20" />
|
||||||
<path d="M2 4h20" />
|
<path d="M2 4h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="16" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="16" rx="2" />
|
||||||
<rect x="7" y="2" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="2" rx="2" />
|
||||||
<path d="M2 12h20" />
|
<path d="M2 12h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="12" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="12" rx="2" />
|
||||||
<rect x="7" y="2" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="2" rx="2" />
|
||||||
<path d="M2 22h20" />
|
<path d="M2 22h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 337 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="16" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="16" rx="2" />
|
||||||
<rect x="7" y="6" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="6" rx="2" />
|
||||||
<path d="M2 2h20" />
|
<path d="M2 2h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 336 B After Width: | Height: | Size: 336 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="7" y="9" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="9" rx="2" />
|
||||||
<path d="M22 20H2" />
|
<path d="M22 20H2" />
|
||||||
<path d="M22 4H2" />
|
<path d="M22 4H2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 307 B After Width: | Height: | Size: 307 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="5" y="15" width="14" height="6" rx="2" />
|
<rect width="14" height="6" x="5" y="15" rx="2" />
|
||||||
<rect x="7" y="3" width="10" height="6" rx="2" />
|
<rect width="10" height="6" x="7" y="3" rx="2" />
|
||||||
<path d="M2 21h20" />
|
<path d="M2 21h20" />
|
||||||
<path d="M2 3h20" />
|
<path d="M2 3h20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 360 B After Width: | Height: | Size: 360 B |
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="5" r="3" />
|
<circle cx="12" cy="5" r="3" />
|
||||||
<line x1="12" y1="22" x2="12" y2="8" />
|
<line x1="12" x2="12" y1="22" y2="8" />
|
||||||
<path d="M5 12H2a10 10 0 0 0 20 0h-3" />
|
<path d="M5 12H2a10 10 0 0 0 20 0h-3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 327 B |
@@ -10,10 +10,10 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<line x1="14.31" y1="8" x2="20.05" y2="17.94" />
|
<line x1="14.31" x2="20.05" y1="8" y2="17.94" />
|
||||||
<line x1="9.69" y1="8" x2="21.17" y2="8" />
|
<line x1="9.69" x2="21.17" y1="8" y2="8" />
|
||||||
<line x1="7.38" y1="12" x2="13.12" y2="2.06" />
|
<line x1="7.38" x2="13.12" y1="12" y2="2.06" />
|
||||||
<line x1="9.69" y1="16" x2="3.95" y2="6.06" />
|
<line x1="9.69" x2="3.95" y1="16" y2="6.06" />
|
||||||
<line x1="14.31" y1="16" x2="2.83" y2="16" />
|
<line x1="14.31" x2="2.83" y1="16" y2="16" />
|
||||||
<line x1="16.62" y1="12" x2="10.88" y2="21.94" />
|
<line x1="16.62" x2="10.88" y1="12" y2="21.94" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 540 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="4" width="20" height="5" rx="2" />
|
<rect width="20" height="5" x="2" y="4" rx="2" />
|
||||||
<path d="M12 13v7" />
|
<path d="M12 13v7" />
|
||||||
<path d="m9 16 3-3 3 3" />
|
<path d="m9 16 3-3 3 3" />
|
||||||
<path d="M4 9v9a2 2 0 0 0 2 2h2" />
|
<path d="M4 9v9a2 2 0 0 0 2 2h2" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 391 B After Width: | Height: | Size: 391 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="4" width="20" height="5" rx="2" />
|
<rect width="20" height="5" x="2" y="4" rx="2" />
|
||||||
<path d="M4 9v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9" />
|
<path d="M4 9v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9" />
|
||||||
<path d="M10 13h4" />
|
<path d="M10 13h4" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 339 B |
@@ -11,5 +11,5 @@
|
|||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="8 12 12 16 16 12" />
|
<polyline points="8 12 12 16 16 12" />
|
||||||
<line x1="12" y1="8" x2="12" y2="16" />
|
<line x1="12" x2="12" y1="8" y2="16" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 327 B |
9
icons/arrow-down-left-from-circle.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"direction"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-down-left-from-circle.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<polyline points="8,22 2,22 2,16 " />
|
||||||
|
<line x1="2" y1="22" x2="12" y2="12" />
|
||||||
|
<path d="M2,12C2,6.5,6.5,2,12,2s10,4.5,10,10s-4.5,10-10,10" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 355 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="17" y1="7" x2="7" y2="17" />
|
<line x1="17" x2="7" y1="7" y2="17" />
|
||||||
<polyline points="17 17 7 17 7 7" />
|
<polyline points="17 17 7 17 7 7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 288 B After Width: | Height: | Size: 288 B |
9
icons/arrow-down-right-from-circle.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"direction"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-down-right-from-circle.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<polyline points="22,16 22,22 16,22 " />
|
||||||
|
<line x1="22" y1="22" x2="12" y2="12" />
|
||||||
|
<path d="M12,22C6.5,22,2,17.5,2,12S6.5,2,12,2s10,4.5,10,10" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 359 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="7" y1="7" x2="17" y2="17" />
|
<line x1="7" x2="17" y1="7" y2="17" />
|
||||||
<polyline points="17 7 17 17 7 17" />
|
<polyline points="17 7 17 17 7 17" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" y1="5" x2="12" y2="19" />
|
<line x1="12" x2="12" y1="5" y2="19" />
|
||||||
<polyline points="19 12 12 19 5 12" />
|
<polyline points="19 12 12 19 5 12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 291 B |
@@ -11,5 +11,5 @@
|
|||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="12 8 8 12 12 16" />
|
<polyline points="12 8 8 12 12 16" />
|
||||||
<line x1="16" y1="12" x2="8" y2="12" />
|
<line x1="16" x2="8" y1="12" y2="12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 326 B |
@@ -10,7 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polyline points="17 11 21 7 17 3" />
|
<polyline points="17 11 21 7 17 3" />
|
||||||
<line x1="21" y1="7" x2="9" y2="7" />
|
<line x1="21" x2="9" y1="7" y2="7" />
|
||||||
<polyline points="7 21 3 17 7 13" />
|
<polyline points="7 21 3 17 7 13" />
|
||||||
<line x1="15" y1="17" x2="3" y2="17" />
|
<line x1="15" x2="3" y1="17" y2="17" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 369 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="19" y1="12" x2="5" y2="12" />
|
<line x1="19" x2="5" y1="12" y2="12" />
|
||||||
<polyline points="12 19 5 12 12 5" />
|
<polyline points="12 19 5 12 12 5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 290 B |
@@ -11,5 +11,5 @@
|
|||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="12 16 16 12 12 8" />
|
<polyline points="12 16 16 12 12 8" />
|
||||||
<line x1="8" y1="12" x2="16" y2="12" />
|
<line x1="8" x2="16" y1="12" y2="12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 327 B After Width: | Height: | Size: 327 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="5" y1="12" x2="19" y2="12" />
|
<line x1="5" x2="19" y1="12" y2="12" />
|
||||||
<polyline points="12 5 19 12 12 19" />
|
<polyline points="12 5 19 12 12 19" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 291 B |
@@ -11,5 +11,5 @@
|
|||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<polyline points="16 12 12 8 8 12" />
|
<polyline points="16 12 12 8 8 12" />
|
||||||
<line x1="12" y1="16" x2="12" y2="8" />
|
<line x1="12" x2="12" y1="16" y2="8" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 326 B After Width: | Height: | Size: 326 B |
@@ -10,7 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polyline points="11 17 7 21 3 17" />
|
<polyline points="11 17 7 21 3 17" />
|
||||||
<line x1="7" y1="21" x2="7" y2="9" />
|
<line x1="7" x2="7" y1="21" y2="9" />
|
||||||
<polyline points="21 7 17 3 13 7" />
|
<polyline points="21 7 17 3 13 7" />
|
||||||
<line x1="17" y1="15" x2="17" y2="3" />
|
<line x1="17" x2="17" y1="15" y2="3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 369 B |
14
icons/arrow-up-left-from-circle.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"direction",
|
||||||
|
"keyboard",
|
||||||
|
"key",
|
||||||
|
"escape",
|
||||||
|
"button"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows",
|
||||||
|
"development"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-up-left-from-circle.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<path d="M12,2c5.5,0,10,4.5,10,10s-4.5,10-10,10S2,17.5,2,12" />
|
||||||
|
<polyline points="2,8 2,2 8,2 " />
|
||||||
|
<line x1="2" y1="2" x2="12" y2="12" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 352 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="17" y1="17" x2="7" y2="7" />
|
<line x1="17" x2="7" y1="17" y2="7" />
|
||||||
<polyline points="7 17 7 7 17 7" />
|
<polyline points="7 17 7 7 17 7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 287 B |
9
icons/arrow-up-right-from-circle.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"direction"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"arrows"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/arrow-up-right-from-circle.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<polyline points="16,2 22,2 22,8 " />
|
||||||
|
<line x1="22" y1="2" x2="12" y2="12" />
|
||||||
|
<path d="M22,12c0,5.5-4.5,10-10,10S2,17.5,2,12S6.5,2,12,2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 354 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="7" y1="17" x2="17" y2="7" />
|
<line x1="7" x2="17" y1="17" y2="7" />
|
||||||
<polyline points="7 7 17 7 17 17" />
|
<polyline points="7 7 17 7 17 17" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 288 B After Width: | Height: | Size: 288 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" y1="19" x2="12" y2="5" />
|
<line x1="12" x2="12" y1="19" y2="5" />
|
||||||
<polyline points="5 12 12 5 19 12" />
|
<polyline points="5 12 12 5 19 12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 290 B |
14
icons/atom.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"atomic",
|
||||||
|
"nuclear",
|
||||||
|
"physics",
|
||||||
|
"particle",
|
||||||
|
"element",
|
||||||
|
"molecule"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"science"
|
||||||
|
]
|
||||||
|
}
|
||||||
15
icons/atom.svg
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<circle cx="12" cy="12" r="1" />
|
||||||
|
<path d="M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z" />
|
||||||
|
<path d="M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 523 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m14 12-8.501 8.501a2.12 2.12 0 0 1-2.998 0h-.002a2.12 2.12 0 0 1 0-2.998L11 9.002" />
|
<path d="m14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9" />
|
||||||
<path d="m9 7 4-4 6 6h3l-.13.648a7.648 7.648 0 0 1-5.081 5.756L15 16v-3z" />
|
<path d="M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 314 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M9 12h0.01" />
|
<path d="M9 12h.01" />
|
||||||
<path d="M15 12h0.01" />
|
<path d="M15 12h.01" />
|
||||||
<path d="M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5" />
|
<path d="M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5" />
|
||||||
<path d="M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1" />
|
<path d="M19 6.3a9 9 0 0 1 1.8 3.9 2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 469 B After Width: | Height: | Size: 467 B |
@@ -11,7 +11,7 @@
|
|||||||
>
|
>
|
||||||
<path d="M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2" />
|
<path d="M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2" />
|
||||||
<path d="M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10" />
|
<path d="M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10" />
|
||||||
<rect x="8" y="6" width="13" height="8" rx="1" />
|
<rect width="13" height="8" x="8" y="6" rx="1" />
|
||||||
<circle cx="18" cy="20" r="2" />
|
<circle cx="18" cy="20" r="2" />
|
||||||
<circle cx="9" cy="20" r="2" />
|
<circle cx="9" cy="20" r="2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 441 B After Width: | Height: | Size: 441 B |
@@ -2,7 +2,6 @@
|
|||||||
"$schema": "../icon.schema.json",
|
"$schema": "../icon.schema.json",
|
||||||
"tags": [
|
"tags": [
|
||||||
"cancel",
|
"cancel",
|
||||||
"ban",
|
|
||||||
"no",
|
"no",
|
||||||
"stop",
|
"stop",
|
||||||
"forbidden",
|
"forbidden",
|
||||||
@@ -11,5 +10,8 @@
|
|||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"account"
|
"account"
|
||||||
|
],
|
||||||
|
"aliases": [
|
||||||
|
"slash"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,5 +10,5 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<line x1="4.93" y1="4.93" x2="19.07" y2="19.07" />
|
<line x1="4.93" x2="19.07" y1="4.93" y2="19.07" />
|
||||||
</svg>
|
</svg>
|
||||||
|
Before Width: | Height: | Size: 297 B After Width: | Height: | Size: 297 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="6" width="20" height="12" rx="2" />
|
<rect width="20" height="12" x="2" y="6" rx="2" />
|
||||||
<circle cx="12" cy="12" r="2" />
|
<circle cx="12" cy="12" r="2" />
|
||||||
<path d="M6 12h.01M18 12h.01" />
|
<path d="M6 12h.01M18 12h.01" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 331 B After Width: | Height: | Size: 331 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="18" y1="20" x2="18" y2="10" />
|
<line x1="18" x2="18" y1="20" y2="10" />
|
||||||
<line x1="12" y1="20" x2="12" y2="4" />
|
<line x1="12" x2="12" y1="20" y2="4" />
|
||||||
<line x1="6" y1="20" x2="6" y2="14" />
|
<line x1="6" x2="6" y1="20" y2="14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="12" y1="20" x2="12" y2="10" />
|
<line x1="12" x2="12" y1="20" y2="10" />
|
||||||
<line x1="18" y1="20" x2="18" y2="4" />
|
<line x1="18" x2="18" y1="20" y2="4" />
|
||||||
<line x1="6" y1="20" x2="6" y2="16" />
|
<line x1="6" x2="6" y1="20" y2="16" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
@@ -10,8 +10,8 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5" />
|
<path d="M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5" />
|
||||||
<line x1="10" y1="5" x2="8" y2="7" />
|
<line x1="10" x2="8" y1="5" y2="7" />
|
||||||
<line x1="2" y1="12" x2="22" y2="12" />
|
<line x1="2" x2="22" y1="12" y2="12" />
|
||||||
<line x1="7" y1="19" x2="7" y2="21" />
|
<line x1="7" x2="7" y1="19" y2="21" />
|
||||||
<line x1="17" y1="19" x2="17" y2="21" />
|
<line x1="17" x2="17" y1="19" y2="21" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 480 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
<line x1="6" x2="6" y1="11" y2="13" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
<line x1="10" x2="10" y1="11" y2="13" />
|
<line x1="10" x2="10" y1="11" y2="13" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 438 B After Width: | Height: | Size: 438 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
<line x1="6" x2="6" y1="11" y2="13" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 352 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
<line x1="6" x2="6" y1="11" y2="13" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
<line x1="10" x2="10" y1="11" y2="13" />
|
<line x1="10" x2="10" y1="11" y2="13" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
@@ -10,7 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M14 7h2a2 2 0 0 1 2 2v6c0 1-1 2-2 2h-2" />
|
<path d="M14 7h2a2 2 0 0 1 2 2v6c0 1-1 2-2 2h-2" />
|
||||||
<path d="M6 7h-2a2 2 0 0 0-2 2v6c0 1 1 2 2 2h2" />
|
<path d="M6 7H4a2 2 0 0 0-2 2v6c0 1 1 2 2 2h2" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
<line x1="10" x2="10" y1="7" y2="13" />
|
<line x1="10" x2="10" y1="7" y2="13" />
|
||||||
<line x1="10" x2="10" y1="17" y2="17.01" />
|
<line x1="10" x2="10" y1="17" y2="17.01" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 445 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect width="16" height="10" x="2" y="7" rx="2" ry="2" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 311 B After Width: | Height: | Size: 311 B |
@@ -1,7 +1,11 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../icon.schema.json",
|
"$schema": "../icon.schema.json",
|
||||||
"tags": [
|
"tags": [
|
||||||
"cup"
|
"cup",
|
||||||
|
"lab",
|
||||||
|
"chemistry",
|
||||||
|
"experiment",
|
||||||
|
"test"
|
||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"science",
|
"science",
|
||||||
|
|||||||
@@ -12,5 +12,5 @@
|
|||||||
<path d="M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1" />
|
<path d="M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1" />
|
||||||
<path d="M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66" />
|
<path d="M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66" />
|
||||||
<path d="M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04" />
|
<path d="M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04" />
|
||||||
<line x1="2" y1="2" x2="22" y2="22" />
|
<line x1="2" x2="22" y1="2" y2="22" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 502 B After Width: | Height: | Size: 502 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="5.5" cy="17.5" r="3.5" />
|
|
||||||
<circle cx="18.5" cy="17.5" r="3.5" />
|
<circle cx="18.5" cy="17.5" r="3.5" />
|
||||||
<path d="M15 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-3 11.5V14l-3-3 4-3 2 3h2" />
|
<circle cx="5.5" cy="17.5" r="3.5" />
|
||||||
|
<circle cx="15" cy="5" r="1" />
|
||||||
|
<path d="M12 17.5V14l-3-3 4-3 2 3h2" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
@@ -9,6 +9,6 @@
|
|||||||
],
|
],
|
||||||
"categories": [
|
"categories": [
|
||||||
"text",
|
"text",
|
||||||
"coding"
|
"development"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -13,6 +13,6 @@
|
|||||||
<path d="M14 10h4" />
|
<path d="M14 10h4" />
|
||||||
<path d="M6 14h2v6" />
|
<path d="M6 14h2v6" />
|
||||||
<path d="M14 4h2v6" />
|
<path d="M14 4h2v6" />
|
||||||
<rect x="6" y="4" width="4" height="6" />
|
<rect width="4" height="6" x="6" y="4" />
|
||||||
<rect x="14" y="14" width="4" height="6" />
|
<rect width="4" height="6" x="14" y="14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
@@ -8,7 +8,7 @@
|
|||||||
"categories": [
|
"categories": [
|
||||||
"brands",
|
"brands",
|
||||||
"currency",
|
"currency",
|
||||||
"coding",
|
"development",
|
||||||
"money"
|
"money"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m7 7 10 10-5 5V2l5 5L7 17" />
|
<path d="m7 7 10 10-5 5V2l5 5L7 17" />
|
||||||
<line x1="18" y1="12" y2="12" x2="21" />
|
<line x1="18" x2="21" y1="12" y2="12" />
|
||||||
<line x1="3" y1="12" y2="12" x2="6" />
|
<line x1="3" x2="6" y1="12" y2="12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 333 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" />
|
<path d="M14 12a4 4 0 0 0 0-8H6v8" />
|
||||||
<path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z" />
|
<path d="M15 20a4 4 0 0 0 0-8H6v8Z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 315 B After Width: | Height: | Size: 289 B |
@@ -9,5 +9,5 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M18.6 9.82c-.52-.21-1.15-.25-1.54.15l-7.07 7.06c-.39.39-.36 1.03-.15 1.54.12.3.16.6.16.93a2.5 2.5 0 0 1-5 0c0-.26-.24-.5-.5-.5a2.5 2.5 0 1 1 .96-4.82c.5.21 1.14.25 1.53-.15l7.07-7.06c.39-.39.36-1.03.15-1.54-.12-.3-.21-.6-.21-.93a2.5 2.5 0 0 1 5 0c.01.26.24.49.5.5a2.5 2.5 0 1 1-.9 4.82Z" />
|
<path d="M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 510 B After Width: | Height: | Size: 416 B |
17
icons/book-copy.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"read",
|
||||||
|
"dictionary",
|
||||||
|
"booklet",
|
||||||
|
"library",
|
||||||
|
"code",
|
||||||
|
"version control",
|
||||||
|
"git",
|
||||||
|
"repository",
|
||||||
|
"clone"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development"
|
||||||
|
]
|
||||||
|
}
|
||||||
16
icons/book-copy.svg
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<path d="M2,16V4c0-1.1,0.9-2,2-2h11" />
|
||||||
|
<path d="M5,14H4c-1.1,0-2,0.9-2,2s0.9,2,2,2h1" />
|
||||||
|
<path d="M22,18H11c-1.1,0-2,0.9-2,2l0,0" />
|
||||||
|
<path d="M11,6h11v16H11c-1.1,0-2-0.9-2-2V8C9,6.9,9.9,6,11,6z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 415 B |
13
icons/book-down.json
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"code",
|
||||||
|
"version control",
|
||||||
|
"git",
|
||||||
|
"repository",
|
||||||
|
"pull"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development"
|
||||||
|
]
|
||||||
|
}
|
||||||
16
icons/book-down.svg
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20" />
|
||||||
|
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2Z" />
|
||||||
|
<path d="M12 13V7" />
|
||||||
|
<path d="m9 10 3 3 3-3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 386 B |
14
icons/book-key.json
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"$schema": "../icon.schema.json",
|
||||||
|
"tags": [
|
||||||
|
"code",
|
||||||
|
"version control",
|
||||||
|
"git",
|
||||||
|
"repository",
|
||||||
|
"private"
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
"development",
|
||||||
|
"security"
|
||||||
|
]
|
||||||
|
}
|
||||||
17
icons/book-key.svg
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<path d="M20,2l-4.5,4.5"/>
|
||||||
|
<path d="M19,3l1,1"/>
|
||||||
|
<circle cx="14" cy="8" r="2"/>
|
||||||
|
<path d="M4,19.5C4,18.1,5.1,17,6.5,17H20" />
|
||||||
|
<path d="M20,8v14H6.5C5.1,22,4,20.9,4,19.5v-15C4,3.1,5.1,2,6.5,2H14" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 415 B |