Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e8e42d9827 | ||
|
|
e12a8dd4a8 | ||
|
|
7194cfe3ff | ||
|
|
fa04885513 | ||
|
|
51208c0cec | ||
|
|
d87bffc684 | ||
|
|
2f0d587ef0 | ||
|
|
3082858b54 | ||
|
|
b184f46bf9 | ||
|
|
b82cbbd72c | ||
|
|
554707273f | ||
|
|
5a525f21cc | ||
|
|
b92dd457de | ||
|
|
2f29818018 | ||
|
|
7a533afc1c | ||
|
|
7f783e4370 | ||
|
|
1c181c50fc | ||
|
|
0e8b6d8478 | ||
|
|
8e08185318 | ||
|
|
6c1903d0b9 | ||
|
|
89c4771137 | ||
|
|
d1c8f2716b | ||
|
|
b78e0f328f | ||
|
|
ee1fd46fa6 | ||
|
|
01387c0dde | ||
|
|
2359ebcf7d | ||
|
|
1ebf50a848 | ||
|
|
de27e452e6 | ||
|
|
366efe3e82 | ||
|
|
acaedb41c1 | ||
|
|
78d3274b5b | ||
|
|
812cdb8f4a | ||
|
|
0500d18d09 | ||
|
|
38c834bcda | ||
|
|
f3a1bba31d | ||
|
|
ea82684178 | ||
|
|
7e3d6a8121 | ||
|
|
2c35468403 | ||
|
|
96aec6562a | ||
|
|
aa8b23b12a | ||
|
|
0d87ec28eb | ||
|
|
f8192b0999 | ||
|
|
ef7b4fe014 | ||
|
|
a104a1f206 | ||
|
|
6706ade47c | ||
|
|
fcc5dd70ad | ||
|
|
c9b9c93034 | ||
|
|
bd4e464048 | ||
|
|
ad5b2e5ae2 | ||
|
|
794d3c09fb | ||
|
|
202c4c0ae2 | ||
|
|
6041311718 |
21
.github/workflows/ci.yml
vendored
@@ -17,6 +17,13 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Fetch tags
|
- name: Fetch tags
|
||||||
run: git fetch --all --tags
|
run: git fetch --all --tags
|
||||||
|
|
||||||
@@ -24,20 +31,8 @@ jobs:
|
|||||||
id: latest-tag
|
id: latest-tag
|
||||||
run: echo "::set-output name=LATEST_TAG::$(git describe --tags `git rev-list --tags --max-count=1`)"
|
run: echo "::set-output name=LATEST_TAG::$(git describe --tags `git rev-list --tags --max-count=1`)"
|
||||||
|
|
||||||
- name: Get yarn cache directory path
|
|
||||||
id: yarn_cache
|
|
||||||
run: echo "::set-output name=YARN_CACHE_DIR::$(yarn cache dir)"
|
|
||||||
|
|
||||||
- name: Get cached packaged
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
path: ${{ steps.yarn_cache.outputs.YARN_CACHE_DIR }}
|
|
||||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-yarn-
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --pure-lockfile
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Check if we can patch
|
- name: Check if we can patch
|
||||||
run: .github/workflows/version-up.sh --minor
|
run: .github/workflows/version-up.sh --minor
|
||||||
|
|||||||
97
.github/workflows/release.yml
vendored
@@ -33,14 +33,15 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
cache-dependency-path: 'yarn.lock'
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -69,13 +70,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -104,13 +108,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -139,13 +146,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -174,13 +184,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -209,13 +222,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -244,13 +260,16 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -280,13 +299,16 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/download-artifact@v2
|
- uses: actions/download-artifact@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Set Auth Token
|
- name: Set Auth Token
|
||||||
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
||||||
@@ -315,10 +337,13 @@ jobs:
|
|||||||
needs: pre-build
|
needs: pre-build
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.4.0
|
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: "14"
|
node-version: 16
|
||||||
cache: yarn
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
|
||||||
- name: Install FontForge
|
- name: Install FontForge
|
||||||
run: sudo apt-get install zlib1g-dev fontforge
|
run: sudo apt-get install zlib1g-dev fontforge
|
||||||
@@ -345,7 +370,7 @@ jobs:
|
|||||||
run: sudo gem install fontcustom
|
run: sudo gem install fontcustom
|
||||||
|
|
||||||
- name: Install
|
- name: Install
|
||||||
run: yarn --prefer-offline
|
run: yarn --frozen-lockfile
|
||||||
|
|
||||||
- name: Build Icon Font
|
- name: Build Icon Font
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
1
.gitignore
vendored
@@ -1,5 +1,6 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.next
|
.next
|
||||||
|
.obsidian
|
||||||
.now
|
.now
|
||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
|
|||||||
137
CONTRIBUTING.md
@@ -42,10 +42,11 @@ Here you can find templates and instructions on how to implement the guidelines
|
|||||||
`Instructions`: You can find the [Inkscape Guide](/docs/INKSCAPE_GUIDE.md) and how to set up Inkscape under `/docs/INKSCAPE_GUIDE.md`.
|
`Instructions`: You can find the [Inkscape Guide](/docs/INKSCAPE_GUIDE.md) and how to set up Inkscape under `/docs/INKSCAPE_GUIDE.md`.
|
||||||
|
|
||||||
#### Figma
|
#### Figma
|
||||||
|
|
||||||
`Template`: None
|
`Template`: None
|
||||||
`Instructions`: You can find the [Figma Guide](/docs/FIGMA_GUIDE.md) and how to set up Figma under `/docs/FIGMA_GUIDE.md`.
|
`Instructions`: You can find the [Figma Guide](/docs/FIGMA_GUIDE.md) and how to set up Figma under `/docs/FIGMA_GUIDE.md`.
|
||||||
|
|
||||||
#### Submitting Mulitple Icons
|
#### Submitting Multiple Icons
|
||||||
|
|
||||||
If you want submit multiple icons, please separate the icons and group them. That makes reviewing the icons easier and keep the thread clean and scoped.
|
If you want submit multiple icons, please separate the icons and group them. That makes reviewing the icons easier and keep the thread clean and scoped.
|
||||||
So don't submit multiple icons in one PR that have noting to do with each other.
|
So don't submit multiple icons in one PR that have noting to do with each other.
|
||||||
@@ -58,6 +59,138 @@ Before creating an icon request, please search to see if someone has requested t
|
|||||||
|
|
||||||
If the icon has not already been requested, [create an issue](https://github.com/lucide-icons/lucide/issues/new?title=Icon%20Request:) with a title of `Icon request: <icon name>` and add as much information as possible.
|
If the icon has not already been requested, [create an issue](https://github.com/lucide-icons/lucide/issues/new?title=Icon%20Request:) with a title of `Icon request: <icon name>` and add as much information as possible.
|
||||||
|
|
||||||
## Icon Requests from Feather
|
### Icon Requests from Feather
|
||||||
|
|
||||||
If you are a designer who wants to contribute to Lucide but you don't know what icons to work on, then have a look at the Requests from Feather. All open, unfinished and valid requests can be found in [Feather Icon Requests](https://github.com/lucide-icons/lucide/issues/119).
|
If you are a designer who wants to contribute to Lucide but you don't know what icons to work on, then have a look at the Requests from Feather. All open, unfinished and valid requests can be found in [Feather Icon Requests](https://github.com/lucide-icons/lucide/issues/119).
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
You will need minimum version of [Nodejs 16+](https://nodejs.org)
|
||||||
|
For packagemanagement you will need [yarn v1](https://yarnpkg.com/getting-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:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn # Install dependencies, including the workspace packages
|
||||||
|
```
|
||||||
|
|
||||||
|
### Packages -> Yarn Workspaces
|
||||||
|
|
||||||
|
To distribute different packages we use yarn workspaces. Before you start make sure you are familiar with this setup. Read guide here: [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.
|
||||||
|
|
||||||
|
> Note: One package is not managed by yarn: **lucide-flutter**
|
||||||
|
|
||||||
|
### Generated Code
|
||||||
|
|
||||||
|
For icons we use one single source of truth the icons svgs located in the icons directory. To distribute icons to the packages we generate code including: icon files with svg paths, index files with imports, and types files. Depending on the use case other necessary code will be generated.
|
||||||
|
|
||||||
|
The commands for generating this code you will read in the next chapter.
|
||||||
|
|
||||||
|
### Commonly used scripts
|
||||||
|
|
||||||
|
#### Building
|
||||||
|
|
||||||
|
The build script includes multiple subcommands to: clean the dist directory, generate icon files, generate types files, and build/transpile code for each build format.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn [package-name] build
|
||||||
|
|
||||||
|
#example:
|
||||||
|
|
||||||
|
yarn lucide-react build
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Testing
|
||||||
|
|
||||||
|
Run unit tests with jest for each package to make sure all the package apis still works as expected.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn [package-name] test
|
||||||
|
|
||||||
|
#example:
|
||||||
|
|
||||||
|
yarn lucide-vue test
|
||||||
|
```
|
||||||
|
|
||||||
|
Recommended to run the test watcher when making changes.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn [package-name] test:watch
|
||||||
|
|
||||||
|
#example:
|
||||||
|
|
||||||
|
yarn lucide-preact test:watch
|
||||||
|
```
|
||||||
|
|
||||||
|
### Unit Testing
|
||||||
|
|
||||||
|
When adding new features to for example the icon component for a framework. It is required to have this covered with some unit tests.
|
||||||
|
|
||||||
|
### Local Testing
|
||||||
|
|
||||||
|
To test changes in a local project, you can use `yarn link` or `npm link` to link the package. Before you do this make sure you builded the package first.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# in packages/lucide-react
|
||||||
|
yarn link
|
||||||
|
|
||||||
|
# in your local project
|
||||||
|
|
||||||
|
yarn link lucide-react
|
||||||
|
```
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
Root directories
|
||||||
|
|
||||||
|
```sh
|
||||||
|
lucide
|
||||||
|
|
|
||||||
|
├── docs
|
||||||
|
├── icons
|
||||||
|
├── packages
|
||||||
|
├── scripts
|
||||||
|
└── site
|
||||||
|
```
|
||||||
|
|
||||||
|
### Docs
|
||||||
|
|
||||||
|
Detailed documentation about: installation, guides, packages, design guides etc.
|
||||||
|
|
||||||
|
### Icons
|
||||||
|
|
||||||
|
All the icons of lucide in SVG format. These will be used as source for all the packages and other distributions for the lucide icons.
|
||||||
|
|
||||||
|
### packages
|
||||||
|
|
||||||
|
Includes all the (npm) packages of lucide.
|
||||||
|
|
||||||
|
> Note: One package is not managed by yarn: **lucide-flutter**
|
||||||
|
|
||||||
|
### scripts
|
||||||
|
|
||||||
|
Includes usefully scripts to automate certain jobs. Big part of the scripts is the template generation, for example it generates icon components for all the packages. These scripts are usually executed from the "scripts" section in the package.json.
|
||||||
|
|
||||||
|
### site
|
||||||
|
|
||||||
|
The lucide.dev website using [Nextjs](https://nextjs.org).
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
The documentation files are located in the [docs](./docs) directory. All these markdown files will be loaded in the build of the lucide.dev website.
|
||||||
|
|
||||||
|
Feel free to write, adjust or add new markdown files to improve our documentation.
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
If you need any help or have problems with you contribution. Please don't hesitate to contact the Lucide Community, you can find us on [Github](https://github.com/lucide-icons/lucide) and [Discord](https://discord.gg/EH6nSts).
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
Thank you to all the people who already contributed to Lucide!
|
||||||
|
|
||||||
|
<a href="https://github.com/lucide-icons/lucide/graphs/contributors">
|
||||||
|
<img src="https://opencollective.com/lucide-icons/contributors.svg?width=890" /></a>
|
||||||
|
|||||||
@@ -189,8 +189,16 @@ Join the community on our [Discord](https://discord.gg/EH6nSts) server!
|
|||||||
|
|
||||||
Lucide is totally free for commercial use and personally use, this software is licensed under the [ISC License](https://github.com/lucide-icons/lucide/blob/master/LICENSE).
|
Lucide is totally free for commercial use and personally use, this software is licensed under the [ISC License](https://github.com/lucide-icons/lucide/blob/master/LICENSE).
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
Thank you to all the people who contributed to Lucide!
|
||||||
|
|
||||||
|
<a href="https://github.com/lucide-icons/lucide/graphs/contributors">
|
||||||
|
<img src="https://opencollective.com/lucide-icons/contributors.svg?width=890" /></a>
|
||||||
|
|
||||||
## Sponsors
|
## Sponsors
|
||||||
|
|
||||||
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
|
<a href="https://vercel.com?utm_source=lucide&utm_campaign=oss">
|
||||||
<img src="./site/public/vercel.svg" alt="Powered by Vercel" width="200" />
|
<img src="./site/public/vercel.svg" alt="Powered by Vercel" width="200" />
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M19.94 14A8 8 0 0 0 10 5.25m8.13 12.89A8 8 0 1 1 6.87 6.86" />
|
<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="m22 6-3-3" />
|
<path d="m22 6-3-3" />
|
||||||
<path d="m6 19-2 2" />
|
<path d="m6 19-2 2" />
|
||||||
<path d="m2 2 20 20" />
|
<path d="m2 2 20 20" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 382 B After Width: | Height: | Size: 442 B |
16
icons/armchair.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="M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3" />
|
||||||
|
<path d="M3 11v5a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v2H7v-2a2 2 0 0 0-4 0Z" />
|
||||||
|
<path d="M5 18v2" />
|
||||||
|
<path d="M19 18v2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 403 B |
17
icons/backpack.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="M4 20V10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2Z" />
|
||||||
|
<path d="M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2" />
|
||||||
|
<path d="M8 21v-5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v5" />
|
||||||
|
<path d="M8 10h8" />
|
||||||
|
<path d="M8 18h8" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 452 B |
17
icons/baggage-claim.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="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" />
|
||||||
|
<rect x="8" y="6" width="13" height="8" rx="1" />
|
||||||
|
<circle cx="18" cy="20" r="2" />
|
||||||
|
<circle cx="9" cy="20" r="2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 441 B |
16
icons/bar-chart-3.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 2v20h20" />
|
||||||
|
<path d="M17 18V9" />
|
||||||
|
<path d="M12 18V4" />
|
||||||
|
<path d="M7 18v-4" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 306 B |
16
icons/bar-chart-4.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 2v20h20" />
|
||||||
|
<path d="M12 18V9" />
|
||||||
|
<path d="M17 18V4" />
|
||||||
|
<path d="M7 18v-4" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 306 B |
16
icons/bar-chart-horizontal.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 2V22H22" />
|
||||||
|
<path d="M6 17L15 17" />
|
||||||
|
<path d="M6 12L20 12" />
|
||||||
|
<path d="M6 7L10 7" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 313 B |
17
icons/bath.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="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="2" y1="12" x2="22" y2="12" />
|
||||||
|
<line x1="7" y1="19" x2="7" y2="21" />
|
||||||
|
<line x1="17" y1="19" x2="17" y2="21" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 480 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M14 7h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-3" />
|
<path d="M15 7h1a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-2" />
|
||||||
<path d="M7 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h2" />
|
<path d="M6 7H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h1" />
|
||||||
<polyline points="11 7 8 12 12 12 9 17" />
|
<path d="m11 7-3 5h4l-3 5" />
|
||||||
<line x1="22" x2="22" y1="11" y2="13" />
|
<line x1="22" x2="22" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 393 B |
@@ -11,7 +11,7 @@
|
|||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect x="2" y="7" width="16" height="10" 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="10" y2="14" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
<line x1="10" x2="10" y1="10" y2="14" />
|
<line x1="10" x2="10" y1="11" y2="13" />
|
||||||
<line x1="14" x2="14" y1="10" y2="14" />
|
<line x1="14" x2="14" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 438 B After Width: | Height: | Size: 438 B |
@@ -11,5 +11,5 @@
|
|||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect x="2" y="7" width="16" height="10" 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="10" y2="14" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 352 B After Width: | Height: | Size: 352 B |
@@ -11,6 +11,6 @@
|
|||||||
>
|
>
|
||||||
<rect x="2" y="7" width="16" height="10" rx="2" ry="2" />
|
<rect x="2" y="7" width="16" height="10" 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="10" y2="14" />
|
<line x1="6" x2="6" y1="11" y2="13" />
|
||||||
<line x1="10" x2="10" y1="10" y2="14" />
|
<line x1="10" x2="10" y1="11" y2="13" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
16
icons/bed-double.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 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8" />
|
||||||
|
<path d="M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4" />
|
||||||
|
<path d="M12 4v6" />
|
||||||
|
<path d="M2 18h20" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 368 B |
15
icons/bed-single.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="M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8" />
|
||||||
|
<path d="M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4" />
|
||||||
|
<path d="M3 18h18" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 345 B |
16
icons/bed.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 4v16" />
|
||||||
|
<path d="M2 8h18a2 2 0 0 1 2 2v10" />
|
||||||
|
<path d="M2 17h20" />
|
||||||
|
<path d="M6 8v9" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 317 B |
@@ -9,8 +9,10 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M10 4H6v6h4V4z" />
|
<path d="M6 20h4" />
|
||||||
<path d="M18 14h-4v6h4v-6z" />
|
<path d="M14 10h4" />
|
||||||
<path d="M14 4h2v6m-2 0h4" />
|
<path d="M6 14h2v6" />
|
||||||
<path d="M6 14h2v6m-2 0h4" />
|
<path d="M14 4h2v6" />
|
||||||
|
<rect x="6" y="4" width="4" height="6" />
|
||||||
|
<rect x="14" y="14" width="4" height="6" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 335 B After Width: | Height: | Size: 395 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M19 17h2l.64-2.54a6 6 0 0 0 0-2.92l-1.07-4.27A3 3 0 0 0 17.66 5H4a2 2 0 0 0-2 2v10h2m10 0h-4" />
|
<path d="M19 17h2l.64-2.54c.24-.959.24-1.962 0-2.92l-1.07-4.27A3 3 0 0 0 17.66 5H4a2 2 0 0 0-2 2v10h2" />
|
||||||
|
<path d="M14 17H9" />
|
||||||
<circle cx="6.5" cy="17.5" r="2.5" />
|
<circle cx="6.5" cy="17.5" r="2.5" />
|
||||||
<circle cx="16.5" cy="17.5" r="2.5" />
|
<circle cx="16.5" cy="17.5" r="2.5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 421 B |
17
icons/calendar-check-2.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="M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<path d="m16 20 2 2 4-4" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 433 B |
17
icons/calendar-check.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"
|
||||||
|
>
|
||||||
|
<rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<path d="m9 16 2 2 4-4" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 419 B |
22
icons/calendar-days.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<path d="M8 14h.01" />
|
||||||
|
<path d="M12 14h.01" />
|
||||||
|
<path d="M16 14h.01" />
|
||||||
|
<path d="M8 18h.01" />
|
||||||
|
<path d="M12 18h.01" />
|
||||||
|
<path d="M16 18h.01" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 544 B |
17
icons/calendar-minus.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="M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<line x1="16" y1="19" x2="22" y2="19" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 446 B |
18
icons/calendar-off.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<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.18 4.18A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18" />
|
||||||
|
<path d="M21 15.5V6a2 2 0 0 0-2-2H9.5" />
|
||||||
|
<path d="M16 2v4" />
|
||||||
|
<path d="M3 10h7" />
|
||||||
|
<path d="M21 10h-5.5" />
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 446 B |
18
icons/calendar-plus.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<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="M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<line x1="19" y1="16" x2="19" y2="22" />
|
||||||
|
<line x1="16" y1="19" x2="22" y2="19" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 489 B |
20
icons/calendar-range.svg
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<path d="M17 14h-6" />
|
||||||
|
<path d="M13 18H7" />
|
||||||
|
<path d="M7 14h.01" />
|
||||||
|
<path d="M17 18h.01" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 490 B |
18
icons/calendar-x-2.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<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="M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<line x1="17" y1="17" x2="22" y2="22" />
|
||||||
|
<line x1="17" y1="22" x2="22" y2="17" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 489 B |
18
icons/calendar-x.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<rect x="3" y="4" width="18" height="18" rx="2" ry="2" />
|
||||||
|
<line x1="16" y1="2" x2="16" y2="6" />
|
||||||
|
<line x1="8" y1="2" x2="8" y2="6" />
|
||||||
|
<line x1="3" y1="10" x2="21" y2="10" />
|
||||||
|
<line x1="10" y1="14" x2="14" y2="18" />
|
||||||
|
<line x1="14" y1="14" x2="10" y2="18" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 476 B |
@@ -10,6 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<line x1="2" y1="2" x2="22" y2="22" />
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
<path d="M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16" />
|
<path d="M7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16" />
|
||||||
|
<path d="M9.5 4h5L17 7h3a2 2 0 0 1 2 2v7.5" />
|
||||||
<path d="M14.121 15.121A3 3 0 1 1 9.88 10.88" />
|
<path d="M14.121 15.121A3 3 0 1 1 9.88 10.88" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 404 B |
@@ -9,6 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" />
|
<path d="M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6" />
|
||||||
|
<path d="M2 12a9 9 0 0 1 8 8" />
|
||||||
|
<path d="M2 16a5 5 0 0 1 4 4" />
|
||||||
<line x1="2" y1="20" x2="2.01" y2="20" />
|
<line x1="2" y1="20" x2="2.01" y2="20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 375 B After Width: | Height: | Size: 395 B |
14
icons/chef-hat.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<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="M6 13.87A4 4 0 0 1 7.41 6a5.11 5.11 0 0 1 1.05-1.54 5 5 0 0 1 7.08 0A5.11 5.11 0 0 1 16.59 6 4 4 0 0 1 18 13.87V21H6Z" />
|
||||||
|
<line x1="6" y1="17" x2="18" y2="17" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 383 B |
19
icons/cigarette-off.svg
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
<path d="M12 12H2v4h14" />
|
||||||
|
<path d="M22 12v4" />
|
||||||
|
<path d="M18 12h-.5" />
|
||||||
|
<path d="M7 12v4" />
|
||||||
|
<path d="M18 8c0-2.5-2-2.5-2-5" />
|
||||||
|
<path d="M22 8c0-2.5-2-2.5-2-5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 425 B |
17
icons/cigarette.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="M18 12H2v4h16" />
|
||||||
|
<path d="M22 12v4" />
|
||||||
|
<path d="M7 12v4" />
|
||||||
|
<path d="M18 8c0-2.5-2-2.5-2-5" />
|
||||||
|
<path d="M22 8c0-2.5-2-2.5-2-5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 358 B |
16
icons/clapperboard.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 11v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8H4Z" />
|
||||||
|
<path d="m4 11-.88-2.87a2 2 0 0 1 1.33-2.5l11.48-3.5a2 2 0 0 1 2.5 1.32l.87 2.87L4 11.01Z" />
|
||||||
|
<path d="m6.6 4.99 3.38 4.2" />
|
||||||
|
<path d="m11.86 3.38 3.38 4.2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 434 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M16 4h2a2 2 0 0 1 2 2v4M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2" />
|
<path d="M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2" />
|
||||||
|
<path d="M16 4h2a2 2 0 0 1 2 2v4" />
|
||||||
<rect x="8" y="2" width="8" height="4" rx="1" ry="1" />
|
<rect x="8" y="2" width="8" height="4" rx="1" ry="1" />
|
||||||
<path d="M21 14H11" />
|
<path d="M21 14H11" />
|
||||||
<path d="m15 10-4 4 4 4" />
|
<path d="m15 10-4 4 4 4" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 417 B After Width: | Height: | Size: 433 B |
@@ -9,6 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M17.5 17a4.5 4.5 0 1 0 0-9h-1.8a7 7 0 1 0-10.3 8" />
|
<path d="m13 12-3 5h4l-3 5" />
|
||||||
<path d="m12 12-3 5h5l-3 5" />
|
<path d="M18 17a4.5 4.5 0 0 0-.5-9h-1.8a7.05 7.05 0 0 0-2-3.23A7 7 0 1 0 5.32 16a6.42 6.42 0 0 0 .68.37" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 351 B |
16
icons/component.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="M5.5 8.5 9 12l-3.5 3.5L2 12l3.5-3.5Z" />
|
||||||
|
<path d="m12 2 3.5 3.5L12 9 8.5 5.5 12 2Z" />
|
||||||
|
<path d="M18.5 8.5 22 12l-3.5 3.5L15 12l3.5-3.5Z" />
|
||||||
|
<path d="m12 15 3.5 3.5L12 22l-3.5-3.5L12 15Z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 415 B |
@@ -11,7 +11,7 @@
|
|||||||
>
|
>
|
||||||
<path d="M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2"/>
|
<path d="M17 18a2 2 0 0 0-2-2H9a2 2 0 0 0-2 2"/>
|
||||||
<rect x="3" y="4" width="18" height="18" rx="2"/>
|
<rect x="3" y="4" width="18" height="18" rx="2"/>
|
||||||
<circle class="cls-2" cx="12" cy="10" r="2"/>
|
<circle cx="12" cy="10" r="2"/>
|
||||||
<line x1="8" y1="2" x2="8" y2="4"/>
|
<line x1="8" y1="2" x2="8" y2="4"/>
|
||||||
<line x1="16" y1="2" x2="16" y2="4"/>
|
<line x1="16" y1="2" x2="16" y2="4"/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 437 B After Width: | Height: | Size: 423 B |
@@ -11,12 +11,12 @@
|
|||||||
>
|
>
|
||||||
<rect x="4" y="4" width="16" height="16" rx="2" ry="2" />
|
<rect x="4" y="4" width="16" height="16" rx="2" ry="2" />
|
||||||
<rect x="9" y="9" width="6" height="6" />
|
<rect x="9" y="9" width="6" height="6" />
|
||||||
<line x1="9" y1="1" x2="9" y2="4" />
|
<line x1="9" y1="2" x2="9" y2="4" />
|
||||||
<line x1="15" y1="1" x2="15" y2="4" />
|
<line x1="15" y1="2" x2="15" y2="4" />
|
||||||
<line x1="9" y1="20" x2="9" y2="23" />
|
<line x1="9" y1="21" x2="9" y2="22" />
|
||||||
<line x1="15" y1="20" x2="15" y2="23" />
|
<line x1="15" y1="20" x2="15" y2="22" />
|
||||||
<line x1="20" y1="9" x2="23" y2="9" />
|
<line x1="20" y1="9" x2="22" y2="9" />
|
||||||
<line x1="20" y1="14" x2="23" y2="14" />
|
<line x1="20" y1="14" x2="22" y2="14" />
|
||||||
<line x1="1" y1="9" x2="4" y2="9" />
|
<line x1="2" y1="9" x2="4" y2="9" />
|
||||||
<line x1="1" y1="14" x2="4" y2="14" />
|
<line x1="2" y1="14" x2="4" y2="14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 640 B After Width: | Height: | Size: 640 B |
17
icons/croissant.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="m4.6 13.11 5.79-3.21c1.89-1.05 4.79 1.78 3.71 3.71l-3.22 5.81C8.8 23.16.79 15.23 4.6 13.11Z" />
|
||||||
|
<path d="m10.5 9.5-1-2.29C9.2 6.48 8.8 6 8 6H4.5C2.79 6 2 6.5 2 8.5a7.71 7.71 0 0 0 2 4.83" />
|
||||||
|
<path d="M8 6c0-1.55.24-4-2-4-2 0-2.5 2.17-2.5 4" />
|
||||||
|
<path d="m14.5 13.5 2.29 1c.73.3 1.21.7 1.21 1.5v3.5c0 1.71-.5 2.5-2.5 2.5a7.71 7.71 0 0 1-4.83-2" />
|
||||||
|
<path d="M18 16c1.55 0 4-.24 4 2 0 2-2.17 2.5-4 2.5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 629 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z" />
|
<path d="M20 5H9L2 12l7 7H20a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z" />
|
||||||
<line x1="18" y1="9" x2="12" y2="15" />
|
<line x1="18" y1="9" x2="12" y2="15" />
|
||||||
<line x1="12" y1="9" x2="18" y2="15" />
|
<line x1="12" y1="9" x2="18" y2="15" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 358 B After Width: | Height: | Size: 358 B |
18
icons/dices.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<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"
|
||||||
|
>
|
||||||
|
<rect x="2" y="10" width="12" height="12" rx="2" ry="2" />
|
||||||
|
<path d="m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6" />
|
||||||
|
<path d="M6 18h.01" />
|
||||||
|
<path d="M10 14h.01" />
|
||||||
|
<path d="M15 6h.01" />
|
||||||
|
<path d="M18 9h.01" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 456 B |
@@ -10,5 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="10" />
|
<circle cx="12" cy="12" r="10" />
|
||||||
<path d="M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32" />
|
<path d="M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94" />
|
||||||
|
<path d="M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32" />
|
||||||
|
<path d="M8.56 2.75c4.37 6 6 9.42 8 17.72" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 408 B |
16
icons/factory.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 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z" />
|
||||||
|
<path d="M17 18h1" />
|
||||||
|
<path d="M12 18h1" />
|
||||||
|
<path d="M7 18h1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 381 B |
@@ -10,6 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M8 2c3 0 5 2 8 2s4-1 4-1v11" />
|
<path d="M8 2c3 0 5 2 8 2s4-1 4-1v11" />
|
||||||
<path d="M4 22v-7m0 0s1-1 4-1 5 2 8 2M4 15V4" />
|
<path d="M4 22V4" />
|
||||||
|
<path d="M4 15s1-1 4-1 5 2 8 2" />
|
||||||
<line x1="2" y1="2" x2="22" y2="22" />
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 352 B |
17
icons/focus.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"
|
||||||
|
>
|
||||||
|
<circle cx="12" cy="12" r="3" />
|
||||||
|
<path d="M3 7V5a2 2 0 0 1 2-2h2"></path>
|
||||||
|
<path d="M17 3h2a2 2 0 0 1 2 2v2"></path>
|
||||||
|
<path d="M21 17v2a2 2 0 0 1-2 2h-2"></path>
|
||||||
|
<path d="M7 21H5a2 2 0 0 1-2-2v-2"></path>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 421 B |
16
icons/fuel.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"
|
||||||
|
>
|
||||||
|
<line x1="3" y1="22" x2="15" y2="22" />
|
||||||
|
<line x1="4" y1="9" x2="14" y2="9" />
|
||||||
|
<path d="M14 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v18" />
|
||||||
|
<path d="M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 2 2h0a2 2 0 0 0 2-2V9.83a2 2 0 0 0-.59-1.42L18 5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 446 B |
@@ -9,7 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M19 11V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h7" />
|
<path d="M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6" />
|
||||||
<path d="m12 12 4.166 10 1.48-4.355L22 16.166 12 12z" />
|
<path d="m12 12 4 10 1.7-4.3L22 16Z" />
|
||||||
<path d="m18 18 3 3" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 323 B |
@@ -12,5 +12,6 @@
|
|||||||
<path d="M9 18h6" />
|
<path d="M9 18h6" />
|
||||||
<path d="M10 22h4" />
|
<path d="M10 22h4" />
|
||||||
<path d="m2 2 20 20" />
|
<path d="m2 2 20 20" />
|
||||||
<path d="M8.91 14a4.61 4.61 0 0 0-1.41-2.5C6.23 10.23 6 9 6 8a6 6 0 0 1 .084-1M9 2.804A6 6 0 0 1 18 8a4.651 4.651 0 0 1-1.031 3" />
|
<path d="M9 2.804A6 6 0 0 1 18 8a4.65 4.65 0 0 1-1.03 3" />
|
||||||
|
<path d="M8.91 14a4.61 4.61 0 0 0-1.41-2.5C6.23 10.23 6 9 6 8a6 6 0 0 1 .084-1" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 428 B |
14
icons/line-chart.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<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 2v20h20" />
|
||||||
|
<path d="m20 9-6 6-5-5-3 3" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 267 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M15 7h2a5 5 0 0 1 4 8M9 17H7A5 5 0 0 1 7 7" />
|
<path d="M9 17H7A5 5 0 0 1 7 7" />
|
||||||
|
<path d="M15 7h2a5 5 0 0 1 4 8" />
|
||||||
<line x1="8" y1="12" x2="12" y2="12" />
|
<line x1="8" y1="12" x2="12" y2="12" />
|
||||||
<line x1="2" y1="2" x2="22" y2="22" />
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 365 B |
@@ -9,6 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2" />
|
<path d="M9 17H7A5 5 0 0 1 7 7h2" />
|
||||||
|
<path d="M15 7h2a5 5 0 1 1 0 10h-2" />
|
||||||
<line x1="8" y1="12" x2="16" y2="12" />
|
<line x1="8" y1="12" x2="16" y2="12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 330 B |
17
icons/luggage.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="M6 20h0a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h0" />
|
||||||
|
<path d="M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14" />
|
||||||
|
<path d="M10 20h4" />
|
||||||
|
<circle cx="16" cy="20" r="2" />
|
||||||
|
<circle cx="8" cy="20" r="2" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 446 B |
15
icons/magnet.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="m6 15-4-4 6.75-6.77a7.79 7.79 0 0 1 11 11L13 22l-4-4 6.39-6.36a2.14 2.14 0 0 0-3-3L6 15" />
|
||||||
|
<path d="m5 8 4 4" />
|
||||||
|
<path d="m12 15 4 4" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 361 B |
17
icons/map-pin-off.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="M5.43 5.43A8.06 8.06 0 0 0 4 10c0 6 8 12 8 12a29.94 29.94 0 0 0 5-5"/>
|
||||||
|
<path d="M19.18 13.52A8.66 8.66 0 0 0 20 10a8 8 0 0 0-8-8 7.88 7.88 0 0 0-3.52.82"/>
|
||||||
|
<path d="M9.13 9.13A2.78 2.78 0 0 0 9 10a3 3 0 0 0 3 3 2.78 2.78 0 0 0 .87-.13"/>
|
||||||
|
<path d="M14.9 9.25a3 3 0 0 0-2.15-2.16"/>
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 547 B |
@@ -9,5 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3" />
|
<path d="M8 3H5a2 2 0 0 0-2 2v3" />
|
||||||
|
<path d="M21 8V5a2 2 0 0 0-2-2h-3" />
|
||||||
|
<path d="M3 16v3a2 2 0 0 0 2 2h3" />
|
||||||
|
<path d="M16 21h3a2 2 0 0 0 2-2v-3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 317 B After Width: | Height: | Size: 366 B |
@@ -9,5 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3" />
|
<path d="M8 3v3a2 2 0 0 1-2 2H3" />
|
||||||
|
<path d="M21 8h-3a2 2 0 0 1-2-2V3" />
|
||||||
|
<path d="M3 16h3a2 2 0 0 1 2 2v3" />
|
||||||
|
<path d="M16 21v-3a2 2 0 0 1 2-2h3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 317 B After Width: | Height: | Size: 366 B |
15
icons/navigation-2-off.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="M9.31 9.31 5 21l7-4 7 4-1.17-3.17"/>
|
||||||
|
<path d="M14.53 8.88 12 2 10.83 5.17"/>
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 339 B |
15
icons/navigation-off.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="M8.43 8.43 3 11l8 2 2 8 2.57-5.43"/>
|
||||||
|
<path d="M17.39 11.73 22 2 12.27 6.61"/>
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 340 B |
@@ -9,5 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M14.05 6A5 5 0 0 1 18 10m-3.95-8a9 9 0 0 1 8 7.94m0 7v3a2 2 0 0 1-2 2h-.19a19.79 19.79 0 0 1-8.63-3.07 19.52 19.52 0 0 1-6-6 19.82 19.82 0 0 1-3.11-8.69A2 2 0 0 1 3.93 2h3.18a2 2 0 0 1 2 1.72 13 13 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 13 13 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" />
|
<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" />
|
||||||
|
<path d="M14.05 2a9 9 0 0 1 8 7.94" />
|
||||||
|
<path d="M14.05 6A5 5 0 0 1 18 10" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 548 B After Width: | Height: | Size: 590 B |
16
icons/pin-off.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"
|
||||||
|
>
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
<line x1="12" y1="17" x2="12" y2="22" />
|
||||||
|
<path d="M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V17h12" />
|
||||||
|
<path d="M15 9.34V6h1a2 2 0 0 0 0-4H7.89" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 416 B |
@@ -9,7 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M12 21v-7" />
|
<line x1="12" y1="17" x2="12" y2="22" />
|
||||||
<path d="M9 3v5l-2 4v2h10m0 0h-5m5 0v-2l-2-4V3" />
|
<path d="M5 17h14v-1.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V6h1a2 2 0 0 0 0-4H8a2 2 0 0 0 0 4h1v4.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24Z" />
|
||||||
<path d="M7 3h10" />
|
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 309 B After Width: | Height: | Size: 417 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m2 22 2-2h3l7-7" />
|
<path d="M2 22l1-1H6l9-9" />
|
||||||
<path d="M4 20v-3l7-7" />
|
<path d="M3 21V18l9-9" />
|
||||||
<path d="M14.29 13.3a1 1 0 0 0 1.41 0l.8-.8c.27-.27.27-.72 0-1s-.28-.72 0-1l4.08-4.08a2 2 0 0 0 0-2.83l-.17-.17a2 2 0 0 0-2.83 0L13.5 7.51c-.28.27-.73.27-1 0s-.73-.28-1 0l-.8.79a1 1 0 0 0 0 1.41l3.59 3.59z" />
|
<path d="M21.37 5.63a2.12 2.12 0 0 0-3-3L15.58 5.42a1.05 1.05 0 0 1-1.5 0 1.07 1.07 0 0 0-1.5 0L11.25 6.75a1.07 1.07 0 0 0 0 1.5l4.5 4.5a1.07 1.07 0 0 0 1.5 0l1.33-1.33a1.07 1.07 0 0 0 0-1.5 1.05 1.05 0 0 1 0-1.5Z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 479 B After Width: | Height: | Size: 487 B |
@@ -10,7 +10,7 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="11" r="1" />
|
<circle cx="12" cy="11" r="1" />
|
||||||
<path d="M17.03 18.46a9 9 0 1 0-10.02.03" />
|
<path d="M11 17a1 1 0 0 1 2 0c0 .5-.34 3-.5 4.5a.5.5 0 0 1-1 0c-.16-1.5-.5-4-.5-4.5Z" />
|
||||||
<path d="M16.06 13.91a5 5 0 1 0-7.97.2" />
|
<path d="M8 14a5 5 0 1 1 8 0" />
|
||||||
<path d="M11.11 17a.9.9 0 1 1 1.78 0l-.52 4.67a.37.37 0 0 1-.74 0l-.52-4.68z" />
|
<path d="M17 18.5a9 9 0 1 0-10 0" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 418 B After Width: | Height: | Size: 408 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M18.36 6.64A9 9 0 0 1 20.77 15M5.63 6.64A9 9 0 1 0 18.706 19" />
|
<path d="M18.36 6.64A9 9 0 0 1 20.77 15" />
|
||||||
|
<path d="M6.16 6.16a9 9 0 1 0 12.68 12.68" />
|
||||||
<path d="M12 2v4" />
|
<path d="M12 2v4" />
|
||||||
<path d="m2 2 20 20" />
|
<path d="m2 2 20 20" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 351 B |
13
icons/puzzle.svg
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<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 2 3.6 3.6c2.4-6.3 9.1.4 2.8 2.8L22 12l-3.6 3.6c-2.4-6.3-9.1.4-2.8 2.8L12 22l-3.6-3.6C6 24.7-.7 18 5.6 15.6L2 12l3.6-3.6C8 14.7 14.7 8 8.4 5.6L12 2z" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 375 B |
@@ -10,5 +10,8 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="12" cy="12" r="2" />
|
<circle cx="12" cy="12" r="2" />
|
||||||
<path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14" />
|
<path d="M4.93 19.07a10 10 0 0 1 0-14.14" />
|
||||||
|
<path d="M7.76 16.24a6 6 0 0 1-1.3-1.95 6 6 0 0 1 0-4.59 6 6 0 0 1 1.3-1.95" />
|
||||||
|
<path d="M16.24 7.76a6 6 0 0 1 1.3 2 6 6 0 0 1 0 4.59 6 6 0 0 1-1.3 1.95" />
|
||||||
|
<path d="M19.07 4.93a10 10 0 0 1 0 14.14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 374 B After Width: | Height: | Size: 498 B |
14
icons/redo-2.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<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="m15 14 5-5-5-5" />
|
||||||
|
<path d="M20 9H9.5A5.5 5.5 0 0 0 4 14.5v0A5.5 5.5 0 0 0 9.5 20H13" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 310 B |
@@ -9,8 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="m16 16 3-8 3.001 8A5.002 5.002 0 0 1 16 16z" />
|
<path d="m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" />
|
||||||
<path d="m2 16 3-8 3.001 8A5.002 5.002 0 0 1 2 16z" />
|
<path d="m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z" />
|
||||||
<path d="M7 21h10" />
|
<path d="M7 21h10" />
|
||||||
<path d="M12 3v18" />
|
<path d="M12 3v18" />
|
||||||
<path d="M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2" />
|
<path d="M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2" />
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 420 B After Width: | Height: | Size: 431 B |
@@ -9,7 +9,7 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<circle cx="9" cy="21" r="1" />
|
<circle cx="8" cy="21" r="1" />
|
||||||
<circle cx="19" cy="21" r="1" />
|
<circle cx="19" cy="21" r="1" />
|
||||||
<path d="M2 2H4.5L7.62 14.49A2 2 0 0 0 9.56 16h8.88a2 2 0 0 0 1.94-1.51L22 8H6" />
|
<path d="M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 362 B After Width: | Height: | Size: 373 B |
17
icons/sofa.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 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3" />
|
||||||
|
<path d="M2 11v5a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v2H6v-2a2 2 0 0 0-4 0Z" />
|
||||||
|
<path d="M4 18v2" />
|
||||||
|
<path d="M20 18v2" />
|
||||||
|
<path d="M12 4v9" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 426 B |
15
icons/star-off.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="M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43" />
|
||||||
|
<path d="M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91" />
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 385 B |
21
icons/sun-medium.svg
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<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 16a4 4 0 100-8 4 4 0 000 8z" />
|
||||||
|
<path d="M12 3v1" />
|
||||||
|
<path d="M12 20v1" />
|
||||||
|
<path d="M3 12h1" />
|
||||||
|
<path d="M20 12h1" />
|
||||||
|
<path d="M18.364 5.636l-.707.707" />
|
||||||
|
<path d="M6.343 17.657l-.707.707" />
|
||||||
|
<path d="M5.636 5.636l.707.707" />
|
||||||
|
<path d="M17.657 17.657l.707.707" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 503 B |
22
icons/sun-moon.svg
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<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 16a4 4 0 100-8 4 4 0 000 8z" />
|
||||||
|
<path d="M16 12.386A3.136 3.136 0 0111.614 8" />
|
||||||
|
<path d="M12 2v2" />
|
||||||
|
<path d="M12 20v2" />
|
||||||
|
<path d="M5 5l1.5 1.5" />
|
||||||
|
<path d="M17.5 17.5L19 19" />
|
||||||
|
<path d="M2 12h2" />
|
||||||
|
<path d="M20 12h2" />
|
||||||
|
<path d="M5 19l1.5-1.5" />
|
||||||
|
<path d="M17.5 6.5L19 5" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 519 B |
16
icons/sword.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"
|
||||||
|
>
|
||||||
|
<polyline points="14.5 17.5 3 6 3 3 6 3 17.5 14.5" />
|
||||||
|
<line x1="13" y1="19" x2="19" y2="13" />
|
||||||
|
<line x1="16" y1="16" x2="20" y2="20" />
|
||||||
|
<line x1="19" y1="21" x2="21" y2="19" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 409 B |
20
icons/swords.svg
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<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="14.5 17.5 3 6 3 3 6 3 17.5 14.5" />
|
||||||
|
<line x1="13" y1="19" x2="19" y2="13" />
|
||||||
|
<line x1="16" y1="16" x2="20" y2="20" />
|
||||||
|
<line x1="19" y1="21" x2="21" y2="19" />
|
||||||
|
<polyline points="14.5 6.5 18 3 21 3 21 6 17.5 9.5" />
|
||||||
|
<line x1="5" y1="14" x2="9" y2="18" />
|
||||||
|
<line x1="7" y1="17" x2="4" y2="20" />
|
||||||
|
<line x1="3" y1="19" x2="5" y2="21" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 593 B |
@@ -9,7 +9,8 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M5.3 4h.9C7.7 4 9 5.3 9 6.7m0 0v10.5c0 1.6-1.1 2.7-2.7 2.7h-1M9 6.7v10.6a2.6 2.6 0 0 0 2.7 2.7h1M9 6.7C9 5.2 10.2 4 11.8 4h.9" />
|
<path d="M13 20h-1a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1" />
|
||||||
<path d="M13.1 7.9h6.8c1.1 0 2.1 1 2.1 2.1v4c0 1.1-.9 2.1-2.1 2.1h-6.8" />
|
<path d="M5 4h1a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5" />
|
||||||
<path d="M4.8 16.1h-.7C3 16.1 2 15.1 2 14v-4c0-1.1 1-2.1 2.1-2.1h.7" />
|
<path d="M13.1 7.9h6.8A2.18 2.18 0 0 1 22 10v4a2.11 2.11 0 0 1-2.1 2.1h-6.8" />
|
||||||
|
<path d="M4.8 16.1h-.7A2.18 2.18 0 0 1 2 14v-4a2.18 2.18 0 0 1 2.1-2.1h.7" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 500 B After Width: | Height: | Size: 482 B |
@@ -9,5 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" />
|
<path d="M17 14V2" />
|
||||||
|
<path d="M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22h0a3.13 3.13 0 0 1-3-3.88Z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 401 B |
@@ -9,5 +9,6 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" />
|
<path d="M7 10v12" />
|
||||||
|
<path d="M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2h0a3.13 3.13 0 0 1 3 3.88Z" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 339 B After Width: | Height: | Size: 402 B |
15
icons/train.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"
|
||||||
|
>
|
||||||
|
<rect x="4" y="3" width="16" height="16" rx="2"/>
|
||||||
|
<path d="M4 11h16M12 3v8"/>
|
||||||
|
<path d="M8 15h.01M16 15h.01M8 19l-2 3M18 22l-2-3"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 342 B |
@@ -9,7 +9,9 @@
|
|||||||
stroke-linecap="round"
|
stroke-linecap="round"
|
||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<path d="M10 17h4V5H2v12h3m15 0h2v-3.34a4 4 0 0 0-1.17-2.83L19 9h-5v8h1" />
|
<path d="M10 17h4V5H2v12h3" />
|
||||||
|
<path d="M20 17h2v-3.34a4 4 0 0 0-1.17-2.83L19 9h-5" />
|
||||||
|
<path d="M14 17h1" />
|
||||||
<circle cx="7.5" cy="17.5" r="2.5" />
|
<circle cx="7.5" cy="17.5" r="2.5" />
|
||||||
<circle cx="17.5" cy="17.5" r="2.5" />
|
<circle cx="17.5" cy="17.5" r="2.5" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 404 B |
14
icons/undo-2.svg
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<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="M9 14 4 9l5-5" />
|
||||||
|
<path d="M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5v0a5.5 5.5 0 0 1-5.5 5.5H11" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 311 B |
15
icons/venetian-mask.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="M2 12a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V7h-5a8 8 0 0 0-5 2 8 8 0 0 0-5-2H2Z"/>
|
||||||
|
<path d="M6 11c1.5 0 3 .5 3 2-2 0-3 0-3-2Z"/>
|
||||||
|
<path d="M18 11c-1.5 0-3 .5-3 2 2 0 3 0 3-2Z"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 418 B |
17
icons/vibrate-off.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="m2 8 2 2-2 2 2 2-2 2" />
|
||||||
|
<path d="m22 8-2 2 2 2-2 2 2 2" />
|
||||||
|
<path d="M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2" />
|
||||||
|
<path d="M16 10.34V6c0-.55-.45-1-1-1h-4.34" />
|
||||||
|
<line x1="2" y1="2" x2="22" y2="22" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 430 B |
@@ -10,5 +10,6 @@
|
|||||||
stroke-linejoin="round"
|
stroke-linejoin="round"
|
||||||
>
|
>
|
||||||
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" />
|
<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5" />
|
||||||
<path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07" />
|
<path d="M15.54 8.46a5 5 0 0 1 0 7.07" />
|
||||||
|
<path d="M19.07 4.93a10 10 0 0 1 0 14.14" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 340 B After Width: | Height: | Size: 356 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-angular",
|
"name": "lucide-angular",
|
||||||
"description": "A Lucide icon library package for Angular applications",
|
"description": "A Lucide icon library package for Angular applications",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"author": "SMAH1",
|
"author": "SMAH1",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://lucide.dev",
|
"homepage": "https://lucide.dev",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: lucide_icons
|
name: lucide_icons
|
||||||
description: A Lucide icon library package for Flutter applications. Fork of Feather Icons, open for anyone to contribute icons.
|
description: A Lucide icon library package for Flutter applications. Fork of Feather Icons, open for anyone to contribute icons.
|
||||||
version: 0.34.0
|
version: 0.54.0
|
||||||
homepage: https://lucide.dev
|
homepage: https://lucide.dev
|
||||||
repository: https://github.com/lucide-icons/lucide
|
repository: https://github.com/lucide-icons/lucide
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-preact",
|
"name": "lucide-preact",
|
||||||
"description": "A Lucide icon library package for Preact applications",
|
"description": "A Lucide icon library package for Preact applications",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://lucide.dev",
|
"homepage": "https://lucide.dev",
|
||||||
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-react",
|
"name": "lucide-react",
|
||||||
"description": "A Lucide icon library package for React applications",
|
"description": "A Lucide icon library package for React applications",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://lucide.dev",
|
"homepage": "https://lucide.dev",
|
||||||
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-svelte",
|
"name": "lucide-svelte",
|
||||||
"description": "A Lucide icon library package for Svelte applications",
|
"description": "A Lucide icon library package for Svelte applications",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://lucide.dev",
|
"homepage": "https://lucide.dev",
|
||||||
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-vue-next",
|
"name": "lucide-vue-next",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"author": "Eric Fennis",
|
"author": "Eric Fennis",
|
||||||
"description": "A Lucide icon library package for Vue 3 applications",
|
"description": "A Lucide icon library package for Vue 3 applications",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide-vue",
|
"name": "lucide-vue",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"author": "Eric Fennis",
|
"author": "Eric Fennis",
|
||||||
"description": "A Lucide icon library package for Vue 2 applications",
|
"description": "A Lucide icon library package for Vue 2 applications",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "lucide",
|
"name": "lucide",
|
||||||
"description": "A Lucide icon library package for web and javascript applications.",
|
"description": "A Lucide icon library package for web and javascript applications.",
|
||||||
"version": "0.34.0",
|
"version": "0.54.0",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://lucide.dev",
|
"homepage": "https://lucide.dev",
|
||||||
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`createIcons should add custom attributes 1`] = `"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"black\\" stroke=\\"currentColor\\" stroke-width=\\"2\\" stroke-linecap=\\"round\\" stroke-linejoin=\\"round\\" icon-name=\\"volume-2\\" class=\\"lucide lucide-volume-2 icon custom-class\\"><polygon points=\\"11 5 6 9 2 9 2 15 6 15 11 19 11 5\\"></polygon><path d=\\"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07\\"></path></svg>"`;
|
exports[`createIcons should add custom attributes 1`] = `"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"black\\" stroke=\\"currentColor\\" stroke-width=\\"2\\" stroke-linecap=\\"round\\" stroke-linejoin=\\"round\\" icon-name=\\"volume-2\\" class=\\"lucide lucide-volume-2 icon custom-class\\"><polygon points=\\"11 5 6 9 2 9 2 15 6 15 11 19 11 5\\"></polygon><path d=\\"M15.54 8.46a5 5 0 0 1 0 7.07\\"></path><path d=\\"M19.07 4.93a10 10 0 0 1 0 14.14\\"></path></svg>"`;
|
||||||
|
|
||||||
exports[`createIcons should read elements from DOM and replace it with icons 1`] = `"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"none\\" stroke=\\"currentColor\\" stroke-width=\\"2\\" stroke-linecap=\\"round\\" stroke-linejoin=\\"round\\" icon-name=\\"volume-2\\" class=\\"lucide lucide-volume-2\\"><polygon points=\\"11 5 6 9 2 9 2 15 6 15 11 19 11 5\\"></polygon><path d=\\"M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07\\"></path></svg>"`;
|
exports[`createIcons should read elements from DOM and replace it with icons 1`] = `"<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"none\\" stroke=\\"currentColor\\" stroke-width=\\"2\\" stroke-linecap=\\"round\\" stroke-linejoin=\\"round\\" icon-name=\\"volume-2\\" class=\\"lucide lucide-volume-2\\"><polygon points=\\"11 5 6 9 2 9 2 15 6 15 11 19 11 5\\"></polygon><path d=\\"M15.54 8.46a5 5 0 0 1 0 7.07\\"></path><path d=\\"M19.07 4.93a10 10 0 0 1 0 14.14\\"></path></svg>"`;
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
import { createContext, useState } from 'react';
|
import { createContext, useRef, useState, MutableRefObject, useContext, useMemo } from 'react';
|
||||||
|
|
||||||
|
type IconsRef = Record<string, SVGSVGElement>;
|
||||||
|
|
||||||
interface ICustomIconStyle {
|
interface ICustomIconStyle {
|
||||||
color: string;
|
color: string;
|
||||||
@@ -8,13 +10,14 @@ interface ICustomIconStyle {
|
|||||||
size: number;
|
size: number;
|
||||||
setSize: (n: number) => void;
|
setSize: (n: number) => void;
|
||||||
resetStyle: () => void;
|
resetStyle: () => void;
|
||||||
|
iconsRef: MutableRefObject<IconsRef>;
|
||||||
}
|
}
|
||||||
|
|
||||||
const DEFAULT_STYLE = {
|
const DEFAULT_STYLE = {
|
||||||
color: 'currentColor',
|
color: 'currentColor',
|
||||||
strokeWidth: 2,
|
strokeWidth: 2,
|
||||||
size: 24,
|
size: 24,
|
||||||
}
|
};
|
||||||
|
|
||||||
export const IconStyleContext = createContext<ICustomIconStyle>({
|
export const IconStyleContext = createContext<ICustomIconStyle>({
|
||||||
color: 'currentColor',
|
color: 'currentColor',
|
||||||
@@ -23,25 +26,43 @@ export const IconStyleContext = createContext<ICustomIconStyle>({
|
|||||||
setStroke: (n: number) => null,
|
setStroke: (n: number) => null,
|
||||||
size: 24,
|
size: 24,
|
||||||
setSize: (n: number) => null,
|
setSize: (n: number) => null,
|
||||||
resetStyle: () => null
|
resetStyle: () => null,
|
||||||
|
iconsRef: { current: {} },
|
||||||
});
|
});
|
||||||
|
|
||||||
export function CustomizeIconContext({ children }) {
|
export function CustomizeIconContext({ children }): JSX.Element {
|
||||||
|
const iconsRef = useRef<IconsRef>({});
|
||||||
const [color, setColor] = useState(DEFAULT_STYLE.color);
|
const [color, setColor] = useState(DEFAULT_STYLE.color);
|
||||||
const [stroke, setStroke] = useState(DEFAULT_STYLE.strokeWidth);
|
const [stroke, setStroke] = useState(DEFAULT_STYLE.strokeWidth);
|
||||||
const [size, setSize] = useState(DEFAULT_STYLE.size);
|
const [size, setSize] = useState(DEFAULT_STYLE.size);
|
||||||
|
|
||||||
function resetStyle(){
|
function resetStyle() {
|
||||||
setColor(DEFAULT_STYLE.color);
|
setColor(DEFAULT_STYLE.color);
|
||||||
setStroke(DEFAULT_STYLE.strokeWidth);
|
setStroke(DEFAULT_STYLE.strokeWidth);
|
||||||
setSize(DEFAULT_STYLE.size);
|
setSize(DEFAULT_STYLE.size);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
const value = useMemo(
|
||||||
<IconStyleContext.Provider
|
() => ({
|
||||||
value={{ color, setColor, strokeWidth: stroke, setStroke, size, setSize, resetStyle }}
|
color,
|
||||||
>
|
setColor,
|
||||||
{children}
|
strokeWidth: stroke,
|
||||||
</IconStyleContext.Provider>
|
setStroke,
|
||||||
|
size,
|
||||||
|
setSize,
|
||||||
|
resetStyle,
|
||||||
|
iconsRef,
|
||||||
|
}),
|
||||||
|
[color, setColor, stroke, setStroke, size, setSize, resetStyle, iconsRef],
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return <IconStyleContext.Provider value={value}>{children}</IconStyleContext.Provider>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useCustomizeIconContext(): ICustomIconStyle {
|
||||||
|
const context = useContext(IconStyleContext);
|
||||||
|
if (context === undefined) {
|
||||||
|
throw new Error('useCustomizeIconContext must be used within a IconStyleContextProvider');
|
||||||
|
}
|
||||||
|
return context;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,20 +13,49 @@ import AngularLogo from '../../public/framework-logos/angular.svg';
|
|||||||
import FlutterLogo from '../../public/framework-logos/flutter.svg';
|
import FlutterLogo from '../../public/framework-logos/flutter.svg';
|
||||||
import SvelteLogo from '../../public/framework-logos/svelte.svg';
|
import SvelteLogo from '../../public/framework-logos/svelte.svg';
|
||||||
import LaravelLogo from '../../public/framework-logos/laravel.svg';
|
import LaravelLogo from '../../public/framework-logos/laravel.svg';
|
||||||
|
import { useState } from 'react';
|
||||||
|
import { useCustomizeIconContext } from './CustomizeIconContext';
|
||||||
|
import { IconEntity } from '../types';
|
||||||
|
|
||||||
function generateZip(icons) {
|
type IconContent = [icon: string, src:string]
|
||||||
|
|
||||||
|
async function generateZip(icons: IconContent[]) {
|
||||||
const zip = new JSZip();
|
const zip = new JSZip();
|
||||||
Object.values(icons).forEach(icon =>
|
|
||||||
// @ts-ignore
|
const addingZipPromises = icons.map(([name, src]) =>
|
||||||
zip.file(`${icon.name}.svg`, icon.src),
|
zip.file(`${name}.svg`, src),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
await Promise.all(addingZipPromises)
|
||||||
|
|
||||||
return zip.generateAsync({ type: 'blob' });
|
return zip.generateAsync({ type: 'blob' });
|
||||||
}
|
}
|
||||||
|
|
||||||
const Header = ({ data }) => {
|
interface HeaderProps {
|
||||||
|
data: IconEntity[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const Header = ({ data }: HeaderProps) => {
|
||||||
|
const [zippingIcons, setZippingIcons] = useState(false);
|
||||||
|
const { iconsRef } = useCustomizeIconContext();
|
||||||
|
|
||||||
const downloadAllIcons = async () => {
|
const downloadAllIcons = async () => {
|
||||||
const zip = await generateZip(data);
|
console.log(iconsRef);
|
||||||
|
setZippingIcons(true);
|
||||||
|
|
||||||
|
let iconEntries: IconContent[] = Object.entries(iconsRef.current).map(([name, svgEl]) => [
|
||||||
|
name,
|
||||||
|
svgEl.outerHTML,
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Fallback
|
||||||
|
if (iconEntries.length === 0) {
|
||||||
|
iconEntries = data.map(icon => [icon.name, icon.src]);
|
||||||
|
}
|
||||||
|
|
||||||
|
const zip = await generateZip(iconEntries);
|
||||||
download(zip, 'lucide.zip');
|
download(zip, 'lucide.zip');
|
||||||
|
setZippingIcons(false);
|
||||||
};
|
};
|
||||||
|
|
||||||
const repositoryUrl = 'https://github.com/lucide-icons/lucide';
|
const repositoryUrl = 'https://github.com/lucide-icons/lucide';
|
||||||
@@ -76,7 +105,7 @@ const Header = ({ data }) => {
|
|||||||
name: 'lucide-laravel',
|
name: 'lucide-laravel',
|
||||||
Logo: LaravelLogo,
|
Logo: LaravelLogo,
|
||||||
href: 'https://github.com/mallardduck/blade-lucide-icons',
|
href: 'https://github.com/mallardduck/blade-lucide-icons',
|
||||||
}
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -124,7 +153,13 @@ const Header = ({ data }) => {
|
|||||||
</Wrap>
|
</Wrap>
|
||||||
<Wrap marginTop={3} marginBottom={12} spacing="15px" justify="center">
|
<Wrap marginTop={3} marginBottom={12} spacing="15px" justify="center">
|
||||||
<WrapItem>
|
<WrapItem>
|
||||||
<Button leftIcon={<Download />} size="lg" onClick={downloadAllIcons}>
|
<Button
|
||||||
|
leftIcon={<Download />}
|
||||||
|
size="lg"
|
||||||
|
onClick={downloadAllIcons}
|
||||||
|
isLoading={zippingIcons}
|
||||||
|
loadingText="Creating zip.."
|
||||||
|
>
|
||||||
Download all
|
Download all
|
||||||
</Button>
|
</Button>
|
||||||
</WrapItem>
|
</WrapItem>
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { Box, Button, ButtonProps, Flex, Text, useToast } from '@chakra-ui/react';
|
import { Button, ButtonProps, Flex, Text, useToast } from '@chakra-ui/react';
|
||||||
import download from 'downloadjs';
|
import download from 'downloadjs';
|
||||||
import copy from 'copy-to-clipboard';
|
import copy from 'copy-to-clipboard';
|
||||||
import { memo, useContext } from 'react';
|
import { memo } from 'react';
|
||||||
import { IconStyleContext } from './CustomizeIconContext';
|
import { useCustomizeIconContext } from './CustomizeIconContext';
|
||||||
import { IconWrapper } from './IconWrapper';
|
import { IconWrapper } from './IconWrapper';
|
||||||
|
|
||||||
interface IconListItemProps {
|
interface IconListItemProps {
|
||||||
@@ -13,9 +13,9 @@ interface IconListItemProps {
|
|||||||
onClick?: ButtonProps['onClick'];
|
onClick?: ButtonProps['onClick'];
|
||||||
}
|
}
|
||||||
|
|
||||||
const IconListItem = ({ name, content, src, onClick }: IconListItemProps) => {
|
const IconListItem = ({ name, content, onClick, src: svg }: IconListItemProps) => {
|
||||||
const toast = useToast();
|
const toast = useToast();
|
||||||
const { color, size, strokeWidth } = useContext(IconStyleContext);
|
const { color, size, strokeWidth, iconsRef } = useCustomizeIconContext();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
@@ -27,6 +27,7 @@ const IconListItem = ({ name, content, src, onClick }: IconListItemProps) => {
|
|||||||
position="relative"
|
position="relative"
|
||||||
whiteSpace="normal"
|
whiteSpace="normal"
|
||||||
onClick={event => {
|
onClick={event => {
|
||||||
|
const src = iconsRef.current[name].outerHTML ?? svg
|
||||||
if (event.shiftKey) {
|
if (event.shiftKey) {
|
||||||
copy(src);
|
copy(src);
|
||||||
toast({
|
toast({
|
||||||
@@ -54,6 +55,7 @@ const IconListItem = ({ name, content, src, onClick }: IconListItemProps) => {
|
|||||||
strokeWidth={strokeWidth}
|
strokeWidth={strokeWidth}
|
||||||
height={size}
|
height={size}
|
||||||
width={size}
|
width={size}
|
||||||
|
ref={iconEl => (iconsRef.current[name] = iconEl)}
|
||||||
/>
|
/>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex flex={1} minHeight={10} align="center">
|
<Flex flex={1} minHeight={10} align="center">
|
||||||
|
|||||||