Merge branch 'master' into fix/instant-loading
27
CHANGELOG
@ -1,3 +1,30 @@
|
||||
mkdocs-material-9.1.21+insiders-4.38.1 (2023-08-01)
|
||||
|
||||
* Improved nested serve mode for projects plugin
|
||||
* Improved compat in privacy plugin with third-party plugins
|
||||
* Fixed #5790: Typeset plugin ignores data-toc-label attribute
|
||||
* Fixed #5778: Interplay of privacy plugin with git-revision-date-localized
|
||||
* Fixed #5773: Info plugin erroring when community edition is in beta
|
||||
|
||||
mkdocs-material-9.1.21+insiders-4.38.0 (2023-07-29)
|
||||
|
||||
* Added projects plugin for building nested projects
|
||||
* Updated privacy plugin to new MkDocs API
|
||||
|
||||
mkdocs-material-9.1.21+insiders-4.37.1 (2023-07-28)
|
||||
|
||||
* Updated MkDocs to 1.5.1
|
||||
* Fixed deprecation warning in social plugin due to MkDocs upgrade
|
||||
* Fixed #5772: Privacy plugin fails due to API change in MkDocs
|
||||
|
||||
mkdocs-material-9.1.21 (2023-07-27)
|
||||
|
||||
* Fixed MkDocs 1.4 compat issue in social plugin (9.1.20 regression)
|
||||
|
||||
mkdocs-material-9.1.20 (2023-07-27)
|
||||
|
||||
* Fixed deprecation warnings for social plugin
|
||||
|
||||
mkdocs-material-9.1.19 (2023-07-18)
|
||||
|
||||
* Added support for MkDocs 1.5+
|
||||
|
@ -2,6 +2,15 @@
|
||||
|
||||
## Material for MkDocs
|
||||
|
||||
### 9.1.21 <small>July 27, 2023</small> { id="9.1.20" }
|
||||
|
||||
- Fixed MkDocs 1.4 compat issue in social plugin (9.1.20 regression)
|
||||
|
||||
### 9.1.20 <small>July 27, 2023</small> { id="9.1.20" }
|
||||
|
||||
- Updated Sanskrit translations
|
||||
- Fixed deprecation warnings for social plugin
|
||||
|
||||
### 9.1.19 <small>July 18, 2023</small> { id="9.1.19" }
|
||||
|
||||
- Added support for MkDocs 1.5+
|
||||
|
@ -123,16 +123,31 @@ The following plugins are bundled with the Docker image:
|
||||
??? question "How to add plugins to the Docker image?"
|
||||
|
||||
Material for MkDocs only bundles selected plugins in order to keep the size
|
||||
of the official image small. If the plugin you want to use is not included,
|
||||
create a `user-requirements.txt` file in the repository root with the packages
|
||||
you want to install additionally, e.g.:
|
||||
of the official image small. If the plugin you want to use is not included,
|
||||
you can add them easily:
|
||||
|
||||
``` txt title="user-requirements.txt"
|
||||
mkdocs-macros-plugin==0.7.0
|
||||
mkdocs-glightbox>=0.3.1
|
||||
```
|
||||
=== "Material for MkDocs"
|
||||
|
||||
Next, you can build the image with the following command:
|
||||
Create a `Dockerfile` and extend the official image:
|
||||
|
||||
``` Dockerfile title="Dockerfile"
|
||||
FROM squidfunk/mkdocs-material
|
||||
RUN pip install mkdocs-macros-plugin
|
||||
RUN pip install mkdocs-glightbox
|
||||
```
|
||||
|
||||
=== "Insiders"
|
||||
|
||||
Clone or fork the Insiders repository, and create a file called
|
||||
`user-requirements.txt` in the root of the repository. Then, add the
|
||||
plugins that should be installed to the file, e.g.:
|
||||
|
||||
``` txt title="user-requirements.txt"
|
||||
mkdocs-macros-plugin
|
||||
mkdocs-glightbox
|
||||
```
|
||||
|
||||
Next, build the image with the following command:
|
||||
|
||||
```
|
||||
docker build -t squidfunk/mkdocs-material .
|
||||
|
@ -93,7 +93,7 @@ inside it. Next:
|
||||
non-essential lines and files.
|
||||
|
||||
[bug reporting guide]: ../contributing/reporting-a-bug.md#upgrade-to-latest-version
|
||||
[minimal configuration]: ../../creating-your-site/#minimal-configuration
|
||||
[minimal configuration]: ../creating-your-site.md#minimal-configuration
|
||||
|
||||
### Creating a .zip file
|
||||
|
||||
|
@ -2,6 +2,25 @@
|
||||
|
||||
## Material for MkDocs Insiders
|
||||
|
||||
### 4.38.1 <small>August 1, 2023</small> { id="4.38.1" }
|
||||
|
||||
- Improved nested serve mode for projects plugin
|
||||
- Improved compat in privacy plugin with third-party plugins
|
||||
- Fixed #5790: Typeset plugin ignores data-toc-label attribute
|
||||
- Fixed #5778: Interplay of privacy plugin with git-revision-date-localized
|
||||
- Fixed #5773: Info plugin erroring when community edition is in beta
|
||||
|
||||
### 4.38.0 <small>July 29, 2023</small> { id="4.38.0" }
|
||||
|
||||
- Added projects plugin for building nested projects
|
||||
- Updated privacy plugin to new MkDocs API
|
||||
|
||||
### 4.37.1 <small>July 28, 2023</small> { id="4.37.1" }
|
||||
|
||||
- Updated MkDocs to 1.5.1
|
||||
- Fixed deprecation warning in social plugin due to MkDocs upgrade
|
||||
- Fixed #5772: Privacy plugin fails due to API change in MkDocs
|
||||
|
||||
### 4.37.0 <small>July 7, 2023</small> { id="4.37.0" }
|
||||
|
||||
- Added support for overriding social cards settings per page
|
||||
|
@ -88,11 +88,12 @@ a handful of them, [thanks to our awesome sponsors]!
|
||||
## What's in it for me?
|
||||
|
||||
The moment you [become a sponsor][how to become a sponsor], you'll get __immediate
|
||||
access to 22 additional features__ that you can __start using now__, and
|
||||
access to 23 additional features__ that you can __start using now__, and
|
||||
which are currently exclusively available to sponsors:
|
||||
|
||||
<div class="mdx-columns" markdown>
|
||||
|
||||
- [x] [Projects plugin] :material-alert-decagram:{ .mdx-pulse title="Added on July 29, 2023" }
|
||||
- [x] [Instant prefetching] :material-alert-decagram:{ .mdx-pulse title="Added on June 15, 2023" }
|
||||
- [x] [Social plugin: custom layouts] :material-alert-decagram:{ .mdx-pulse title="Added on May 8, 2023" }
|
||||
- [x] [Social plugin: background images] :material-alert-decagram:{ .mdx-pulse title="Added on May 8, 2023" }
|
||||
@ -311,12 +312,14 @@ are released for general availability.
|
||||
|
||||
#### $ 24,000 – Blockpaprika
|
||||
|
||||
- [x] [Projects plugin]
|
||||
- [x] [Social plugin: custom layouts]
|
||||
- [x] [Social plugin: background images]
|
||||
- [x] [Code range selection]
|
||||
- [x] [Code annotations: custom selectors]
|
||||
- [ ] Code line wrap button
|
||||
|
||||
[Projects plugin]: ../setup/building-an-optimized-site.md#built-in-projects-plugin
|
||||
[Social plugin: custom layouts]: ../setup/setting-up-social-cards.md#customization
|
||||
[Social plugin: background images]: ../setup/setting-up-social-cards.md#+social.cards_layout_params.background_image
|
||||
[Code range selection]: ../reference/code-blocks.md#code-selection-button
|
||||
|
@ -162,7 +162,7 @@ theme:
|
||||
[Code annotations support]: https://github.com/squidfunk/mkdocs-material/releases/tag/8.0.0
|
||||
[Attribute Lists]: ../setup/extensions/python-markdown.md#attribute-lists
|
||||
|
||||
#### Custom selectors :material-alert-decagram:{ .mdx-pulse title="Added on February 19, 2023" }
|
||||
#### Custom selectors
|
||||
|
||||
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
|
||||
[:octicons-tag-24: insiders-4.32.0][Insiders] ·
|
||||
|
@ -9747,12 +9747,14 @@
|
||||
"octicons/repo-16",
|
||||
"octicons/repo-24",
|
||||
"octicons/repo-clone-16",
|
||||
"octicons/repo-clone-24",
|
||||
"octicons/repo-deleted-16",
|
||||
"octicons/repo-forked-16",
|
||||
"octicons/repo-forked-24",
|
||||
"octicons/repo-locked-16",
|
||||
"octicons/repo-locked-24",
|
||||
"octicons/repo-pull-16",
|
||||
"octicons/repo-pull-24",
|
||||
"octicons/repo-push-16",
|
||||
"octicons/repo-push-24",
|
||||
"octicons/repo-template-16",
|
||||
@ -9957,6 +9959,7 @@
|
||||
"simple/adobexd",
|
||||
"simple/adonisjs",
|
||||
"simple/adp",
|
||||
"simple/adroll",
|
||||
"simple/adyen",
|
||||
"simple/aerlingus",
|
||||
"simple/aeroflot",
|
||||
@ -9976,12 +9979,14 @@
|
||||
"simple/aiqfome",
|
||||
"simple/airasia",
|
||||
"simple/airbnb",
|
||||
"simple/airbrakedotio",
|
||||
"simple/airbus",
|
||||
"simple/airbyte",
|
||||
"simple/aircall",
|
||||
"simple/aircanada",
|
||||
"simple/airchina",
|
||||
"simple/airfrance",
|
||||
"simple/airindia",
|
||||
"simple/airplayaudio",
|
||||
"simple/airplayvideo",
|
||||
"simple/airtable",
|
||||
@ -10006,6 +10011,7 @@
|
||||
"simple/alltrails",
|
||||
"simple/alpinedotjs",
|
||||
"simple/alpinelinux",
|
||||
"simple/alteryx",
|
||||
"simple/altiumdesigner",
|
||||
"simple/alwaysdata",
|
||||
"simple/amazon",
|
||||
@ -10019,7 +10025,9 @@
|
||||
"simple/amazoneks",
|
||||
"simple/amazonfiretv",
|
||||
"simple/amazongames",
|
||||
"simple/amazoniam",
|
||||
"simple/amazonlumberyard",
|
||||
"simple/amazonluna",
|
||||
"simple/amazonpay",
|
||||
"simple/amazonprime",
|
||||
"simple/amazonrds",
|
||||
@ -10078,8 +10086,10 @@
|
||||
"simple/apacherocketmq",
|
||||
"simple/apachesolr",
|
||||
"simple/apachespark",
|
||||
"simple/apachestorm",
|
||||
"simple/apachetomcat",
|
||||
"simple/aparat",
|
||||
"simple/apifox",
|
||||
"simple/apollographql",
|
||||
"simple/apostrophe",
|
||||
"simple/appian",
|
||||
@ -10110,6 +10120,7 @@
|
||||
"simple/arkecosystem",
|
||||
"simple/arlo",
|
||||
"simple/arm",
|
||||
"simple/arstechnica",
|
||||
"simple/artifacthub",
|
||||
"simple/artixlinux",
|
||||
"simple/artstation",
|
||||
@ -10138,6 +10149,7 @@
|
||||
"simple/audiotechnica",
|
||||
"simple/aurelia",
|
||||
"simple/auth0",
|
||||
"simple/authelia",
|
||||
"simple/authy",
|
||||
"simple/autodesk",
|
||||
"simple/autohotkey",
|
||||
@ -10188,6 +10200,7 @@
|
||||
"simple/bem",
|
||||
"simple/bentley",
|
||||
"simple/bento",
|
||||
"simple/bentoml",
|
||||
"simple/betfair",
|
||||
"simple/bigbasket",
|
||||
"simple/bigbluebutton",
|
||||
@ -10198,6 +10211,7 @@
|
||||
"simple/bim",
|
||||
"simple/binance",
|
||||
"simple/biolink",
|
||||
"simple/bisecthosting",
|
||||
"simple/bit",
|
||||
"simple/bitbucket",
|
||||
"simple/bitcoin",
|
||||
@ -10222,6 +10236,7 @@
|
||||
"simple/boardgamegeek",
|
||||
"simple/boehringeringelheim",
|
||||
"simple/boeing",
|
||||
"simple/bombardier",
|
||||
"simple/bookalope",
|
||||
"simple/bookbub",
|
||||
"simple/bookmeter",
|
||||
@ -10241,8 +10256,10 @@
|
||||
"simple/brandfolder",
|
||||
"simple/brave",
|
||||
"simple/breaker",
|
||||
"simple/brevo",
|
||||
"simple/britishairways",
|
||||
"simple/broadcom",
|
||||
"simple/bspwm",
|
||||
"simple/bt",
|
||||
"simple/buddy",
|
||||
"simple/budibase",
|
||||
@ -10266,6 +10283,7 @@
|
||||
"simple/bytedance",
|
||||
"simple/c",
|
||||
"simple/cachet",
|
||||
"simple/caddy",
|
||||
"simple/cadillac",
|
||||
"simple/cafepress",
|
||||
"simple/caffeine",
|
||||
@ -10295,12 +10313,15 @@
|
||||
"simple/chainguard",
|
||||
"simple/chainlink",
|
||||
"simple/chakraui",
|
||||
"simple/channel4",
|
||||
"simple/chartdotjs",
|
||||
"simple/chartmogul",
|
||||
"simple/chase",
|
||||
"simple/chatbot",
|
||||
"simple/chatwoot",
|
||||
"simple/checkio",
|
||||
"simple/checkmarx",
|
||||
"simple/checkmk",
|
||||
"simple/chef",
|
||||
"simple/chemex",
|
||||
"simple/chevrolet",
|
||||
@ -10323,6 +10344,7 @@
|
||||
"simple/civicrm",
|
||||
"simple/civo",
|
||||
"simple/ckeditor4",
|
||||
"simple/clarifai",
|
||||
"simple/claris",
|
||||
"simple/clickhouse",
|
||||
"simple/clickup",
|
||||
@ -10370,6 +10392,8 @@
|
||||
"simple/coderwall",
|
||||
"simple/codesandbox",
|
||||
"simple/codeship",
|
||||
"simple/codesignal",
|
||||
"simple/codestream",
|
||||
"simple/codewars",
|
||||
"simple/codingame",
|
||||
"simple/codingninjas",
|
||||
@ -10415,6 +10439,7 @@
|
||||
"simple/craftcms",
|
||||
"simple/cratedb",
|
||||
"simple/crayon",
|
||||
"simple/creality",
|
||||
"simple/createreactapp",
|
||||
"simple/creativecommons",
|
||||
"simple/creativetechnology",
|
||||
@ -10481,6 +10506,7 @@
|
||||
"simple/delphi",
|
||||
"simple/delta",
|
||||
"simple/deno",
|
||||
"simple/denon",
|
||||
"simple/dependabot",
|
||||
"simple/derspiegel",
|
||||
"simple/designernews",
|
||||
@ -10549,6 +10575,7 @@
|
||||
"simple/e3",
|
||||
"simple/ea",
|
||||
"simple/eagle",
|
||||
"simple/easyeda",
|
||||
"simple/easyjet",
|
||||
"simple/ebay",
|
||||
"simple/ebox",
|
||||
@ -10636,6 +10663,7 @@
|
||||
"simple/fandom",
|
||||
"simple/fanfou",
|
||||
"simple/fantom",
|
||||
"simple/fareharbor",
|
||||
"simple/farfetch",
|
||||
"simple/fastapi",
|
||||
"simple/fastify",
|
||||
@ -10651,6 +10679,7 @@
|
||||
"simple/feedly",
|
||||
"simple/ferrari",
|
||||
"simple/ferrarinv",
|
||||
"simple/ferretdb",
|
||||
"simple/ffmpeg",
|
||||
"simple/fi",
|
||||
"simple/fiat",
|
||||
@ -10664,6 +10693,7 @@
|
||||
"simple/filezilla",
|
||||
"simple/fing",
|
||||
"simple/firebase",
|
||||
"simple/fireflyiii",
|
||||
"simple/firefox",
|
||||
"simple/firefoxbrowser",
|
||||
"simple/fireship",
|
||||
@ -10722,6 +10752,7 @@
|
||||
"simple/frontendmentor",
|
||||
"simple/frontify",
|
||||
"simple/fsecure",
|
||||
"simple/fsharp",
|
||||
"simple/fugacloud",
|
||||
"simple/fujifilm",
|
||||
"simple/fujitsu",
|
||||
@ -10800,11 +10831,14 @@
|
||||
"simple/googleclassroom",
|
||||
"simple/googlecloud",
|
||||
"simple/googlecolab",
|
||||
"simple/googlecontaineroptimizedos",
|
||||
"simple/googledocs",
|
||||
"simple/googledomains",
|
||||
"simple/googledrive",
|
||||
"simple/googleearth",
|
||||
"simple/googlefit",
|
||||
"simple/googlefonts",
|
||||
"simple/googleforms",
|
||||
"simple/googlehangouts",
|
||||
"simple/googlehome",
|
||||
"simple/googlekeep",
|
||||
@ -10846,6 +10880,7 @@
|
||||
"simple/grubhub",
|
||||
"simple/grunt",
|
||||
"simple/gsk",
|
||||
"simple/gstreamer",
|
||||
"simple/gtk",
|
||||
"simple/guangzhoumetro",
|
||||
"simple/guilded",
|
||||
@ -10855,6 +10890,7 @@
|
||||
"simple/gunicorn",
|
||||
"simple/gurobi",
|
||||
"simple/gutenberg",
|
||||
"simple/h3",
|
||||
"simple/habr",
|
||||
"simple/hackaday",
|
||||
"simple/hackclub",
|
||||
@ -10870,6 +10906,7 @@
|
||||
"simple/happycow",
|
||||
"simple/harbor",
|
||||
"simple/harmonyos",
|
||||
"simple/hashicorp",
|
||||
"simple/hashnode",
|
||||
"simple/haskell",
|
||||
"simple/hasura",
|
||||
@ -10880,6 +10917,7 @@
|
||||
"simple/hcl",
|
||||
"simple/headlessui",
|
||||
"simple/headspace",
|
||||
"simple/hearthisdotat",
|
||||
"simple/hedera",
|
||||
"simple/hellofresh",
|
||||
"simple/hellyhansen",
|
||||
@ -10909,9 +10947,11 @@
|
||||
"simple/hoppscotch",
|
||||
"simple/hotelsdotcom",
|
||||
"simple/hotjar",
|
||||
"simple/hotwire",
|
||||
"simple/houdini",
|
||||
"simple/houzz",
|
||||
"simple/hp",
|
||||
"simple/hsbc",
|
||||
"simple/html5",
|
||||
"simple/htmlacademy",
|
||||
"simple/httpie",
|
||||
@ -10958,6 +10998,7 @@
|
||||
"simple/immich",
|
||||
"simple/imou",
|
||||
"simple/indeed",
|
||||
"simple/inertia",
|
||||
"simple/infiniti",
|
||||
"simple/influxdb",
|
||||
"simple/informatica",
|
||||
@ -10983,6 +11024,7 @@
|
||||
"simple/internetarchive",
|
||||
"simple/internetexplorer",
|
||||
"simple/intigriti",
|
||||
"simple/intuit",
|
||||
"simple/invision",
|
||||
"simple/invoiceninja",
|
||||
"simple/iobroker",
|
||||
@ -10991,6 +11033,7 @@
|
||||
"simple/ios",
|
||||
"simple/iota",
|
||||
"simple/ipfs",
|
||||
"simple/iris",
|
||||
"simple/issuu",
|
||||
"simple/istio",
|
||||
"simple/itchdotio",
|
||||
@ -11018,6 +11061,7 @@
|
||||
"simple/jetpackcompose",
|
||||
"simple/jfrog",
|
||||
"simple/jfrogbintray",
|
||||
"simple/jfrogpipelines",
|
||||
"simple/jinja",
|
||||
"simple/jira",
|
||||
"simple/jirasoftware",
|
||||
@ -11026,6 +11070,7 @@
|
||||
"simple/joomla",
|
||||
"simple/joplin",
|
||||
"simple/jordan",
|
||||
"simple/jovian",
|
||||
"simple/jpeg",
|
||||
"simple/jquery",
|
||||
"simple/jrgroup",
|
||||
@ -11034,6 +11079,8 @@
|
||||
"simple/json",
|
||||
"simple/jsonwebtokens",
|
||||
"simple/jss",
|
||||
"simple/juce",
|
||||
"simple/juejin",
|
||||
"simple/juke",
|
||||
"simple/julia",
|
||||
"simple/junipernetworks",
|
||||
@ -11049,6 +11096,7 @@
|
||||
"simple/kakao",
|
||||
"simple/kakaotalk",
|
||||
"simple/kalilinux",
|
||||
"simple/kamailio",
|
||||
"simple/kaniko",
|
||||
"simple/karlsruherverkehrsverbund",
|
||||
"simple/kasasmart",
|
||||
@ -11078,6 +11126,7 @@
|
||||
"simple/kinopoisk",
|
||||
"simple/kinsta",
|
||||
"simple/kirby",
|
||||
"simple/kit",
|
||||
"simple/kitsu",
|
||||
"simple/klarna",
|
||||
"simple/klm",
|
||||
@ -11087,6 +11136,7 @@
|
||||
"simple/known",
|
||||
"simple/koa",
|
||||
"simple/koc",
|
||||
"simple/kodak",
|
||||
"simple/kodi",
|
||||
"simple/kofax",
|
||||
"simple/kofi",
|
||||
@ -11125,6 +11175,7 @@
|
||||
"simple/leanpub",
|
||||
"simple/leetcode",
|
||||
"simple/legacygames",
|
||||
"simple/leica",
|
||||
"simple/lemmy",
|
||||
"simple/lenovo",
|
||||
"simple/lens",
|
||||
@ -11180,6 +11231,7 @@
|
||||
"simple/loopback",
|
||||
"simple/lospec",
|
||||
"simple/lotpolishairlines",
|
||||
"simple/ltspice",
|
||||
"simple/lua",
|
||||
"simple/lubuntu",
|
||||
"simple/ludwig",
|
||||
@ -11201,6 +11253,7 @@
|
||||
"simple/mailgun",
|
||||
"simple/majorleaguehacking",
|
||||
"simple/makerbot",
|
||||
"simple/mambaui",
|
||||
"simple/mamp",
|
||||
"simple/man",
|
||||
"simple/manageiq",
|
||||
@ -11239,6 +11292,7 @@
|
||||
"simple/mediamarkt",
|
||||
"simple/mediatek",
|
||||
"simple/mediatemple",
|
||||
"simple/medibangpaint",
|
||||
"simple/medium",
|
||||
"simple/meetup",
|
||||
"simple/mega",
|
||||
@ -11260,6 +11314,7 @@
|
||||
"simple/mg",
|
||||
"simple/microbit",
|
||||
"simple/microdotblog",
|
||||
"simple/microeditor",
|
||||
"simple/microgenetics",
|
||||
"simple/micropython",
|
||||
"simple/microsoft",
|
||||
@ -11281,6 +11336,7 @@
|
||||
"simple/microsofttranslator",
|
||||
"simple/microsoftvisio",
|
||||
"simple/microsoftword",
|
||||
"simple/microstation",
|
||||
"simple/microstrategy",
|
||||
"simple/midi",
|
||||
"simple/mikrotik",
|
||||
@ -11289,6 +11345,7 @@
|
||||
"simple/minetest",
|
||||
"simple/mini",
|
||||
"simple/minutemailer",
|
||||
"simple/miraheze",
|
||||
"simple/miro",
|
||||
"simple/misskey",
|
||||
"simple/mitsubishi",
|
||||
@ -11309,6 +11366,7 @@
|
||||
"simple/moneygram",
|
||||
"simple/mongodb",
|
||||
"simple/mongoose",
|
||||
"simple/mongoosedotws",
|
||||
"simple/monica",
|
||||
"simple/monkeytie",
|
||||
"simple/monkeytype",
|
||||
@ -11350,6 +11408,7 @@
|
||||
"simple/naver",
|
||||
"simple/nba",
|
||||
"simple/nbb",
|
||||
"simple/nbc",
|
||||
"simple/ndr",
|
||||
"simple/nec",
|
||||
"simple/neo4j",
|
||||
@ -11363,6 +11422,7 @@
|
||||
"simple/netto",
|
||||
"simple/neutralinojs",
|
||||
"simple/newbalance",
|
||||
"simple/newegg",
|
||||
"simple/newjapanprowrestling",
|
||||
"simple/newrelic",
|
||||
"simple/newyorktimes",
|
||||
@ -11370,10 +11430,12 @@
|
||||
"simple/nextcloud",
|
||||
"simple/nextdoor",
|
||||
"simple/nextdotjs",
|
||||
"simple/nextra",
|
||||
"simple/nfc",
|
||||
"simple/nginx",
|
||||
"simple/nginxproxymanager",
|
||||
"simple/ngrok",
|
||||
"simple/ngrx",
|
||||
"simple/niconico",
|
||||
"simple/nike",
|
||||
"simple/nikon",
|
||||
@ -11452,8 +11514,10 @@
|
||||
"simple/openmined",
|
||||
"simple/opennebula",
|
||||
"simple/openproject",
|
||||
"simple/openscad",
|
||||
"simple/opensea",
|
||||
"simple/opensearch",
|
||||
"simple/opensourcehardware",
|
||||
"simple/opensourceinitiative",
|
||||
"simple/openssl",
|
||||
"simple/openstack",
|
||||
@ -11466,6 +11530,7 @@
|
||||
"simple/openzeppelin",
|
||||
"simple/openzfs",
|
||||
"simple/opera",
|
||||
"simple/operagx",
|
||||
"simple/opnsense",
|
||||
"simple/opsgenie",
|
||||
"simple/opslevel",
|
||||
@ -11484,6 +11549,7 @@
|
||||
"simple/overleaf",
|
||||
"simple/ovh",
|
||||
"simple/owasp",
|
||||
"simple/owncloud",
|
||||
"simple/oxygen",
|
||||
"simple/oyo",
|
||||
"simple/p5dotjs",
|
||||
@ -11496,6 +11562,7 @@
|
||||
"simple/pagespeedinsights",
|
||||
"simple/pagseguro",
|
||||
"simple/palantir",
|
||||
"simple/paloaltonetworks",
|
||||
"simple/paloaltosoftware",
|
||||
"simple/pandas",
|
||||
"simple/pandora",
|
||||
@ -11506,12 +11573,14 @@
|
||||
"simple/passport",
|
||||
"simple/pastebin",
|
||||
"simple/patreon",
|
||||
"simple/paychex",
|
||||
"simple/payloadcms",
|
||||
"simple/payoneer",
|
||||
"simple/paypal",
|
||||
"simple/paytm",
|
||||
"simple/pcgamingwiki",
|
||||
"simple/peakdesign",
|
||||
"simple/pearson",
|
||||
"simple/peertube",
|
||||
"simple/pegasusairlines",
|
||||
"simple/pelican",
|
||||
@ -11530,6 +11599,7 @@
|
||||
"simple/pfsense",
|
||||
"simple/phabricator",
|
||||
"simple/philipshue",
|
||||
"simple/phoenixframework",
|
||||
"simple/phonepe",
|
||||
"simple/photobucket",
|
||||
"simple/photocrowd",
|
||||
@ -11582,6 +11652,7 @@
|
||||
"simple/pocketbase",
|
||||
"simple/pocketcasts",
|
||||
"simple/podcastaddict",
|
||||
"simple/podcastindex",
|
||||
"simple/podman",
|
||||
"simple/poe",
|
||||
"simple/poetry",
|
||||
@ -11597,6 +11668,7 @@
|
||||
"simple/portainer",
|
||||
"simple/postcss",
|
||||
"simple/postgresql",
|
||||
"simple/posthog",
|
||||
"simple/postman",
|
||||
"simple/postmates",
|
||||
"simple/powerapps",
|
||||
@ -11635,6 +11707,7 @@
|
||||
"simple/protocolsdotio",
|
||||
"simple/protodotio",
|
||||
"simple/proton",
|
||||
"simple/protoncalendar",
|
||||
"simple/protondb",
|
||||
"simple/protondrive",
|
||||
"simple/protonmail",
|
||||
@ -11657,6 +11730,7 @@
|
||||
"simple/pusher",
|
||||
"simple/pwa",
|
||||
"simple/pycharm",
|
||||
"simple/pydantic",
|
||||
"simple/pyg",
|
||||
"simple/pypi",
|
||||
"simple/pypy",
|
||||
@ -11664,6 +11738,7 @@
|
||||
"simple/pysyft",
|
||||
"simple/pytest",
|
||||
"simple/python",
|
||||
"simple/pythonanywhere",
|
||||
"simple/pytorch",
|
||||
"simple/pyup",
|
||||
"simple/qantas",
|
||||
@ -11674,6 +11749,7 @@
|
||||
"simple/qiita",
|
||||
"simple/qiskit",
|
||||
"simple/qiwi",
|
||||
"simple/qlik",
|
||||
"simple/qmk",
|
||||
"simple/qt",
|
||||
"simple/qualcomm",
|
||||
@ -11690,6 +11766,7 @@
|
||||
"simple/quicktime",
|
||||
"simple/quip",
|
||||
"simple/quora",
|
||||
"simple/qwant",
|
||||
"simple/qwiklabs",
|
||||
"simple/qzone",
|
||||
"simple/r",
|
||||
@ -11698,6 +11775,7 @@
|
||||
"simple/racket",
|
||||
"simple/radar",
|
||||
"simple/radiopublic",
|
||||
"simple/radixui",
|
||||
"simple/railway",
|
||||
"simple/rainmeter",
|
||||
"simple/rakuten",
|
||||
@ -11738,6 +11816,7 @@
|
||||
"simple/reebok",
|
||||
"simple/relay",
|
||||
"simple/relianceindustrieslimited",
|
||||
"simple/remark",
|
||||
"simple/remix",
|
||||
"simple/renault",
|
||||
"simple/render",
|
||||
@ -11753,6 +11832,7 @@
|
||||
"simple/resurrectionremixos",
|
||||
"simple/retroarch",
|
||||
"simple/retropie",
|
||||
"simple/revanced",
|
||||
"simple/revealdotjs",
|
||||
"simple/reverbnation",
|
||||
"simple/revoltdotchat",
|
||||
@ -11768,6 +11848,7 @@
|
||||
"simple/ripple",
|
||||
"simple/riscv",
|
||||
"simple/riseup",
|
||||
"simple/roadmapdotsh",
|
||||
"simple/roamresearch",
|
||||
"simple/roblox",
|
||||
"simple/robloxstudio",
|
||||
@ -11799,6 +11880,7 @@
|
||||
"simple/rubyonrails",
|
||||
"simple/rubysinatra",
|
||||
"simple/ruff",
|
||||
"simple/rundeck",
|
||||
"simple/runkeeper",
|
||||
"simple/runkit",
|
||||
"simple/rust",
|
||||
@ -11807,6 +11889,7 @@
|
||||
"simple/s7airlines",
|
||||
"simple/sabanci",
|
||||
"simple/safari",
|
||||
"simple/sage",
|
||||
"simple/sahibinden",
|
||||
"simple/sailfishos",
|
||||
"simple/salesforce",
|
||||
@ -11815,6 +11898,7 @@
|
||||
"simple/samsungpay",
|
||||
"simple/sandisk",
|
||||
"simple/sanfranciscomunicipalrailway",
|
||||
"simple/sanity",
|
||||
"simple/saopaulometro",
|
||||
"simple/sap",
|
||||
"simple/sass",
|
||||
@ -11848,6 +11932,7 @@
|
||||
"simple/semanticuireact",
|
||||
"simple/semanticweb",
|
||||
"simple/semaphoreci",
|
||||
"simple/semrush",
|
||||
"simple/semver",
|
||||
"simple/sencha",
|
||||
"simple/sendinblue",
|
||||
@ -11863,6 +11948,7 @@
|
||||
"simple/sfml",
|
||||
"simple/shadow",
|
||||
"simple/shanghaimetro",
|
||||
"simple/sharex",
|
||||
"simple/sharp",
|
||||
"simple/shazam",
|
||||
"simple/shell",
|
||||
@ -11954,6 +12040,7 @@
|
||||
"simple/speakerdeck",
|
||||
"simple/spectrum",
|
||||
"simple/speedtest",
|
||||
"simple/speedypage",
|
||||
"simple/spinnaker",
|
||||
"simple/spinrilla",
|
||||
"simple/splunk",
|
||||
@ -11973,6 +12060,7 @@
|
||||
"simple/squareenix",
|
||||
"simple/squarespace",
|
||||
"simple/ssrn",
|
||||
"simple/sst",
|
||||
"simple/stackbit",
|
||||
"simple/stackblitz",
|
||||
"simple/stackedit",
|
||||
@ -11984,6 +12072,7 @@
|
||||
"simple/stadia",
|
||||
"simple/staffbase",
|
||||
"simple/standardjs",
|
||||
"simple/standardresume",
|
||||
"simple/starbucks",
|
||||
"simple/stardock",
|
||||
"simple/starlingbank",
|
||||
@ -12014,7 +12103,9 @@
|
||||
"simple/streamlit",
|
||||
"simple/stripe",
|
||||
"simple/strongswan",
|
||||
"simple/stryker",
|
||||
"simple/stubhub",
|
||||
"simple/studio3t",
|
||||
"simple/styledcomponents",
|
||||
"simple/stylelint",
|
||||
"simple/styleshare",
|
||||
@ -12022,6 +12113,7 @@
|
||||
"simple/subaru",
|
||||
"simple/sublimetext",
|
||||
"simple/substack",
|
||||
"simple/subtitleedit",
|
||||
"simple/subversion",
|
||||
"simple/suckless",
|
||||
"simple/sumologic",
|
||||
@ -12035,6 +12127,7 @@
|
||||
"simple/suzuki",
|
||||
"simple/svelte",
|
||||
"simple/svg",
|
||||
"simple/svgdotjs",
|
||||
"simple/svgo",
|
||||
"simple/swagger",
|
||||
"simple/swarm",
|
||||
@ -12090,9 +12183,11 @@
|
||||
"simple/testcafe",
|
||||
"simple/testin",
|
||||
"simple/testinglibrary",
|
||||
"simple/testrail",
|
||||
"simple/tether",
|
||||
"simple/textpattern",
|
||||
"simple/tga",
|
||||
"simple/thangs",
|
||||
"simple/thealgorithms",
|
||||
"simple/theconversation",
|
||||
"simple/theirishtimes",
|
||||
@ -12112,15 +12207,18 @@
|
||||
"simple/threema",
|
||||
"simple/thumbtack",
|
||||
"simple/thunderbird",
|
||||
"simple/thurgauerkantonalbank",
|
||||
"simple/thymeleaf",
|
||||
"simple/ticketmaster",
|
||||
"simple/tidal",
|
||||
"simple/tiddlywiki",
|
||||
"simple/tide",
|
||||
"simple/tidyverse",
|
||||
"simple/tietoevry",
|
||||
"simple/tiktok",
|
||||
"simple/tile",
|
||||
"simple/timescale",
|
||||
"simple/tina",
|
||||
"simple/tinder",
|
||||
"simple/tinyletter",
|
||||
"simple/tistory",
|
||||
@ -12129,6 +12227,7 @@
|
||||
"simple/tnt",
|
||||
"simple/todoist",
|
||||
"simple/toggl",
|
||||
"simple/toggltrack",
|
||||
"simple/tokyometro",
|
||||
"simple/toml",
|
||||
"simple/tomorrowland",
|
||||
@ -12152,6 +12251,7 @@
|
||||
"simple/trello",
|
||||
"simple/trendmicro",
|
||||
"simple/treyarch",
|
||||
"simple/trilium",
|
||||
"simple/triller",
|
||||
"simple/trino",
|
||||
"simple/tripadvisor",
|
||||
@ -12170,6 +12270,7 @@
|
||||
"simple/tui",
|
||||
"simple/tumblr",
|
||||
"simple/tunein",
|
||||
"simple/turbo",
|
||||
"simple/turborepo",
|
||||
"simple/turbosquid",
|
||||
"simple/turkishairlines",
|
||||
@ -12194,6 +12295,7 @@
|
||||
"simple/uikit",
|
||||
"simple/ulule",
|
||||
"simple/umbraco",
|
||||
"simple/uml",
|
||||
"simple/unacademy",
|
||||
"simple/underarmour",
|
||||
"simple/underscoredotjs",
|
||||
@ -12253,6 +12355,7 @@
|
||||
"simple/virtualbox",
|
||||
"simple/virustotal",
|
||||
"simple/visa",
|
||||
"simple/visualbasic",
|
||||
"simple/visualstudio",
|
||||
"simple/visualstudiocode",
|
||||
"simple/vite",
|
||||
@ -12269,6 +12372,7 @@
|
||||
"simple/volkswagen",
|
||||
"simple/volvo",
|
||||
"simple/vonage",
|
||||
"simple/vorondesign",
|
||||
"simple/vowpalwabbit",
|
||||
"simple/vox",
|
||||
"simple/vsco",
|
||||
@ -12285,6 +12389,7 @@
|
||||
"simple/wakatime",
|
||||
"simple/walkman",
|
||||
"simple/wallabag",
|
||||
"simple/walletconnect",
|
||||
"simple/walmart",
|
||||
"simple/wantedly",
|
||||
"simple/wappalyzer",
|
||||
@ -12313,6 +12418,7 @@
|
||||
"simple/webrtc",
|
||||
"simple/webstorm",
|
||||
"simple/webtoon",
|
||||
"simple/webtrees",
|
||||
"simple/wechat",
|
||||
"simple/wegame",
|
||||
"simple/weightsandbiases",
|
||||
@ -12326,6 +12432,7 @@
|
||||
"simple/wii",
|
||||
"simple/wiiu",
|
||||
"simple/wikidata",
|
||||
"simple/wikidotgg",
|
||||
"simple/wikidotjs",
|
||||
"simple/wikimediacommons",
|
||||
"simple/wikipedia",
|
||||
@ -12334,6 +12441,7 @@
|
||||
"simple/winamp",
|
||||
"simple/windicss",
|
||||
"simple/windows",
|
||||
"simple/windows10",
|
||||
"simple/windows11",
|
||||
"simple/windows95",
|
||||
"simple/windowsterminal",
|
||||
@ -12423,6 +12531,7 @@
|
||||
"simple/zillow",
|
||||
"simple/zincsearch",
|
||||
"simple/zingat",
|
||||
"simple/zod",
|
||||
"simple/zoho",
|
||||
"simple/zoiper",
|
||||
"simple/zomato",
|
||||
|
@ -40,6 +40,9 @@
|
||||
{
|
||||
"$ref": "plugins/privacy.json"
|
||||
},
|
||||
{
|
||||
"$ref": "plugins/projects.json"
|
||||
},
|
||||
{
|
||||
"$ref": "plugins/search.json"
|
||||
},
|
||||
|
@ -24,8 +24,7 @@
|
||||
"concurrency": {
|
||||
"title": "Concurrency (number of CPUs)",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#+optimize.concurrency",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
"type": "number"
|
||||
},
|
||||
"cache": {
|
||||
"title": "Enable caching",
|
||||
|
@ -24,8 +24,7 @@
|
||||
"concurrency": {
|
||||
"title": "Concurrency (number of CPUs)",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/ensuring-data-privacy/#+privacy.concurrency",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
"type": "number"
|
||||
},
|
||||
"assets": {
|
||||
"title": "Process external assets",
|
||||
|
48
docs/schema/plugins/projects.json
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft-07/schema",
|
||||
"title": "Built-in projects plugin",
|
||||
"oneOf": [
|
||||
{
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#built-in-projects-plugin",
|
||||
"enum": [
|
||||
"projects"
|
||||
]
|
||||
},
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"projects": {
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#built-in-projects-plugin",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"title": "Enable plugin",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#+projects.enabled",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"concurrency": {
|
||||
"title": "Concurrency (number of CPUs)",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#+projects.concurrency",
|
||||
"type": "number"
|
||||
},
|
||||
"projects": {
|
||||
"title": "Enable projects",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#+projects.projects",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
"projects_dir": {
|
||||
"title": "Projects directory",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/building-an-optimized-site/#+projects.projects_dir",
|
||||
"type": "string",
|
||||
"default": "projects"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
]
|
||||
}
|
@ -24,8 +24,7 @@
|
||||
"concurrency": {
|
||||
"title": "Concurrency (number of CPUs)",
|
||||
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#+social.concurrency",
|
||||
"type": "number",
|
||||
"default": 1
|
||||
"type": "number"
|
||||
},
|
||||
"cards": {
|
||||
"title": "Social cards",
|
||||
|
@ -9,7 +9,116 @@ further useful automatic optimization techniques.
|
||||
|
||||
## Configuration
|
||||
|
||||
### Built-in optimize plugin :material-alert-decagram:{ .mdx-pulse title="Added on January 21, 2023" }
|
||||
### Built-in projects plugin :material-alert-decagram:{ .mdx-pulse title="Added on July 29, 2023" }
|
||||
|
||||
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
|
||||
[:octicons-tag-24: insiders-4.38.0][Insiders] ·
|
||||
:octicons-cpu-24: Plugin ·
|
||||
:octicons-beaker-24: Experimental
|
||||
|
||||
The built-in projects plugin allows to split your documentation into multiple
|
||||
distinct MkDocs projects, __build them concurrently__ and
|
||||
__serve them together__. Add the following to `mkdocs.yml`:
|
||||
|
||||
``` yaml
|
||||
plugins:
|
||||
- projects
|
||||
```
|
||||
|
||||
Next, create a folder called `projects` in your root directory which will
|
||||
contain all projects. For example, if we want to build a project with two
|
||||
additional languages, we can use:
|
||||
|
||||
``` { .sh .no-copy }
|
||||
.
|
||||
├─ projects/
|
||||
│ ├─ de/
|
||||
│ │ ├─ docs/
|
||||
│ │ └─ mkdocs.yml
|
||||
│ └─ fr/
|
||||
│ ├─ docs/
|
||||
│ └─ mkdocs.yml
|
||||
└─ mkdocs.yml
|
||||
```
|
||||
|
||||
If you now invoke `mkdocs serve` and change a file in one of the projects,
|
||||
the projects plugin makes sure that MkDocs will also reload those files. Note
|
||||
that the projects are currently entirely separate, which means they will have
|
||||
separate search indexes and sitemaps. We're happy to receive feedback on this
|
||||
plugin and learn about your requirements to make it better, as we plan to add
|
||||
support for merging and hoisting files.
|
||||
[Create a discussion to share your thoughts!][discussion]
|
||||
|
||||
[discussion]: https://github.com/squidfunk/mkdocs-material/discussions
|
||||
|
||||
??? info "Use cases for the projects plugin"
|
||||
|
||||
Ideal use cases for the projects plugin are:
|
||||
|
||||
- Building a multi-language site
|
||||
- Building a blog alongside your documentation
|
||||
- Splitting large code bases for better performance
|
||||
|
||||
Note that the plugin is currently experimental. We're releasing it early,
|
||||
so that we can improve it together with our users and make it even more
|
||||
powerful as we discover new use cases.
|
||||
|
||||
The following configuration options are available:
|
||||
|
||||
[`enabled`](#+projects.enabled){ #+projects.enabled }
|
||||
|
||||
: :octicons-milestone-24: Default: `true` – This option specifies whether
|
||||
the plugin is enabled when building your project. If you want to speed up
|
||||
local builds, you can use an [environment variable]:
|
||||
|
||||
``` yaml
|
||||
plugins:
|
||||
- projects:
|
||||
enabled: !ENV [CI, false]
|
||||
```
|
||||
|
||||
[`concurrency`](#+projects.concurrency){ #+projects.concurrency }
|
||||
|
||||
: :octicons-milestone-24: Default: _number of CPUs_ – This option specifies
|
||||
how many CPUs the plugin is allowed to use when building projects.
|
||||
With more CPUs, the plugin can do more work in the same time, thus complete
|
||||
optimization faster. Concurrent processing can be disabled with:
|
||||
|
||||
``` yaml
|
||||
plugins:
|
||||
- projects:
|
||||
concurrency: 1
|
||||
```
|
||||
|
||||
#### Projects
|
||||
|
||||
The following configuration options are available for projects:
|
||||
|
||||
[`projects`](#+projects.projects){ #+projects.projects }
|
||||
|
||||
: :octicons-milestone-24: Default: `true` – This option specifies whether
|
||||
to build nested projects. If you want to switch the plugin off, e.g.
|
||||
for local builds, you can use an [environment variable]:
|
||||
|
||||
``` yaml
|
||||
plugins:
|
||||
- projects:
|
||||
projects: !ENV [CI, false]
|
||||
```
|
||||
|
||||
[`projects_dir`](#+projects.projects_dir){ #+projects.projects_dir }
|
||||
|
||||
: :octicons-milestone-24: Default: `projects` – This option specifies the
|
||||
name of the folder the plugin expects your projects to be stored. While it's
|
||||
usually not necessary to change this option, change it with:
|
||||
|
||||
``` yaml
|
||||
plugins:
|
||||
- projects:
|
||||
projects_dir: path/to/folder
|
||||
```
|
||||
|
||||
### Built-in optimize plugin
|
||||
|
||||
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
|
||||
[:octicons-tag-24: insiders-4.29.0][Insiders] ·
|
||||
|
@ -179,7 +179,7 @@ The following configuration options are available:
|
||||
enabled: !ENV [CI, false]
|
||||
```
|
||||
|
||||
[`concurrency`](#+privacy.concurrency){ #+privacy.concurrency } :material-alert-decagram:{ .mdx-pulse title="Added on February 6, 2023" }
|
||||
[`concurrency`](#+privacy.concurrency){ #+privacy.concurrency }
|
||||
|
||||
: :octicons-milestone-24: Default: _number of CPUs_ – This option specifies
|
||||
how many CPUs the plugin is allowed to use when downloading external assets.
|
||||
@ -547,8 +547,16 @@ const url ="https://polyfill.io/v3/polyfill.min.js"
|
||||
### Custom cookies
|
||||
|
||||
If you've customized the [cookie consent] and added a `custom` cookie, the user
|
||||
will be prompted to accept your custom cookie. Use [additional JavaScript] to
|
||||
check whether the user accepted it:
|
||||
will be prompted to accept or reject your custom cookie. Once the user accepts
|
||||
or rejects the cookie consent, or [changes the settings], the page reloads[^1].
|
||||
Use [additional JavaScript] to query the result:
|
||||
|
||||
[^1]:
|
||||
We reload the page to make interop with custom cookies simpler. If Material
|
||||
for MkDocs would implement a callback-based approach, the author would need
|
||||
to make sure to correctly update all scripts that use cookies. Additionally,
|
||||
the cookie consent is only answered initially, which is why we consider this
|
||||
to be a good trade-off of DX and UX.
|
||||
|
||||
=== ":octicons-file-code-16: `docs/javascripts/consent.js`"
|
||||
|
||||
@ -556,6 +564,8 @@ check whether the user accepted it:
|
||||
var consent = __md_get("__consent")
|
||||
if (consent && consent.custom) {
|
||||
/* The user accepted the cookie */
|
||||
} else {
|
||||
/* The user rejected the cookie */
|
||||
}
|
||||
```
|
||||
|
||||
@ -567,3 +577,4 @@ check whether the user accepted it:
|
||||
```
|
||||
|
||||
[additional JavaScript]: ../customization.md#additional-javascript
|
||||
[changes the settings]: #change-cookie-settings
|
||||
|
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17 16"><path d="m2.155.595 13.75 13.75a.749.749 0 1 1-1.06 1.06l-3.311-3.31-.14.588c-.317 1.332-1.972 1.8-2.94.832L6.25 11.311 2.28 15.28a.749.749 0 1 1-1.06-1.06l3.969-3.97-2.204-2.204c-.968-.968-.5-2.623.832-2.94l.588-.14-3.31-3.311a.749.749 0 1 1 1.06-1.06Zm8.134 10.254L5.651 6.211l-1.486.354a.25.25 0 0 0-.119.42l2.731 2.732.003.003.003.003 2.732 2.731a.25.25 0 0 0 .42-.119ZM11.794.984l3.722 3.722a1.75 1.75 0 0 1-.504 2.826l-1.627.751a1.25 1.25 0 0 0-.355.247.749.749 0 1 1-1.06-1.06c.228-.228.494-.414.787-.549l1.627-.751a.25.25 0 0 0 .072-.404l-3.722-3.722a.25.25 0 0 0-.404.072l-.751 1.627a2.726 2.726 0 0 1-.549.787.749.749 0 1 1-1.06-1.06 1.25 1.25 0 0 0 .247-.355l.751-1.627a1.75 1.75 0 0 1 2.826-.504Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="m1.655.595 13.75 13.75q.22.219.22.53 0 .311-.22.53-.219.22-.53.22-.311 0-.53-.22L.595 1.655q-.22-.219-.22-.53 0-.311.22-.53.219-.22.53-.22.311 0 .53.22ZM.72 14.22l4.5-4.5q.219-.22.53-.22.311 0 .53.22.22.219.22.53 0 .311-.22.53l-4.5 4.5q-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z"/><path d="m5.424 6.146-1.759.419q-.143.034-.183.175-.04.141.064.245l5.469 5.469q.104.104.245.064.141-.04.175-.183l.359-1.509q.072-.302.337-.465.264-.163.567-.091.302.072.465.337.162.264.09.567l-.359 1.509q-.238.999-1.226 1.278-.988.28-1.714-.446L2.485 8.046q-.726-.726-.446-1.714.279-.988 1.278-1.226l1.759-.419q.303-.072.567.091.265.163.337.465.072.302-.091.567-.163.264-.465.336ZM7.47 3.47q.155-.156.247-.355l.751-1.627Q8.851.659 9.75.498q.899-.16 1.544.486l3.722 3.722q.646.645.486 1.544-.161.899-.99 1.282l-1.627.751q-.199.092-.355.247-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53.344-.345.787-.549l1.627-.751q.118-.055.141-.183.023-.128-.069-.221l-3.722-3.722q-.092-.092-.221-.069-.128.023-.183.141l-.751 1.627q-.204.443-.549.787-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z"/></svg>
|
Before Width: | Height: | Size: 777 B After Width: | Height: | Size: 1.2 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 24"><path d="M13.745 2.156a1.751 1.751 0 0 1 2.869-.603l6.333 6.333a1.75 1.75 0 0 1-.604 2.869l-1.895.737a5.26 5.26 0 0 0-1.81 1.18l-.358.358a.749.749 0 1 1-1.06-1.06l.358-.358a6.738 6.738 0 0 1 2.326-1.518l1.896-.738a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.521 1.34a8.663 8.663 0 0 1-2.243 3.265.75.75 0 0 1-1.01-1.11 7.146 7.146 0 0 0 1.855-2.699l.52-1.34ZM16.76 17.07l-.572 2.002a1.75 1.75 0 0 1-2.92.757L9.5 16.061l-5.595 5.594a.749.749 0 1 1-1.06-1.06L8.439 15l-3.768-3.768a1.75 1.75 0 0 1 .757-2.92l2.001-.572-4.584-4.585a.749.749 0 1 1 1.06-1.06l18.75 18.75a.749.749 0 1 1-1.06 1.06ZM8.643 8.953l-2.803.801a.25.25 0 0 0-.108.417l8.597 8.597a.25.25 0 0 0 .417-.108l.801-2.803Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.345 20.595 8.47 14.47q.219-.22.53-.22.311 0 .53.22.22.219.22.53 0 .311-.22.53l-6.125 6.125q-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z"/><path d="m16.72 11.97.358-.358a6.738 6.738 0 0 1 2.326-1.518l1.896-.738a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.521 1.34a8.663 8.663 0 0 1-2.243 3.265.75.75 0 0 1-1.01-1.11 7.132 7.132 0 0 0 1.854-2.699l.521-1.34a1.75 1.75 0 0 1 2.869-.603l6.333 6.333a1.75 1.75 0 0 1-.603 2.869l-1.896.737a5.26 5.26 0 0 0-1.81 1.18l-.358.358a.749.749 0 1 1-1.06-1.06Zm-12.549-.738a1.75 1.75 0 0 1 .757-2.92l3.366-.962.412 1.443-3.366.961a.25.25 0 0 0-.108.417l8.597 8.597a.25.25 0 0 0 .417-.108l.961-3.366 1.443.412-.962 3.366a1.75 1.75 0 0 1-2.92.757Z"/><path d="m3.405 2.095 18.75 18.75q.22.219.22.53 0 .311-.22.53-.219.22-.53.22-.311 0-.53-.22L2.345 3.155q-.22-.219-.22-.53 0-.311.22-.53.219-.22.53-.22.311 0 .53.22Z"/></svg>
|
Before Width: | Height: | Size: 767 B After Width: | Height: | Size: 960 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M2 1v9h10v3c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h7v1Zm13-1c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1h-3v1h-1V8h-1c-.55 0-1-.45-1-1V0Zm-4 11H1v2h2v-1h3v1h5Zm4-6V1h-4v4Zm0 2V6h-3v1ZM4 3H3V2h1Zm0 2H3V4h1Zm0 2H3V6h1Zm7 0V6h-1v1ZM3 8h1v1H3Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M3.5 0A2.5 2.5 0 0 0 1 2.5v9A2.5 2.5 0 0 0 3.5 14h2.75a.75.75 0 0 0 0-1.5H3.5a1 1 0 0 1 0-2h2.75a.75.75 0 0 0 0-1.5H3.5c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8v2.75a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-.75-.75H3.5Z"/><path d="M8 8.058C8 7.023 8.75 6 9.887 6h5.363a.75.75 0 0 1 .75.75v8.5a.75.75 0 0 1-.75.75h-5A2.25 2.25 0 0 1 8 13.75Zm6.5 3.442v-4H9.887c-.07 0-.156.031-.238.125a.663.663 0 0 0-.149.433v3.57c.235-.083.487-.128.75-.128Zm-5 2.25c0 .414.336.75.75.75h4.25V13h-4.25a.75.75 0 0 0-.75.75Z"/></svg>
|
Before Width: | Height: | Size: 341 B After Width: | Height: | Size: 580 B |
1
material/.icons/octicons/repo-clone-24.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.375.375a2.5 2.5 0 0 0-2.5 2.5v15.25a2.5 2.5 0 0 0 2.5 2.5h5.187a.75.75 0 1 0 0-1.5H4.375a1 1 0 0 1-1-1v-1.75a1 1 0 0 1 1-1h5.687a.75.75 0 1 0 0-1.5H4.375c-.356 0-.694.074-1 .208V2.875a1 1 0 0 1 1-1h13.25v5.25a.75.75 0 0 0 1.5 0v-6a.75.75 0 0 0-.75-.75h-14Z"/><path d="M12.375 12.087c0-1.396 1.005-2.712 2.456-2.712h8.044a.75.75 0 0 1 .75.75v12.75a.75.75 0 0 1-.75.75h-7.5a3 3 0 0 1-3-3Zm9.75 5.538v-6.75h-7.294c-.433 0-.956.441-.956 1.212v5.939a2.989 2.989 0 0 1 1.5-.401Zm-8.25 3a1.5 1.5 0 0 0 1.5 1.5h6.75v-3h-6.75a1.5 1.5 0 0 0-1.5 1.5Z"/></svg>
|
After Width: | Height: | Size: 620 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M11 7h1v6c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v2h-1V1H2v9h9Zm2 1V6H7V4h6V2l3 3Zm-2 3H1v2h2v-1h3v1h5ZM4 2v1H3V2Zm0 2v1H3V4Zm0 2v1H3V6ZM3 9V8h1v1Z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75V6a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 3.5 9h3a.75.75 0 0 1 0 1.5h-3a1 1 0 0 0 0 2h3a.75.75 0 0 1 0 1.5h-3A2.5 2.5 0 0 1 1 11.5v-9Z"/><path d="M12.21 13.479a.75.75 0 1 0 1.061 1.061l2.504-2.505a.75.75 0 0 0 0-1.061L13.271 8.47a.75.75 0 0 0-1.061 1.06l1.224 1.225H8.75a.75.75 0 1 0 0 1.5h4.685l-1.225 1.224Z"/></svg>
|
Before Width: | Height: | Size: 277 B After Width: | Height: | Size: 463 B |
1
material/.icons/octicons/repo-pull-24.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M1.875 2.875a2.5 2.5 0 0 1 2.5-2.5h14a.75.75 0 0 1 .75.75v9.125a.75.75 0 0 1-1.5 0V1.875H4.375a1 1 0 0 0-1 1v11.208a2.486 2.486 0 0 1 1-.208h5.937a.75.75 0 1 1 0 1.5H4.375a1 1 0 0 0-1 1v1.75a1 1 0 0 0 1 1h6a.75.75 0 0 1 0 1.5h-6a2.5 2.5 0 0 1-2.5-2.5V2.875Z"/><path d="M18.643 20.484a.749.749 0 1 0 1.061 1.06l3.757-3.757a.75.75 0 0 0 0-1.06l-3.757-3.757a.75.75 0 0 0-1.061 1.06l2.476 2.477H13a.75.75 0 0 0 0 1.5h8.12l-2.477 2.477Z"/></svg>
|
After Width: | Height: | Size: 509 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.51 10.013V7.299c0-.306.248-.554.554-.554h1.911c.306 0 .554.248.554.554v4.968c0 .076-.038.134-.076.191l-.478.478c-.115.115-.115.287 0 .382l.478.478a.246.246 0 0 1 .076.191V16.7a.554.554 0 0 1-.554.554h-1.911a.554.554 0 0 1-.554-.554v-4.968c0-.076.038-.134.076-.191l.478-.478c.115-.115.115-.287 0-.382l-.478-.478a.244.244 0 0 1-.076-.19zM19.127 12a7.127 7.127 0 1 0-14.254 0 7.127 7.127 0 0 0 14.254 0zm2.255 0c0 5.178-4.204 9.363-9.363 9.363-5.178 0-9.363-4.204-9.363-9.363 0-5.178 4.204-9.363 9.363-9.363S21.382 6.822 21.382 12zM.764 12c0 6.21 5.025 11.236 11.236 11.236S23.236 18.21 23.236 12 18.21.764 12 .764.764 5.79.764 12zM0 12C0 5.369 5.369 0 12 0s12 5.369 12 12-5.369 12-12 12S0 18.631 0 12z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12c0 6.628 5.373 12 12 12s12-5.372 12-12c0-6.627-5.373-12-12-12zm-1.162 4.861h2.324c.39 0 .587 0 .736.077a.698.698 0 0 1 .305.304c.076.15.076.344.076.735v6.353c0 .098 0 .145-.013.19a.35.35 0 0 1-.053.113c-.028.038-.066.068-.14.129l-.81.658c-.09.073-.137.111-.154.156a.174.174 0 0 0 0 .121c.017.045.064.08.155.155l.808.658a.764.764 0 0 1 .14.13.349.349 0 0 1 .054.112.753.753 0 0 1 .013.191v3.08c0 .391 0 .586-.076.735a.698.698 0 0 1-.305.306c-.149.076-.345.075-.736.075h-2.324c-.39 0-.588.001-.736-.075a.698.698 0 0 1-.305-.306c-.076-.149-.076-.344-.076-.735V11.67c0-.098 0-.145.013-.19a.347.347 0 0 1 .053-.113c.028-.037.066-.067.14-.129l.81-.658c.09-.074.137-.11.154-.154a.174.174 0 0 0 0-.123c-.017-.045-.064-.08-.155-.155l-.808-.658a.757.757 0 0 1-.14-.13.348.348 0 0 1-.054-.112.722.722 0 0 1-.013-.191v-3.08c0-.391 0-.586.076-.735a.698.698 0 0 1 .305-.304c.149-.076.345-.077.736-.077z"/></svg>
|
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 992 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.835.3H5.165A5.165 5.165 0 0 0 0 5.465v13.07A5.165 5.165 0 0 0 5.165 23.7h13.67A5.165 5.165 0 0 0 24 18.535V5.465A5.165 5.165 0 0 0 18.835.3zm-6.106 16.491h-2.287c-.16 0-.274-.006-.338-.113-.215-.419-.43-.835-.644-1.248a45.137 45.137 0 0 0-.684-1.264 66.961 66.961 0 0 1-.717-1.305h-.016a52.7 52.7 0 0 1-.668 1.288c-.23.429-.459.856-.684 1.28A54.85 54.85 0 0 1 6 16.693c-.044.097-.119.107-.227.107H3.568c-.043 0-.067.017-.072-.026a.166.166 0 0 1 .024-.113l3.107-5.105L3.6 6.438c-.033-.043-.038-.078-.016-.107a.115.115 0 0 1 .097-.04h2.27a.36.36 0 0 1 .145.024.292.292 0 0 1 .096.089c.193.43.408.859.644 1.288.236.429.475.853.716 1.272.241.419.464.843.668 1.272h.016c.213-.44.43-.869.652-1.288.222-.419.447-.84.676-1.264.231-.425.453-.847.668-1.264a.246.246 0 0 1 .064-.106.239.239 0 0 1 .129-.024h2.109a.093.093 0 0 1 .112.067.093.093 0 0 1-.031.094l.001.004-2.995 4.943 3.204 5.249c.021.037.026.08.016.121-.01.036-.047.012-.112.023zm7.681-.42a8.02 8.02 0 0 1-1.626.483 8.63 8.63 0 0 1-1.547.145 5.006 5.006 0 0 1-2.149-.45 3.421 3.421 0 0 1-1.506-1.361 4.348 4.348 0 0 1-.548-2.278 4.202 4.202 0 0 1 .548-2.109 4.018 4.018 0 0 1 1.595-1.545 5.139 5.139 0 0 1 2.737-.572c.086.005.188.013.306.024V5.536c0-.075.032-.113.097-.113h2.028a.086.086 0 0 1 .097.073.096.096 0 0 1 0 .024v9.517c0 .183.008.381.024.596.016.214.03.407.04.579a.163.163 0 0 1-.096.159zm-2.457-5.812c.09.009.179.025.266.048v4.395a1.634 1.634 0 0 1-.354.064 4.965 4.965 0 0 1-.419.016 2.656 2.656 0 0 1-.83-.129 1.714 1.714 0 0 1-.676-.402 1.973 1.973 0 0 1-.451-.708 2.83 2.83 0 0 1-.169-1.031 2.217 2.217 0 0 1 .33-1.272c.213-.316.504-.571.845-.741.35-.173.736-.262 1.127-.258.111.002.221.007.331.018z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.25.3C1.9.3 0 2.2 0 4.55v14.9c0 2.35 1.9 4.25 4.25 4.25h15.5c2.35 0 4.25-1.9 4.25-4.25V4.55C24 2.2 22.1.3 19.75.3Zm14.07 5.13h2.03c.05-.01.09.03.1.07v9.54c0 .18.01.38.02.6.02.21.03.41.04.58 0 .07-.03.13-.1.16-.52.22-1.07.38-1.63.48-.51.09-1.02.14-1.54.14-.74.01-1.48-.14-2.15-.45-.63-.29-1.15-.77-1.51-1.36-.37-.61-.55-1.37-.55-2.28a4.107 4.107 0 0 1 2.14-3.66c.7-.39 1.54-.58 2.53-.58.05 0 .12 0 .21.01s.19.01.31.02V5.54c0-.07.03-.11.1-.11zM3.68 6.3h2.27c.05 0 .1.01.14.02.04.02.07.05.1.09.19.43.41.86.64 1.29.24.43.47.85.72 1.27.24.42.46.84.67 1.27h.02c.21-.44.43-.87.65-1.29.22-.42.45-.84.68-1.26.23-.42.45-.85.67-1.26.01-.04.03-.08.06-.1a.19.19 0 0 1 .13-.02h2.11c.05-.01.1.02.11.07.01.01-.01.05-.03.07l-3 4.95 3.2 5.25c.02.04.03.08.02.12-.01.04-.05.01-.11.02h-2.29c-.16 0-.27-.01-.34-.11-.21-.42-.43-.83-.64-1.25-.21-.41-.44-.83-.68-1.26-.24-.43-.48-.86-.72-1.3h-.02c-.21.43-.44.86-.67 1.29-.23.43-.46.86-.68 1.28-.23.42-.46.85-.69 1.26-.04.1-.12.11-.23.11h-2.2c-.04 0-.07.02-.07-.03a.14.14 0 0 1 .02-.11l3.11-5.1L3.6 6.44c-.03-.04-.04-.08-.02-.1.02-.03.06-.04.1-.04zm13.94 4.23c-.39 0-.78.08-1.13.26-.34.17-.63.42-.85.74-.22.32-.33.75-.33 1.27-.01.35.05.7.17 1.03.1.27.25.51.45.71.19.18.42.32.68.4.27.09.55.13.83.13.15 0 .29-.01.42-.02.13.01.24-.01.36-.05v-4.4a2.558 2.558 0 0 0-.6-.07Z"/></svg>
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/adroll.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12c0-6.01-4.727-10.886-10.886-10.886a10.863 10.863 0 0 0-9.508 5.578L8.914 12c0-2.323 1.958-4.2 4.2-4.2 2.377 0 4.2 1.877 4.2 4.2s-1.836 4.2-4.2 4.2H4.065A4.07 4.07 0 0 0 0 20.266v2.62h13.114C19.232 22.886 24 18.01 24 12"/></svg>
|
After Width: | Height: | Size: 302 B |
1
material/.icons/simple/airbrakedotio.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.815.576 24 23.424h-6.072L10.679.576Zm-6.456 0 1.872 5.929-2.447 7.751c1.038.183 2.09.28 3.144.288.576 0 1.175-.048 1.824-.096l1.151 3.912a28.7 28.7 0 0 1-2.951.169 26.568 26.568 0 0 1-4.32-.361L5.88 23.424H0L8.181.576Z"/></svg>
|
After Width: | Height: | Size: 300 B |
1
material/.icons/simple/airindia.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.21 3.881-2.747 2.13a86.263 86.263 0 0 0 2.07-1.419c-.354.275-2.498 2.084-3.249 2.795a11.045 11.045 0 0 1-2.712 1.822l-.08-.105.047-.05-2.135 1.655.041-.02.08.104a11.033 11.033 0 0 1-2.477 2.127c-.887.534-3.203 2.119-3.562 2.385a97.276 97.276 0 0 0 2.684-2.283c-.815.536-1.545.942-2.162 1.099-1.663.421-3.824.66-7.008.595a23.53 23.53 0 0 0 2.339.383 12.534 12.534 0 0 1 6.068 2.36c1.043.76 1.683 1.415 2.424 1.854a6.09 6.09 0 0 0 2.911.806c.915.004 1.828-.107 2.715-.33a12.108 12.108 0 0 1-2.742-.196c-.8-.17-2.495-.768-2.688-1.742-.105-.535.625-.998 1.439-1.32v-.001c.07-.812.132-1.647.148-2.118.059-1.09.28-2.167.655-3.193v-.001l.132.02c.07 1.09-.022 2.185-.275 3.248a48.873 48.873 0 0 0-.433 1.957 7.901 7.901 0 0 1 1.407-.369 41.504 41.504 0 0 0-.31-1.582 10.975 10.975 0 0 1-.186-3.254l.131-.016c.348 1.036.54 2.118.568 3.21.003.37.029.97.062 1.606l-.121.017c.495-.068.992-.12 1.49-.159-.3-.642-.597-1.263-.788-1.626a10.98 10.98 0 0 1-1.015-3.1l.123-.047c.602.913 1.065 1.91 1.373 2.96.112.408.329 1.096.556 1.793a24.864 24.864 0 0 1 3.301 0c-.986-.384-1.259-.852-1.259-1.255 0-.27.128-.529.262-.76-.011.021-.023.04-.035.06a42.52 42.52 0 0 0-1.35-.926 11.028 11.028 0 0 1-2.42-2.192l.084-.103a11.04 11.04 0 0 1 2.66 1.894c.262.26.696.667 1.163 1.093.03-.048.061-.098.087-.143l1.403-2.454a50.451 50.451 0 0 0-1.91-.166 11.063 11.063 0 0 1-3.19-.713l.021-.13v-.001a11.071 11.071 0 0 1 3.253.335c.43.119 1.189.297 1.946.466l.915-1.6c-.994.149-2.235.347-2.843.473a11.067 11.067 0 0 1-3.267.124l-.013-.131a11.077 11.077 0 0 1 3.23-.506c.639.007 1.947-.04 2.964-.086L24 3.88Zm.586 2.959c-.419.16-3 1.267-3.926 1.729-.99.47-2.043.792-3.127.953l-.047-.123h.002a11.059 11.059 0 0 1 2.992-1.313c1.004-.253 3.683-1.096 4.106-1.246zm-7.074 3.566c1.071.23 2.102.619 3.059 1.152.318.185.84.464 1.398.756l-.136.238a40.823 40.823 0 0 0-1.473-.524 11.052 11.052 0 0 1-2.902-1.501Zm-2.051.529.104.08a11.004 11.004 0 0 1-1.85 2.688c-.72.743-2.552 2.865-2.831 3.215.27-.356 1.879-2.652 2.423-3.531a11.016 11.016 0 0 1 2.154-2.452zm1.667.01a11.01 11.01 0 0 1 2.086 2.508c.304.523.96 1.54 1.504 2.368h-.17a63.419 63.419 0 0 0-1.751-2.062 11.002 11.002 0 0 1-1.776-2.736Zm-1.387.17h.001l.121.052a10.981 10.981 0 0 1-1.098 3.07c-.506.902-1.732 3.42-1.913 3.83.17-.414 1.136-3.043 1.437-4.031a11.01 11.01 0 0 1 1.452-2.92zm-4.88 5.83h.001l-.005.007.004-.007z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
material/.icons/simple/alteryx.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.312 13.2-.014.01-.014.008a1.796 1.796 0 0 1-.943.293C.886 13.5.72 13.34.71 12.9c.01-.504.178-.66.747-.695l.785-.037.035-.002h.034V13.2zm1.429.248a.185.185 0 0 0-.182-.137.37.37 0 0 0-.072.009c-.121.03-.189.038-.282.045-.178.008-.21-.061-.22-.26v-2.732a.24.24 0 0 0-.088-.164l-.017-.012c-.006-.004-.012-.01-.02-.014-.148-.087-.394-.157-.604-.21l-.015-.005a3.437 3.437 0 0 0-1.158-.072c-.12.012-.442.065-.55.102-.032.01-.133.059-.137.155.002.05.058.21.058.21.037.111.076.138.146.153.057.006.18-.02.261-.033a2.726 2.726 0 0 1 .922-.032c.357.055.494.165.494.165v1.06l-.031.001-.762.02c-1.02.032-1.49.436-1.484 1.25-.001.37.115.667.335.858.205.18.506.276.868.276h.001a1.73 1.73 0 0 0 1.122-.404l.033-.026.017.038a.611.611 0 0 0 .423.355 1.172 1.172 0 0 0 .412.031c.117-.016.271-.037.443-.118.095-.045.162-.1.157-.2a2.037 2.037 0 0 0-.07-.309zm11.261.614h-.37a.177.177 0 0 1-.135-.051c-.03-.035-.043-.082-.043-.146v-3.51c-.003-.066.014-.114.048-.146.03-.03.073-.043.132-.043h.335c.063 0 .105.013.138.04.033.028.051.075.05.13l.004.094.003.079.053-.058a1.103 1.103 0 0 1 1.048-.347c.07.013.096.083.09.12 0 .019 0 .033-.002.046l-.056.354a.116.116 0 0 1-.107.107.618.618 0 0 1-.095-.01c-.04-.006-.085-.014-.165-.014-.26 0-.549.171-.742.438l-.006.008v2.712c0 .06-.015.108-.045.142a.174.174 0 0 1-.135.055zm-2.287-2.375h-1.702c.024-.858.351-1.21.89-1.21.524 0 .82.288.82.961 0 .053 0 .187-.008.25zm-.796-1.756c-.953 0-1.67.663-1.67 2.17 0 1.382.647 2.06 1.865 2.06.193 0 .422-.022.64-.067.035-.006.07-.015.105-.023a2.45 2.45 0 0 0 .33-.12c.076-.029.135-.088.139-.161a3.34 3.34 0 0 0-.08-.33c-.03-.073-.096-.119-.163-.115-.023 0-.35.071-.37.077a2.406 2.406 0 0 1-.586.077c-.866 0-1.124-.414-1.124-1.266v-.062h2.27a.143.143 0 0 0 .128-.125l.002-.03c.008-.148.013-.305.013-.43 0-1.047-.508-1.655-1.5-1.655zm5.371 5.712h-.025c-.134 0-.244-.01-.352-.031-.067-.012-.092-.099-.078-.217 0 0 .008-.126.027-.215.017-.09.06-.132.108-.132h.014l.037.002c.021.001.052.005.081.008.066.007.133.014.186.014.442-.005.681-.167.85-.577l.204-.498.02-.053.007-.022-.007-.023-1.363-3.604a.133.133 0 0 1-.008-.047.09.09 0 0 1 .02-.06.09.09 0 0 1 .065-.027h.517c.075 0 .13.04.147.098l.898 2.58.06.174.061-.173.927-2.562a.152.152 0 0 1 .146-.118h.004l.014.001h.428c.035 0 .06.007.078.021a.07.07 0 0 1 .024.055.186.186 0 0 1-.013.066l-1.525 4.09c-.332.911-.752 1.25-1.552 1.25zm6.143-1.59a.223.223 0 0 1-.204-.118l-.814-1.258-.029-.042-.027.042-.814 1.256a.226.226 0 0 1-.206.12l-.013-.002h-.435a.132.132 0 0 1-.083-.024.096.096 0 0 1-.034-.079c0-.036.013-.074.034-.105l1.178-1.789.014-.018-.014-.018-1.086-1.674a.152.152 0 0 1-.027-.082c0-.07.064-.113.126-.113h.408c.089 0 .158.038.188.098l.764 1.16.027.04.026-.04.76-1.153a.2.2 0 0 1 .184-.105h.419c.06 0 .127.043.127.113 0 .025-.01.051-.03.08l-1.085 1.676-.013.018.013.018 1.175 1.785a.184.184 0 0 1 .038.108.099.099 0 0 1-.033.08.138.138 0 0 1-.085.024h-.433l-.016.002zm-17.643.01c-.192 0-.377-.031-.538-.09a.829.829 0 0 1-.347-.216c-.232-.255-.252-.572-.255-.99v-4c0-.023.01-.047.025-.065a1.22 1.22 0 0 1 .527-.34c.013-.005.022-.005.033-.005a.14.14 0 0 1 .099.04c.032.033.048.08.047.14v4.255c.002.221.055.397.152.507.083.092.218.138.389.138.042 0 .088-.003.144-.01a2.09 2.09 0 0 0 .324-.078.156.156 0 0 1 .063-.013c.068 0 .127.048.15.119 0 0 .06.204.068.3.005.084-.07.14-.139.164a2.16 2.16 0 0 1-.742.144zm3.737-.61c-.022-.072-.081-.12-.151-.12a.17.17 0 0 0-.063.013 1.66 1.66 0 0 1-.45.088l-.018.002c-.176 0-.308-.048-.392-.14-.08-.087-.136-.23-.14-.495v-.014l.021-2.106h.862a.185.185 0 0 0 .12-.033c.043-.034.05-.09.048-.12v-.265c.001-.057-.015-.098-.048-.124a.185.185 0 0 0-.113-.03h-.869V8.798c0-.062-.015-.108-.047-.141a.146.146 0 0 0-.099-.04c-.01 0-.02 0-.036.005-.05.019-.186.066-.334.17a1.313 1.313 0 0 0-.156.137.102.102 0 0 0-.023.063l-.02 1.103h-.446a.168.168 0 0 0-.124.047.18.18 0 0 0-.042.128v.242c0 .053-.001.098.039.142.046.042.09.039.142.04h.418l-.04 1.982.001.085c.002.42.022.738.255.995.178.194.503.305.89.307.349 0 .62-.093.745-.144.066-.028.141-.082.138-.165 0-.079-.068-.301-.068-.301z"/></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
material/.icons/simple/amazoniam.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 3.429V20.57c0 .258-.171.429-.429.429H.43C.17 21 0 20.829 0 20.571V3.43C0 3.17.171 3 .429 3H23.57c.258 0 .429.171.429.429ZM.857 20.143h22.286V3.857H.857Zm12.857-5.572h6.429v.858h-6.429ZM19.286 12h2.143v.857h-2.143zm-5.572 0h3.429v.857h-3.429ZM2.143 18.429V11.57q0-.171.128-.3.129-.128.3-.128h.858v-3c0-1.5 1.542-2.7 3.428-2.7s3.429 1.2 3.429 2.7v3h.857a.43.43 0 0 1 .428.428v6.858q0 .171-.128.3-.129.128-.3.128H2.57a.43.43 0 0 1-.428-.428zM3 18h7.714v-1.714H9v-.857h1.714v-1.286H9v-.857h1.714V12H3Zm5.143-3.429c0 .558-.343 1.029-.857 1.2v.943h-.857v-.943a1.248 1.248 0 0 1-.858-1.2c0-.685.6-1.285 1.286-1.285.729 0 1.286.6 1.286 1.285zm-3.857-3.428h5.143v-3c0-.986-1.2-1.843-2.572-1.843-1.371 0-2.571.857-2.571 1.843Zm3 3.429a.43.43 0 0 0-.429-.429.46.46 0 0 0-.428.428.43.43 0 0 0 .428.43c.257 0 .429-.172.429-.43ZM20.57 9.428h.858v.857h-.858zm-6.857 0h4.715v.857h-4.715z"/></svg>
|
After Width: | Height: | Size: 953 B |
1
material/.icons/simple/amazonluna.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.757 15.403a4.58 4.58 0 0 0-.816-.367h-.003c-.044-.015-.087-.025-.13-.038-.508-.155-2.4-.85-3.478-2.812v.002l-1.926-3.334c-.81-1.422-.673-3.685-.585-4.542a4.519 4.519 0 0 0 .04-.324.266.266 0 0 0 .003-.02h-.001c.005-.078.01-.153.01-.231C14.87 1.797 13.3.225 11.36.225S7.848 1.798 7.848 3.737c0 .076.007.153.011.23h-.004l.006.045c.007.09.019.176.032.265.09.836.245 3.187-.606 4.624h.002l-2.758 4.775v-.003l-.032.058-.259.45c-.02.037-.035.077-.056.114-.285.493-.72 1.206-1.198 1.85-.4.54-1.024 1.073-1.637 1.433l.007.002c-.056.028-.114.053-.168.086a2.395 2.395 0 0 0-.863.874 2.425 2.425 0 0 0 .887 3.312c.606.35 1.298.4 1.918.211l-.004.006a30.722 30.722 0 0 1 2.836-.838c1.003-.229 2.488-.285 3.332-.296h.96c4.284.04 6.455 1.858 6.455 1.858l.004-.004c.175.139.355.27.553.384a4.484 4.484 0 0 0 6.128-1.642 4.477 4.477 0 0 0-1.637-6.128zm-5.03 2.267c-.449.774-1.086 1.157-2.144 1.238-1.057.08-1.286.142-3.223.142-1.937 0-2.23-.06-3.223-.142-.992-.083-1.695-.464-2.144-1.238-.448-.774-.41-1.66 0-2.475.411-.816.674-1.446 1.437-2.768.763-1.322 1.067-1.822 1.785-2.814.72-.992 1.249-1.238 2.143-1.238.894 0 1.464.332 2.143 1.238.679.906.872 1.256 1.714 2.715s1.056 1.952 1.507 2.867c.456.915.45 1.7.004 2.475z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/apachestorm.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.95 12.021 2.196.03c3.08.043 4.486-.147 5.866-.79.788-.367 1.333-.858 1.65-1.483.212-.417.243-.591.211-1.184-.096-1.826-1.412-2.807-3.77-2.807-1.775 0-3.558.456-6.276 1.604-.702.296-1.289.526-1.305.51-.064-.063 4.824-4.72 5.773-5.5.895-.734 1.831-1.282 2.722-1.591.694-.242.894-.266 2.235-.269 1.248-.003 1.592.031 2.253.221 3.16.91 5.022 3.453 4.129 5.639-.062.151-.007.172.462.172 1.502 0 3.023.904 3.585 2.131.805 1.76.035 3.89-1.73 4.785-.924.468-1.55.562-4.085.615l-2.356.049-1.27.947-1.271.947 3.43.049 3.43.049-.54.414-3.892 3.008a1411.35 1411.35 0 0 1-4.204 3.243l-.85.649H9.41c-.524 0-.92-.04-.902-.09.018-.05 1.581-1.297 3.474-2.773 4.2-3.275 3.97-3.092 3.97-3.163 0-.032-1.528-.07-3.397-.084l-3.398-.026 1.017-.778c.56-.427 1.86-1.45 2.89-2.274l1.873-1.496 2.643-.037c2.42-.033 2.692-.055 3.218-.25 1.174-.435 1.778-1.195 1.78-2.24.003-.875-.374-1.452-1.23-1.886-.773-.393-1.46-.512-2.963-.512l-1.152-.001.392-.605c.463-.716.62-1.213.619-1.948-.002-.721-.281-1.319-.901-1.93-1.588-1.562-4.46-1.977-6.579-.95-.777.376-3.271 2.348-2.714 2.145.108-.039.793-.093 1.521-.12 2.099-.076 3.333.277 4.357 1.245 1.315 1.243 1.713 3.22.958 4.754-.787 1.597-2.703 2.581-5.658 2.906-.605.066-2.566.097-5.104.079L0 13.395l1.325-1.035c.728-.57 2.104-1.64 3.057-2.38l1.733-1.346h2.197L3.95 12.021z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/apifox.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.975 10.065a10.456 10.456 0 0 0-.456-2.354 4.12 4.12 0 0 1-.364.743 9.42 9.42 0 0 0-3.849-6.264A9.368 9.368 0 0 0 16.982.979a7.35 7.35 0 0 0-.338-.112 7.042 7.042 0 0 1 1.425 3.471c.006.044.011.088.015.133a.06.06 0 0 1 0 .01c.005.045.01.091.013.137v.024a5.249 5.249 0 0 1 .01.137 5.774 5.774 0 0 1 .01.235.194.194 0 0 0 0 .016v.164a7.047 7.047 0 0 1-1.268 4.042 6.335 6.335 0 0 1 .075 2.195 6.177 6.177 0 0 0 1.164-.401 6.184 6.184 0 0 0 .8-.44 6.283 6.283 0 0 1 .243 1.744 6.317 6.317 0 0 1-.07.946 6.239 6.239 0 0 0 1.615-.39c.272-.106.536-.23.79-.373a6.244 6.244 0 0 1 .1 1.118 6.308 6.308 0 0 1-.135 1.298 6.252 6.252 0 0 0 1.906-.38A10.457 10.457 0 0 0 24 10.88a8.6 8.6 0 0 0-.024-.816zm-2.808 5.794a5.685 5.685 0 0 1-.39.012h-.129a6.25 6.25 0 0 0 .198-1.567 6.32 6.32 0 0 0-.04-.705 6.23 6.23 0 0 1-1.944.594 6.027 6.027 0 0 1-.573.05 6.202 6.202 0 0 0 .115-.928 6.477 6.477 0 0 0 .008-.312 6.29 6.29 0 0 0-.142-1.332 6.234 6.234 0 0 1-2.12.776l-.005-.007a6.178 6.178 0 0 0 .111-.886 5.617 5.617 0 0 0 .01-.34c0-.378-.034-.756-.102-1.128a7.057 7.057 0 0 1-5.117 2.188 7.043 7.043 0 0 1-3.247-.788 6.263 6.263 0 0 0 1.294-.685 6.3 6.3 0 0 1-3.573-5.68 6.296 6.296 0 0 1 .102-1.135 6.196 6.196 0 0 1 .302-1.088 6.207 6.207 0 0 1 .484-1.002A6.263 6.263 0 0 1 7.164.88 12.212 12.212 0 0 0 4.48 2.55 12.207 12.207 0 0 0 .328 9.181 12.196 12.196 0 0 0 0 12.001a12.153 12.153 0 0 0 1.49 5.851 6.251 6.251 0 0 1 .445-1.713 11.659 11.659 0 0 0 8.585 6.994 6.236 6.236 0 0 1-.804-1.384 11.008 11.008 0 0 0 3.126.534c.094 0 .188.003.283.003a10.984 10.984 0 0 0 4.867-1.129 6.176 6.176 0 0 1-.724-.478 10.507 10.507 0 0 0 4.32-3.094 10.469 10.469 0 0 0 1.356-2.093 6.258 6.258 0 0 1-1.777.366z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.82 12a5.78 5.78 0 0 0-5.88-5.67c-.29 0-.6.02-.9.05-2.52.37-4.2 2.18-5.13 3.57-.95-1.39-2.64-3.2-5.14-3.57-.3-.03-.6-.05-.9-.05A5.78 5.78 0 0 0 0 12a5.78 5.78 0 0 0 5.87 5.67c.3 0 .6-.02.92-.06 2.52-.36 4.2-2.17 5.14-3.56.95 1.39 2.63 3.2 5.14 3.57.31.03.6.05.91.05A5.78 5.78 0 0 0 23.82 12zM6.48 15.6c-.2.04-.43.04-.63.04A3.77 3.77 0 0 1 2 11.98a3.78 3.78 0 0 1 3.86-3.66c.2 0 .42.02.63.04 2.37.35 3.82 2.67 4.31 3.62-.5.95-1.95 3.3-4.31 3.62zM13 12c.49-.93 1.94-3.27 4.31-3.62.2-.04.42-.04.62-.04A3.76 3.76 0 0 1 21.8 12a3.78 3.78 0 0 1-3.86 3.66c-.2 0-.42-.02-.62-.04-2.36-.35-3.82-2.69-4.31-3.62zm-8.79.59h3.54v-1.16H4.22v1.16zm14.13 0h1.19v-1.16h-1.2v-1.19H17.2v1.2H16v1.15h1.2v1.18h1.15V12.6zM24 7.06c0 .3-.22.51-.53.51a.51.51 0 0 1-.53-.5c0-.28.24-.52.53-.52.31 0 .53.22.53.51zm-.91 0c0 .22.16.4.4.4.22 0 .38-.18.38-.4s-.16-.4-.38-.4c-.24-.02-.4.16-.4.4zm.3.26h-.1V6.8l.2-.01c.09 0 .14.01.18.03.04.02.06.06.06.11 0 .06-.04.1-.11.11.05.02.07.06.09.13l.03.13h-.12c-.02-.02-.02-.07-.04-.13-.02-.05-.04-.07-.11-.07h-.05l-.02.22zm.02-.3h.06c.07 0 .1-.01.1-.07 0-.05-.03-.07-.1-.07h-.07v.14h.01z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.087 6.146c-.3 0-.607.017-.907.069-2.532.367-4.23 2.239-5.18 3.674-.95-1.435-2.648-3.307-5.18-3.674a6.49 6.49 0 0 0-.907-.069C2.648 6.146 0 8.77 0 12s2.656 5.854 5.913 5.854c.3 0 .607-.017.916-.069 2.531-.376 4.23-2.247 5.18-3.683.949 1.436 2.647 3.307 5.18 3.683.299.043.607.069.915.069C21.344 17.854 24 15.23 24 12s-2.656-5.854-5.913-5.854zM6.53 15.734a3.837 3.837 0 0 1-.625.043c-2.148 0-3.889-1.7-3.889-3.777 0-2.085 1.749-3.777 3.898-3.777.208 0 .416.017.624.043 2.39.35 3.847 2.768 4.347 3.734-.508.974-1.974 3.384-4.355 3.734zm11.558.043c-.208 0-.416-.017-.624-.043-2.39-.35-3.856-2.768-4.347-3.734.491-.966 1.957-3.384 4.347-3.734.208-.026.416-.043.624-.043 2.149 0 3.89 1.7 3.89 3.777 0 2.085-1.75 3.777-3.89 3.777zm1.65-4.404v1.134h-1.205v1.182h-1.156v-1.182H16.17v-1.134h1.206V10.19h1.156v1.183h1.206zM4.246 12.498H7.82v-1.125H4.245v1.125z"/></svg>
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 931 B |
1
material/.icons/simple/arstechnica.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zM8.842 15.656H7.745l-.15-.98a3.457 3.457 0 0 1-2.592 1.13c-1.33 0-2.16-.798-2.16-2.044 0-1.828 1.561-2.56 4.636-2.876v-.315c0-.931-.548-1.247-1.396-1.247-.848 0-1.745.283-2.543.632l-.183-1.18c.881-.35 1.712-.615 2.842-.615 1.779 0 2.643.714 2.643 2.36v5.135zm3.191-4.337v4.337H10.67v-7.33h1.097L12 9.824c.515-.831 1.363-1.58 2.576-1.646l.216 1.313c-1.23.05-2.26.865-2.759 1.829zm6.2 4.487a6.017 6.017 0 0 1-2.676-.698l.2-1.296a4.587 4.587 0 0 0 2.592.847c.93 0 1.496-.349 1.496-.964s-.416-.93-1.745-1.246c-1.729-.432-2.41-.948-2.41-2.26 0-1.314.98-2.028 2.593-2.028a5.933 5.933 0 0 1 2.41.498l-.217 1.297a4.687 4.687 0 0 0-2.227-.632c-.83 0-1.263.316-1.263.848s.366.764 1.53 1.063c1.81.466 2.625.981 2.625 2.377s-1.014 2.194-2.908 2.194zM7.479 11.934v1.711c-.615.632-1.479 1.03-2.177 1.03s-1.097-.215-1.097-.98c0-.764.565-1.496 3.274-1.761z"/></svg>
|
After Width: | Height: | Size: 989 B |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.318 8.465V9.59h1.344V8.465zm-6.9.228 2.059 3.412-2.155 3.311h1.14l1.563-2.41 1.46 2.41h1.628l-2.136-3.553 2.056-3.17h-1.125l-1.484 2.264-1.371-2.264zm-.096 6.723H9.32v.004zM2.25 10.314a5.039 5.039 0 0 0-1.814.348v.926a3.32 3.32 0 0 1 1.593-.445c.59 0 .883.258.883.775v.455h-.355c-.822.001-1.453.152-1.893.451a1.456 1.456 0 0 0-.663 1.278 1.382 1.382 0 0 0 .408 1.033 1.48 1.48 0 0 0 1.065.398c.517 0 .998-.217 1.443-.652l.004.002h.053c.159.435.512.652 1.066.652a2.757 2.757 0 0 0 .754-.129l-.031-.756a.803.803 0 0 1-.176.022c-.254 0-.377-.192-.377-.584v-2.215c.001-1.038-.653-1.559-1.961-1.559zm6.646 0c-.713 0-1.246.353-1.591 1.057v-.941H5.959v4.99h1.346v-3.178c.336-.535.768-.805 1.306-.805a1.607 1.607 0 0 1 .534.104v-1.2a1.408 1.408 0 0 0-.249-.027zm7.422.116v4.994l1.344-.004v-4.99zm2.52 0 1.902 4.99h1.332L24 10.43h-.965l-1.385 3.6-1.396-3.6zM2.596 13.145h.322v1.013c-.331.305-.651.46-.982.455a.643.643 0 0 1-.643-.65c0-.543.433-.818 1.303-.818z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3.842 0a1.004 1.004 0 0 0-.922.608c-.153.369-.044.627.294 1.111l6.919 8.36-1.023 1.106a1.04 1.04 0 0 0 .003 1.423l1.23 1.313-5.44 6.444c-.28.3-.453.823-.297 1.199a1.025 1.025 0 0 0 .959.635.913.913 0 0 0 .689-.34l5.783-6.126 7.49 8.005a.853.853 0 0 0 .684.26.958.958 0 0 0 .877-.615c.158-.377-.017-.75-.306-1.14L13.73 13.9l1.064-1.13a.963.963 0 0 0 .009-1.317L4.633.465S4.26.01 3.867 0zm0 .272h.017c.218.005.487.272.564.364l.005.006.005.005 10.17 10.99a.692.692 0 0 1-.008.946l-1.066 1.133-1.498-1.772-8.6-10.39c-.328-.472-.352-.619-.26-.841a.73.73 0 0 1 .671-.44Zm14.341 1.57a.877.877 0 0 0-.655.242l-5.696 6.158 1.694 1.832 5.309-6.514c.325-.433.479-.66.325-1.029a1.12 1.12 0 0 0-.977-.689zm-7.655 12.282 1.318 1.414-5.786 6.13a.65.65 0 0 1-.496.26.752.752 0 0 1-.706-.467c-.112-.269.036-.687.244-.909l.005-.005.005-.006z"/></svg>
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 902 B |
1
material/.icons/simple/authelia.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.624.191c-.324.023-.655.011-.97.073-2.883.568-5.244 2.01-7.074 4.3C1.42 6.014.624 7.652.243 9.48c-.25 1.2-.294 2.402-.191 3.627.237 2.832 1.377 5.233 3.345 7.26.332.341.775.348 1.1.055.39-.35.442-.735.124-1.149-.271-.353-.588-.671-.85-1.03-1.625-2.208-2.343-4.674-2.04-7.411.305-2.773 1.6-5.022 3.723-6.795 1.517-1.267 3.288-1.983 5.248-2.24.272-.037.552-.083.803-.186.32-.132.478-.564.4-.923-.085-.384-.355-.483-.702-.477-.194.004-.387 0-.58 0v-.02zm4.639 3.41c-.312-.008-.582.197-.722.512-.176.4-.027.854.367 1.096.123.075.256.134.385.199 1.485.737 2.619 1.834 3.319 3.342.257.554.423 1.15.636 1.726.162.441.509.656.92.579.425-.08.67-.392.668-.952-.016-.081-.035-.261-.082-.435-.535-1.97-1.579-3.616-3.21-4.847-.598-.453-1.28-.812-1.958-1.14a.782.782 0 0 0-.323-.08zm-6.939.23a.903.903 0 0 0-.492.144c-.648.388-1.325.764-1.88 1.266-2.323 2.098-3.262 4.755-2.905 7.84.55 4.74 4.6 8.021 8.9 7.904l.868-.001a.99.99 0 0 0 .109-.007c2.491-.312 4.58-1.387 6.146-3.36.488-.615.86-1.336 1.2-2.049.248-.523-.032-.982-.56-1.12-.38-.1-.72.112-.974.509-.473.737-.89 1.54-1.491 2.16-1.479 1.52-3.322 2.28-5.466 2.199-2.405-.091-4.337-1.127-5.758-3.056-1.088-1.475-1.49-3.168-1.32-4.984.184-1.987 1.038-3.644 2.57-4.927.423-.354.908-.633 1.365-.946.458-.314.568-.715.314-1.15-.153-.262-.371-.413-.626-.422zm3.417 2.167C8.724 6.056 6.02 8.625 6 12c-.02 3.29 2.712 6.017 6 6.02 3.339.005 6.078-2.618 6.062-6.025-.014-3.545-2.87-6.084-6.028-5.995a5.726 5.726 0 0 0-.293-.002zm10.752 1.164a.91.91 0 0 0-.137.002c-.404.033-.642.295-.74.646-.053.187-.01.432.064.62a9.546 9.546 0 0 1 .648 3.753 9.994 9.994 0 0 1-1.32 4.76c-1.617 2.84-4.04 4.53-7.243 5.12-.343.063-.694.095-1.033.174-.434.103-.688.473-.641.882.044.38.34.646.769.684.132.012.265.002.398.002l-.001-.003c.145 0 .29.005.434-.002.084-.004.167-.028.25-.04 1.847-.282 3.518-.99 5.037-2.068 1.708-1.213 3.001-2.78 3.897-4.665 1.1-2.317 1.375-4.752.906-7.264-.13-.694-.354-1.376-.584-2.046-.125-.362-.389-.537-.704-.555zm-10.449.862c.13 0 .261.016.392.05.708.18 1.16.787 1.158 1.553.027.504-.211.888-.588 1.183-.207.163-.236.32-.176.558.264 1.052.52 2.107.763 3.164.13.568-.019.872-.522 1.174-.675.404-1.666.354-2.29-.13-.315-.244-.427-.573-.331-.966.252-1.031.494-2.064.762-3.09.086-.33.041-.554-.225-.794-.581-.523-.682-1.253-.317-1.903a1.57 1.57 0 0 1 1.374-.8z"/></svg>
|
After Width: | Height: | Size: 2.3 KiB |
1
material/.icons/simple/bentoml.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.3 11a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zm-4.4 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2zM5.67 0a1.2 1.2 0 0 0-.815.318L.386 4.444A1.2 1.2 0 0 0 0 5.325V22.4A1.6 1.6 0 0 0 1.6 24h17.048a1.2 1.2 0 0 0 .911-.42l4.152-4.843a1.2 1.2 0 0 0 .289-.781V1.6A1.6 1.6 0 0 0 22.4 0ZM6 .6h16.2a1.2 1.2 0 0 1 1.2 1.2v15.8a1.6 1.6 0 0 1-1.6 1.6H6A1.2 1.2 0 0 1 4.8 18V1.8A1.2 1.2 0 0 1 6 .6Z"/></svg>
|
After Width: | Height: | Size: 462 B |
1
material/.icons/simple/bisecthosting.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.083 5.023 13.02.302a2.717 2.717 0 0 0-2.488 0L1.917 4.789A2.06 2.06 0 0 0 .805 6.623l.006 10.76c0 .773.426 1.476 1.112 1.834l8.59 4.479c.38.198.813.304 1.245.304v-.002c.432 0 .862-.108 1.244-.306l9.083-4.735a2.053 2.053 0 0 0 1.11-1.835V6.857a2.06 2.06 0 0 0-1.112-1.834zm.222 12.103c.003.441-.24.847-.632 1.05l-9.085 4.736a1.81 1.81 0 0 1-1.664 0l-8.59-4.48a1.184 1.184 0 0 1-.637-1.048L1.691 6.625c0-.44.246-.844.636-1.048l8.615-4.491a1.828 1.828 0 0 1 1.666 0l9.063 4.725c.39.205.634.608.634 1.048v10.267zM4.666 9.2v1.088L9.86 9.44V7.954L4.666 9.2zm4.111-.54.604-.132v.552l-.604.106V8.66zm-3.455.76 2.55-.562v.494l-2.55.46V9.42zm4.541 6.74v-1.486l-5.195-.85v1.088l5.195 1.248zm-1.986-.904-2.553-.562v-.395l2.553.46v.497zm1.506.33-.602-.132v-.526l.602.106v.552zm11.583-8.827-2.33-1.214-1.853.694V4.58L13.69 2.966a4.133 4.133 0 0 0-3.827 0l-6.83 3.561a.298.298 0 0 0-.16.26l.007 10.401c0 .11.06.21.16.26l6.805 3.547c1.2.626 2.627.626 3.827 0l3.1-1.614v-1.66l1.852.694 2.348-1.225a.298.298 0 0 0 .16-.262l-.006-9.908a.288.288 0 0 0-.16-.26zM4.398 10.871V8.75l5.541-1.494a.23.23 0 0 1 .29.22V9.83c0 .204-.152.38-.356.402l-5.475.64v-.001zm5.477 3.01a.404.404 0 0 1 .359.4v2.355a.23.23 0 0 1-.29.22l-5.542-1.494v-2.12l5.473.64zm3.137 6.962s.428-.612.48-1.74V14.62s.042-1.68-1.334-2.601c1.376-.92 1.336-2.6 1.336-2.6V5.096c0-1.272-.488-1.975-.488-1.975l3.307 1.725v5.061c0 .076.06.14.136.146l2.14.154a.15.15 0 0 0 .16-.148V6.12l1.967 1.02v9.684L18.75 17.85v-4.247a.15.15 0 0 0-.16-.148l-2.14.156a.148.148 0 0 0-.137.148v5.366l-3.3 1.72v-.002z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
material/.icons/simple/bombardier.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 10.422h1.232c.588 0 .859.308.859.785 0 .336-.15.634-.495.7v.009c.411.047.588.392.588.71 0 .54-.261.933-.942.933H0v-3.137zm.821 1.233h.197c.168 0 .252-.15.252-.327 0-.177-.094-.327-.252-.327H.82v.654zm0 1.325h.234c.15 0 .29-.14.29-.392 0-.243-.14-.383-.29-.383H.82v.775zm2.708-2.614c.84 0 1.13.458 1.13 1.634s-.29 1.634-1.13 1.634-1.12-.458-1.12-1.634.298-1.634 1.12-1.634m0 2.717c.252 0 .28-.234.28-1.083s-.019-1.083-.28-1.083-.28.234-.28 1.083.028 1.083.28 1.083m1.437-2.66h1.176l.336 1.866h.01l.336-1.867H8v3.137h-.756v-2.334h-.01l-.457 2.334H6.19l-.439-2.334h-.009v2.334h-.756c-.019.01-.019-3.137-.019-3.137zm3.36 0h1.242c.588 0 .85.307.85.784 0 .336-.15.634-.495.7v.009c.41.047.588.392.588.71 0 .54-.261.933-.943.933H8.327v-3.137zm.832 1.232h.196c.158 0 .26-.15.26-.327 0-.177-.092-.327-.26-.327h-.196v.654zm0 1.325h.233c.15 0 .29-.14.29-.392 0-.243-.14-.383-.29-.383h-.233v.775zm2.175-2.558h1.026l.775 3.137h-.877l-.084-.55h-.654l-.084.55h-.877l.775-3.137zm.513.645-.233 1.334h.457l-.224-1.334zm1.503-.645h1.279c.625 0 .859.355.859.84 0 .411-.16.691-.542.747v.01c.392.037.514.29.514.7v.261c0 .159 0 .364.046.439a.18.18 0 0 0 .094.093v.047h-.878c-.084-.159-.084-.457-.084-.598v-.205c0-.355-.065-.448-.261-.448h-.215v1.25h-.812v-3.136zm.812 1.335h.159c.233 0 .345-.15.345-.382 0-.252-.103-.364-.345-.364h-.159v.746zm1.68-1.335h1.186c.943 0 .99.747.99 1.578s-.047 1.568-.99 1.568H15.84v-3.146zm.822 2.558h.158c.327 0 .355-.14.355-.98 0-.85-.037-.98-.355-.98h-.158v1.96zm1.69-2.558h.82v3.137h-.82v-3.137zm1.185 0h1.867v.663H20.35v.542h.98v.644h-.98v.625h1.083v.663h-1.895v-3.137zm2.203 0h1.279c.625 0 .859.355.859.84 0 .411-.159.691-.532.747v.01c.392.037.513.29.513.7v.261c0 .159 0 .364.047.439a.18.18 0 0 0 .093.093v.047h-.877c-.084-.159-.084-.457-.084-.598v-.205c0-.355-.066-.448-.262-.448h-.215v1.25h-.812l-.009-3.136zm.821 1.335h.16c.232 0 .345-.15.345-.382 0-.252-.103-.364-.346-.364h-.159v.746z"/></svg>
|
After Width: | Height: | Size: 1.9 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.051 10.555a.686.686 0 0 0-.588.34c-.11.194-.426.742-.54.936a.27.27 0 0 0 .236.409h1.873l-.336.582a.271.271 0 0 1-.24.142h-.29c-.097 0-.137-.105-.103-.168.035-.063.112-.194.112-.194h-1.698l-.246.426c-.115.2.038.416.233.416h3.173a.69.69 0 0 0 .598-.349c.121-.21.405-.706.528-.916a.27.27 0 0 0-.228-.42h-1.873l.346-.6a.274.274 0 0 1 .231-.125h.292c.096 0 .136.104.106.159a14.05 14.05 0 0 1-.118.204h1.696l.255-.44a.273.273 0 0 0-.24-.402h-3.179m-2.94.65a1307.162 1307.217 0 0 0-.936 1.622.275.275 0 0 1-.236.137h-.295c-.095 0-.138-.104-.102-.168l.94-1.629a.275.275 0 0 1 .236-.133h.295a.113.113 0 0 1 .098.171m1.597-.65h-3.17a.695.695 0 0 0-.593.337l-1.238 2.145c-.11.19.04.407.236.407h3.176c.256 0 .48-.145.593-.338l1.236-2.143a.272.272 0 0 0-.24-.408m-5.723.65-.243.42a.266.266 0 0 1-.233.134h-.9l.419-.725h.858c.089 0 .14.096.099.17M6.29 12.41l-.243.42a.266.266 0 0 1-.233.134h-.9l.42-.724h.857c.089 0 .14.095.099.17m1.902-1.855H4.61l-1.392 2.41H0v.48l6.599-.001c.24 0 .468-.125.595-.344l.41-.713c.086-.148-.005-.338-.163-.387a.698.698 0 0 0 .583-.337l.402-.698a.272.272 0 0 0-.234-.41m9.986 0-1.667 2.889h4.042l.277-.48h-2.346l.418-.724h2.346l.277-.48H19.18l.418-.726H24v-.479h-5.82z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.052 10.589a.69.69 0 0 0-.588.332l-.54.915c-.114.19.036.399.235.399h1.873l-.336.568a.274.274 0 0 1-.24.139h-.29a.113.113 0 0 1-.102-.164c.035-.062.112-.19.112-.19h-1.699l-.246.418c-.115.194.038.405.232.405h3.174a.692.692 0 0 0 .598-.34c.12-.206.405-.69.527-.896.123-.205-.032-.41-.228-.41h-1.873l.347-.586a.276.276 0 0 1 .231-.123h.292c.095 0 .135.102.105.155-.03.053-.117.199-.117.199h1.696l.254-.43c.094-.16-.023-.392-.24-.392h-3.18.003zm-1.344 0H9.537c-.23 0-.47.12-.592.329-.124.207-1.13 1.911-1.24 2.096-.109.185.042.397.236.397h3.177c.255 0 .48-.141.592-.33.111-.188 1.13-1.915 1.237-2.094.106-.18-.03-.4-.24-.4v.002zm-1.598.636c-.045.076-.89 1.505-.936 1.585a.276.276 0 0 1-.236.134h-.295c-.094 0-.138-.102-.102-.163l.94-1.592a.274.274 0 0 1 .235-.13h.296c.085 0 .143.091.097.167l.001-.001zm-2.919-.636H4.61l-1.39 2.354H0v.47h6.598a.69.69 0 0 0 .596-.336l.41-.697c.085-.145-.004-.331-.164-.379a.703.703 0 0 0 .583-.329c.115-.193.298-.506.402-.682a.266.266 0 0 0-.234-.4v-.001zM6.29 12.402l-.243.411a.267.267 0 0 1-.233.132h-.9l.419-.708h.857a.11.11 0 0 1 .099.166zm.694-1.178-.242.41a.266.266 0 0 1-.233.131h-.9l.418-.708h.858c.09 0 .14.093.098.167h.001zm11.194-.635-1.667 2.823h4.042l.276-.469h-2.345l.418-.707h2.345l.278-.47H19.18l.418-.709H24v-.468h-5.822z"/></svg>
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/brevo.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0zM7.2 4.8h5.747c2.34 0 3.895 1.406 3.895 3.516 0 1.022-.348 1.862-1.09 2.588C17.189 11.812 18 13.22 18 14.785c0 2.86-2.64 5.016-6.164 5.016H7.199v-15zm2.085 1.952v5.537h.07c.233-.432.858-.796 2.249-1.226 2.039-.659 3.037-1.52 3.037-2.655 0-.998-.766-1.656-1.924-1.656H9.285zm4.87 5.266c-.766.385-1.67.748-2.76 1.11-1.229.387-2.11 1.386-2.11 2.407v2.315h2.365c2.387 0 4.149-1.34 4.149-3.155 0-1.067-.625-2.087-1.645-2.677z"/></svg>
|
After Width: | Height: | Size: 574 B |
1
material/.icons/simple/bspwm.svg
Normal file
After Width: | Height: | Size: 7.5 KiB |
1
material/.icons/simple/caddy.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M11.094.47c-.842 0-1.696.092-2.552.288a11.37 11.37 0 0 0-4.87 2.423 10.632 10.632 0 0 0-2.36 2.826A10.132 10.132 0 0 0 .305 8.582c-.398 1.62-.4 3.336-.043 5.048.085.405.183.809.31 1.212a11.85 11.85 0 0 0 1.662 3.729 3.273 3.273 0 0 0-.086.427 3.323 3.323 0 0 0 2.848 3.71 3.279 3.279 0 0 0 1.947-.346c1.045.51 2.17.864 3.339 1.04a11.66 11.66 0 0 0 4.285-.155 11.566 11.566 0 0 0 4.936-2.485 10.643 10.643 0 0 0 2.352-2.894 11.164 11.164 0 0 0 1.356-4.424 11.214 11.214 0 0 0-.498-4.335c.175-.077.338-.175.486-.293a.444.444 89.992 0 0 .001 0c.402-.322.693-.794.777-1.342a2.146 2.146 0 0 0-1.79-2.434 2.115 2.115 0 0 0-1.205.171c-.038-.043-.078-.086-.113-.13a11.693 11.693 0 0 0-3.476-2.93 13.348 13.348 0 0 0-1.76-.81 13.55 13.55 0 0 0-2.06-.613 12.121 12.121 0 0 0-2.48-.258Zm.714.328a9.76 9.76 0 0 1 1.028.042 9.892 9.892 0 0 1 2.743.639c.984.39 1.89.958 2.707 1.632a10.81 10.81 0 0 1 2.091 2.328c.026.039.048.08.07.12a2.12 2.12 0 0 0-.435 2.646c-.158.114-.97.692-1.634 1.183-.414.308-.733.557-.733.557l.581.68s.296-.276.665-.638c.572-.562 1.229-1.233 1.395-1.403a2.122 2.122 0 0 0 1.907.677 11.229 11.229 0 0 1-.013 4.046 11.41 11.41 0 0 1-1.475 3.897 12.343 12.343 0 0 1-2.079 2.587c-1.19 1.125-2.633 2.022-4.306 2.531a10.826 10.826 0 0 1-3.973.484 11.04 11.04 0 0 1-3.057-.652 3.304 3.304 0 0 0 1.417-2.294 3.275 3.275 0 0 0-.294-1.842c.18-.162.403-.363.656-.6 1.015-.955 2.353-2.303 2.353-2.303l-.47-.599s-1.63.972-2.801 1.728c-.307.198-.573.378-.777.517a3.273 3.273 0 0 0-1.516-.611 3.328 3.328 0 0 0-3.487 2.017 10.323 10.323 0 0 1-.695-1.078A10.92 10.92 0 0 1 .728 14.8a10.35 10.35 0 0 1-.2-1.212c-.164-1.653.103-3.258.629-4.754a12.95 12.95 0 0 1 1.087-2.288c.57-.968 1.248-1.872 2.069-2.656A11.013 11.013 0 0 1 11.808.797Zm-.147 3.257a3.838 3.838 0 0 0-3.82 3.82v2.36h-.94c-.751 0-1.377.625-1.377 1.377v3.8h1.46v-3.718h9.354v6.264H10.02v1.46h6.4c.751 0 1.377-.625 1.377-1.377v-6.43a1.39 1.39 0 0 0-1.377-1.377h-.94v-2.36a3.838 3.838 0 0 0-3.82-3.819zm0 1.46a2.371 2.371 0 0 1 2.36 2.36v2.36H9.3v-2.36a2.372 2.372 0 0 1 2.36-2.36zm10.141.392a1.253 1.253 0 0 1 1.296 1.434 1.24 1.24 0 0 1-.453.78c-.266.213-.61.318-.968.264a1.253 1.253 0 0 1-1.045-1.42 1.255 1.255 0 0 1 1.17-1.058zM5.384 17.425a2.02 2.02 0 0 1 1.917 1.298c.116.3.159.628.114.967a2.015 2.015 0 0 1-2.249 1.728 2.016 2.016 0 0 1-1.727-2.25 2.017 2.017 0 0 1 1.945-1.743z"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
1
material/.icons/simple/channel4.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.062 17.074h-2.263V24h2.263v-6.926Zm6.102 4.663h-5.097V24h5.097v-2.262Zm1.715-7.93h-3.544v2.262h3.544v-2.263Zm-11.085 7.93H7.531V24h2.263v-2.262Zm0-12.793V5.346L3.759 12.8h2.913l3.122-3.857Zm1.005 3.857h2.263V1.328l-2.263 2.778v8.695Zm5.53-9.626V20.74h-2.262V5.967l2.262-2.792ZM14.383 0l1.946 1.577-2.262 2.795V.391L14.383 0Zm-1.321 13.806H3.12v2.263h9.942v-2.263Z"/></svg>
|
After Width: | Height: | Size: 445 B |
1
material/.icons/simple/chatwoot.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12c0 6.629 5.371 12 12 12s12-5.371 12-12S18.629 0 12 0 0 5.371 0 12m17.008 5.29H11.44a5.57 5.57 0 0 1-5.562-5.567A5.57 5.57 0 0 1 11.44 6.16a5.57 5.57 0 0 1 5.567 5.563Z"/></svg>
|
After Width: | Height: | Size: 250 B |
1
material/.icons/simple/checkmk.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.187 8.738v3.985l4.883-3.157v8.217l1.925 1.111 1.926-1.111V9.57l4.882 3.158V8.742l-6.808-4.269-6.808 4.265zM12 0l10.375 5.999V18L12 24 1.625 18.006V6.003L12 0z"/></svg>
|
After Width: | Height: | Size: 239 B |
1
material/.icons/simple/clarifai.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2.78 14.772A2.768 2.768 0 0 1 0 12.008a2.781 2.781 0 0 1 2.78-2.78 2.765 2.765 0 0 1 2.764 2.764c0 1.52-1.23 2.78-2.764 2.78zM17.119 1.83c-2.05 0-2.142 1.732-5.27 1.732-3.16 0-3.419-1.732-5.287-1.732a2.765 2.765 0 0 0-2.765 2.765 2.775 2.775 0 0 0 2.765 2.764c2.066 0 2.157-1.731 5.286-1.731 3.16 0 3.418 1.731 5.286 1.731A2.765 2.765 0 0 0 19.9 4.595a2.778 2.778 0 0 0-2.78-2.765zm0 14.81c-2.066 0-2.157 1.732-5.286 1.732-3.16 0-3.418-1.731-5.286-1.731a2.765 2.765 0 0 0-2.765 2.764 2.775 2.775 0 0 0 2.765 2.765c2.066 0 2.157-1.732 5.286-1.732 3.16 0 3.418 1.732 5.286 1.732a2.765 2.765 0 0 0 0-5.53zm4.101-7.397c-2.08 0-2.005 1.823-4.617 1.823-2.416-.015-2.446-1.823-4.755-1.823-1.443 0-2.628 1.322-2.628 2.765s1.2 2.764 2.765 2.764c2.08 0 2.005-1.823 4.618-1.823 2.415 0 2.445 1.808 4.77 1.808 1.442 0 2.627-1.322 2.627-2.765 0-1.427-1.2-2.749-2.78-2.749Z"/></svg>
|
After Width: | Height: | Size: 938 B |
1
material/.icons/simple/codesignal.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 1.212 13.012 2.787 12 5.62l-1.01-2.833L0 1.212 3.672 11.45l4.512.646 3.815 10.691 3.816-10.691 4.512-.646zm-3.625 4.406-4.52.648-.73 2.044 4.517-.647-.734 2.047-4.514.647L12 17.064l-2.393-6.707-4.514-.647-.735-2.047 4.518.647-.73-2.044-4.52-.648-.735-2.047 6.676.956L12 11.345l2.434-6.818 6.676-.956Z"/></svg>
|
After Width: | Height: | Size: 382 B |
1
material/.icons/simple/codestream.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.54 18.246a6.46 6.46 0 0 1 0-12.58V1.22a.431.431 0 0 0-.745-.294l-9.36 9.971a1.61 1.61 0 0 0 0 2.201l9.36 9.976a.431.431 0 0 0 .746-.295zm2.92 0a6.46 6.46 0 0 0 0-12.58V1.22a.431.431 0 0 1 .746-.294l9.36 9.971a1.61 1.61 0 0 1 0 2.201l-9.36 9.976a.431.431 0 0 1-.747-.295zm2.263-6.29a3.728 3.73 0 0 1-3.728 3.73 3.728 3.73 0 0 1-3.727-3.73 3.728 3.73 0 0 1 3.727-3.731 3.728 3.73 0 0 1 3.728 3.73z"/></svg>
|
After Width: | Height: | Size: 477 B |
1
material/.icons/simple/creality.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.215 10.33-1.772.01c-.785.029-1.42.737-1.443 1.613v.088c.018.903.69 1.629 1.51 1.629h1.705c.01 0 .02-.011.02-.024v-.603a.022.022 0 0 0-.02-.022H1.508c-.501 0-.92-.443-.928-1.001-.007-.569.405-1.034.912-1.034l1.723-.007c.01 0 .02-.01.02-.022v-.603c0-.013-.01-.024-.02-.024zm.412 0c-.011 0-.02.011-.02.024v3.292c0 .013.009.024.02.024h.54c.012 0 .02-.011.02-.024V11a.02.02 0 0 1 .02-.021h1.606c.168 0 .314.145.32.333.006.198-.137.36-.313.36l-1.533.002c-.018 0-.028.023-.016.037l1.75 1.95c.004.005.009.009.014.009H6.8c.017 0 .026-.025.014-.04L5.64 12.32h.183c.496 0 .898-.454.89-1.01-.006-.546-.416-.98-.905-.98h-2.18Zm4.873 0c-.827 0-1.5.75-1.5 1.67 0 .92.673 1.67 1.5 1.67h1.68c.01 0 .02-.011.02-.024v-.603c0-.012-.01-.022-.02-.022H8.5c-.404 0-.75-.292-.871-.697h2.55c.012 0 .02-.01.02-.023v-.604c0-.012-.008-.021-.02-.021h-2.55c.123-.405.468-.697.872-.697h1.68c.01 0 .02-.012.02-.024v-.601c0-.013-.01-.024-.02-.024zm3.709 0c-.013 0-.026.009-.033.024l-1.7 3.28c-.007.016 0 .036.016.036h.625a.02.02 0 0 0 .018-.012l1.056-2.045a.02.02 0 0 1 .036 0l.71 1.375c.008.015-.002.033-.017.033h-.928c-.007 0-.012.005-.015.012l-.313.602c-.008.015.002.033.018.033h2.242c.015 0 .025-.018.017-.033l-1.697-3.281a.041.041 0 0 0-.035-.024zm2.03.002c-.01 0-.02.01-.02.022v2.94c0 .207.15.376.336.376h2.148c.01 0 .022-.011.022-.024v-.603a.022.022 0 0 0-.022-.022H14.82A.022.022 0 0 1 14.8 13v-2.646c0-.013-.01-.022-.02-.022h-.54zm2.84 0c-.01 0-.02.01-.02.022v3.292c0 .013.01.024.02.024h.542c.01 0 .02-.011.02-.024v-3.292c0-.013-.01-.022-.02-.022h-.54zm.85 0c-.01 0-.02.01-.02.022v.601c0 .012.01.024.02.024h1.169c.01 0 .02.009.02.021v2.646c0 .013.01.022.02.022h.54c.01 0 .02-.01.02-.022V11a.02.02 0 0 1 .02-.021h1.172a.02.02 0 0 1 .015.007l1.018 1.354a.02.02 0 0 1 .004.014v1.292c0 .013.008.024.02.024h.54c.011 0 .02-.011.02-.024v-1.292c0-.006.003-.01.006-.014l1.482-1.97c.011-.016.001-.038-.016-.038h-.705a.02.02 0 0 0-.015.008l-1.026 1.363a.02.02 0 0 1-.03 0l-1.026-1.363a.02.02 0 0 0-.016-.008z"/></svg>
|
After Width: | Height: | Size: 2.0 KiB |
1
material/.icons/simple/denon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.365 11.237 3.394 3.361v-5.07h-.778v3.16L8.58 9.406v5.077h.779V11.27l.006-.033m-4.497 3.245V9.528h2.79v.773H5.646v1.164h1.558v.772H5.646v1.472h1.999v.773H4.868M20.58 11.23 24 14.58V9.528h-.779v3.2l-.005-.015-3.422-3.311v5.08h.79v-3.234l-.003-.019M.78 13.747v-3.503h.688s1.755-.032 1.755 1.77c0 1.647-1.593 1.733-1.593 1.733H.78zM0 9.527v4.955h1.655s2.336-.193 2.336-2.496c0-2.374-2.343-2.458-2.343-2.458H0zm14.416 2.452c0 .552.187 1.006.56 1.361.713.724 1.931.702 2.618-.01.724-.689.724-1.991.007-2.676-.675-.726-1.966-.724-2.645 0-.36.357-.54.8-.54 1.325zm-.764-.01c0-.702.26-1.306.777-1.81.981-1.004 2.724-1.016 3.702.006 1.026.965 1.032 2.706-.003 3.66-.961.964-2.596 1.015-3.624.084-.568-.493-.852-1.14-.852-1.94z"/></svg>
|
After Width: | Height: | Size: 797 B |
1
material/.icons/simple/easyeda.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13.31 3.108a7.67 7.67 0 0 0-3.015.545 7.67 7.67 0 0 0-1.73.951 7.865 7.865 0 0 0-1.59 1.567 6.308 6.308 0 0 0-.764-.047C2.78 6.124 0 8.91 0 12.35a6.217 6.217 0 0 0 4.146 5.868 3.759 3.759 0 0 0 7.326-1.574l5.3-2.673-.04-.078.499-.257-1.021-2.027-.499.25-.047-.086-5.291 2.658a3.727 3.727 0 0 0-2.627-1.076 3.77 3.77 0 0 0-3.42 2.198 3.723 3.723 0 0 1-1.7-4.146 3.71 3.71 0 0 1 5.549-2.214 5.211 5.211 0 0 1 6.585-3.32 5.24 5.24 0 0 1 3.538 4.373 2.913 2.913 0 0 1 3.188 2.899 2.909 2.909 0 0 1-2.65 2.899h-2.135v2.517h2.244l.11-.016a5.407 5.407 0 0 0 4.925-5.852 5.459 5.459 0 0 0-1.574-3.375A5.355 5.355 0 0 0 20.3 8.01a7.725 7.725 0 0 0-6.99-4.901ZM7.748 15.367a1.76 1.76 0 0 1 1.753 1.761 1.748 1.748 0 0 1-1.753 1.753 1.748 1.748 0 0 1-1.754-1.753 1.756 1.756 0 0 1 1.754-1.753Z"/></svg>
|
After Width: | Height: | Size: 861 B |
1
material/.icons/simple/fareharbor.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.475 3.936.002.04c0 .78-.632 1.413-1.413 1.413l-.058-.002V6.86c.02-.001.038-.005.058-.005a.64.64 0 0 1 .64.64.638.638 0 0 1-.64.639c-.02 0-.039-.004-.058-.006v1.168c.02-.002.038-.006.058-.006a.638.638 0 0 1 .64.639.64.64 0 0 1-.64.64c-.02 0-.039-.004-.058-.006v1.166c.02-.001.038-.006.058-.006a.64.64 0 0 1 .64.641.638.638 0 0 1-.64.639c-.02 0-.039-.004-.058-.006v1.432c.02-.001.039-.004.058-.004.78 0 1.413.633 1.413 1.414v.011h19.088v-.011c0-.78.631-1.414 1.412-1.414l.017.002v-1.426l-.017.002a.64.64 0 0 1-.641-.639.641.641 0 0 1 .64-.64l.018.002v-1.159l-.017.002a.641.641 0 0 1-.641-.64.64.64 0 0 1 .64-.639l.018.002v-1.16l-.017.002a.64.64 0 0 1-.641-.639.641.641 0 0 1 .64-.64l.018.001V5.39h-.017c-.78 0-1.412-.632-1.412-1.412l.002-.041zm9.517.832a.2.2 0 0 1 .102.027l3.39 2.006a.2.2 0 0 1 .121.183.202.202 0 0 1-.2.202h-.821v3.609h1.018v1.057l-.641.601v1.795h5.37c.188 0 .34-.174.34-.389V6.04c0-.215-.152-.389-.34-.389h-4.794v-.402h4.795c.408 0 .74.355.74.791v7.82c0 .436-.332.791-.74.791H3.684c-.409 0-.74-.355-.74-.79V6.038c0-.436.331-.791.74-.791h4.718v.402H3.684c-.187 0-.34.174-.34.389v7.82c0 .215.153.389.34.389h5.328v-1.805l-.631-.592v-1.056h1.017v-3.61h-.816a.203.203 0 0 1-.195-.148.2.2 0 0 1 .092-.224l3.412-2.018a.198.198 0 0 1 .101-.027zm0 .433L9.314 6.783h5.354zm7.145 1.662a.203.203 0 0 1 .166.149.2.2 0 0 1-.14.246l-3.231.877a.2.2 0 0 1-.053.008.2.2 0 0 1-.193-.149.2.2 0 0 1 .14-.246l3.23-.879a.2.2 0 0 1 .08-.006zM5.03 6.916a.202.202 0 0 1 .08.006l2.928.826a.201.201 0 0 1-.055.395.2.2 0 0 1-.054-.008l-2.926-.826a.201.201 0 0 1-.139-.248.198.198 0 0 1 .166-.145Zm4.77.27v3.609h1.996v-.61a1.22 1.22 0 0 1-1.026-1.203c0-.606.445-1.11 1.026-1.203v-.593zm2.398 0v.597a1.22 1.22 0 0 1 1.012 1.2c0 .6-.438 1.101-1.012 1.2v.612h1.983v-3.61Zm-.207.978a.82.82 0 0 0-.818.818.818.818 0 1 0 .818-.818zm-7.848.63h3.43a.2.2 0 0 1 .2.202.2.2 0 0 1-.2.201h-3.43a.202.202 0 0 1-.2-.2.202.202 0 0 1 .2-.202zm12.147 0h3.43a.202.202 0 0 1 .2.202.202.202 0 0 1-.2.201h-3.43a.202.202 0 0 1-.201-.2.202.202 0 0 1 .201-.202zm-8.283.903a.201.201 0 0 1 .17.143.2.2 0 0 1-.135.25l-2.72.82a.204.204 0 0 1-.06.008.202.202 0 0 1-.193-.143.2.2 0 0 1 .135-.25l2.723-.82a.203.203 0 0 1 .08-.008zm7.85 0a.204.204 0 0 1 .08.008l3.076.924a.2.2 0 0 1 .134.25.202.202 0 0 1-.193.143.191.191 0 0 1-.057-.008l-3.076-.924a.201.201 0 0 1-.135-.25.2.2 0 0 1 .17-.143zm-7.077 1.5v.48l.516.483h5.388l.516-.482v-.48H9.398Zm.631 1.366v1.156l3.004-1.156Zm4.121 0L9.44 14.139c-.009.003-.018.002-.027.004v.105h2.535l2.612-1.107v-.579Zm1.026 1.013-1.608.672h1.608zM0 17.617v2.412h.508v-.933h1.177v-.483H.508V18.1h1.336v-.483zm9.52 0v2.412h.484v-1.011h1.002v1.011h.506v-2.412h-.506v.943h-1.002v-.943zm10.943.348c-.64 0-1.107.472-1.107 1.049v.006c0 .576.46 1.045 1.101 1.045.64 0 1.106-.475 1.106-1.051v-.006c0-.577-.46-1.043-1.1-1.043zm-17.565.021-.89 2.043h.467l.19-.455h.876l.19.455h.478l-.89-2.043zm9.98 0-.888 2.043h.465l.19-.455h.879l.189.455h.477l-.89-2.043ZM4.708 18v2.03h.457v-.651h.358l.445.65H6.5l-.506-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.293-.67-.783-.67Zm2.44 0v2.03h1.582v-.4H7.602v-.425h.978v-.396h-.978v-.412h1.11V18Zm7.54 0v2.03h.458v-.651h.359l.445.65h.533l-.507-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.294-.67-.783-.67Zm2.383 0v2.03h.987c.468 0 .777-.186.777-.557v-.006c0-.273-.148-.408-.389-.498.149-.081.274-.209.274-.438v-.006c0-.318-.262-.525-.686-.525Zm5.135 0v2.03h.457v-.651h.36l.445.65H24l-.508-.724c.264-.096.445-.302.445-.63v-.005c0-.417-.293-.67-.783-.67Zm-1.748.377a.62.62 0 0 1 .627.637v.006a.613.613 0 0 1-.621.632.624.624 0 0 1-.63-.638v-.006c0-.348.256-.631.624-.631zm-2.943.014h.45c.194 0 .302.075.302.209v.006c0 .15-.129.214-.33.214h-.422zm-12.35.011h.453c.223 0 .36.1.36.291v.006c0 .171-.128.287-.35.287h-.463Zm9.98 0h.456c.222 0 .357.1.357.291v.006c0 .171-.127.287-.35.287h-.463zm7.518 0h.455c.223 0 .358.1.358.291v.006c0 .171-.128.287-.35.287h-.463zm-19.56.12.277.658h-.553Zm9.982 0 .275.658h-.55zm4.43.67h.529c.234 0 .338.084.338.22v.006c0 .15-.123.219-.324.219h-.543z"/></svg>
|
After Width: | Height: | Size: 4.0 KiB |
1
material/.icons/simple/ferretdb.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.736.223a7.834 7.834 0 0 0-1.48.12C8.821.744 6.504 2.14 5.02 4.086c-.817 1.098-1.203 1.737-1.04 1.737.045 0 .283-.134.52-.312 1.99-1.41 5.6-2.05 8.005-1.41 2.302.608 3.52 1.559 4.544 3.578.862 1.664 1.04 2.302 1.47 5.05l.105.579.282-.357c.505-.653 1.128-2.123 1.38-3.222.847-3.817-.771-6.995-4.44-8.747-1.03-.49-2.048-.742-3.11-.76zm-6.597 5.76c-.307.018-.637.27-1.12.76-.52.51-1.055 1.007-1.604 1.487C1.975 9.447.653 11.6.193 13.456c-.43 1.768-.12 4.352.727 6.03 1.292 2.584 4.738 4.336 8.42 4.291.728 0 .818-.03.565-.178-.832-.505-2.05-1.856-2.495-2.762-.445-.92-.475-1.07-.475-2.614 0-1.5.03-1.693.416-2.42.683-1.292 1.396-1.901 2.732-2.287 1.604-.46 2.406-1.233 2.852-2.733.178-.579.311-1.129.311-1.203 0-.312-.43-.49-1.559-.653-2.109-.282-3.371-.936-4.574-2.302-.386-.446-.668-.66-.974-.642Zm1.182 1.93c.186 0 .408.056.653.167.342.149.387.238.298.624-.268 1.233-.268 1.574 0 1.871.415.46.816.357 1.559-.356.653-.654.861-.728 1.648-.698.297.015.43.119.49.371.045.208.223.416.386.46.387.12.372.357-.074.98-1.544 2.11-4.633 2.095-5.717-.014-.49-.965-.357-2.376.326-3.238.097-.11.245-.167.431-.167Zm14.702 1.771c-.074 0-.208.342-.297.758-.564 2.613-2.54 5.569-4.678 6.95-1.663 1.084-2.346 1.262-4.99 1.277-1.262 0-2.658-.06-3.103-.119l-.802-.119.104.49c.133.713 1.069 1.976 2.004 2.748 1.708 1.396 3.312 1.9 5.51 1.782 3.906-.208 7.07-2.57 8.034-5.97.12-.446.209-1.381.194-2.302 0-1.292-.075-1.767-.401-2.718-.402-1.173-1.322-2.777-1.575-2.777z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
material/.icons/simple/fireflyiii.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.107 0s.917 3.103-.842 4.91c-1.76 1.807-1.57 3.803-.856 4.754.713.951.665 1.664.095 2.187-.57.523-1.046.904-1.379.048-.333-.856-.713-.856-.856-1.284a43.535 43.535 0 0 0-.428-1.189s-.903 1.427-1.474 2.283c-.57.855-.57 2.187-.19 2.9.38.713.238 1.569-.047 2.757-.286 1.189.095 2.996 1.426 3.709 1.331.713 2.948 1.283 3.66 1.949.714.666 2.378 1.284 4.518.808 2.14-.475 4.85-2.662 5.324-4.136 0 0 1.237-1.379 1-3.185-.239-1.807-1.095-1.76-1.475-3.138-.38-1.38.823-1.04-.19-3.406 0 0-.452-1.127-2.168-1.939-1.102-.521-.352-2.88-2.3-5.258C11.974.393 10.106 0 10.106 0zm-.326 11.753c1.373-.01 2.14 1.376 2.14 1.376 1.78-.216 3.533.152 4.374.94.531.498.965.956 1.181 1.834-.1-.034-.282-.08-.52-.076a1.875 1.875 0 0 0-.902.256s-.99-.333-1.52.097c-.55.446-.604.968-.576 1.586 0 0 .476-1.628 1.68-1.208 0 0-.852 1.5.472 1.762 0 0 .313-.002.57-.158.247-.148.44-.424.361-.92 0 0-.16-.494-.577-.794 0 0 .378-.267 1.096-.104.035.238.056.503.063.802.047 2.057-1.326 3.402-1.326 3.402v.927c-.167.334-.445.445-1.39.445-.946 0-1.076-.26-1.076-.26v-.185c-1.446.186-2.234 0-2.234 0 0 .167 0 .195-.14.334-.138.139-1 .148-1.65.055-.649-.092-.574-.407-.574-.407v-.946a3.663 3.663 0 0 1-1.354-1.873l-.61.012c-.334 0-.477-.428-.477-.428v-1.379c0-.428.428-.523.428-.523l.594-.045c.201-1.426 1.688-2.522 1.688-2.522l-.083-1.966c.125-.023.246-.033.362-.034zm-.548 4.716a.352.352 0 0 0-.353.352.352.352 0 0 0 .353.352.352.352 0 0 0 .352-.352.352.352 0 0 0-.352-.352zm6.85.301s.124.031.39.469c.257.425-.182.635-.182.635-.827.063-.208-1.104-.208-1.104z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 6.4 KiB |
1
material/.icons/simple/fsharp.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 12 11.39.61v5.695L5.695 12l5.695 5.695v5.695L0 12zm7.322 0 4.068-4.068v8.136L7.322 12zM24 12 12.203.61v5.695L17.898 12l-5.695 5.695v5.695L24 12z"/></svg>
|
After Width: | Height: | Size: 225 B |
1
material/.icons/simple/googlecontaineroptimizedos.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 21.6a9.6 9.6 0 0 1-5.016-1.416L11.28 17.7v-5.4L6.612 9.6v5.424l3.3 1.908-4.152 2.4A9.6 9.6 0 0 1 7.296 3.6v4.8L12 11.136 16.68 8.4 12 5.724 8.688 7.632V2.964a9.6 9.6 0 0 1 12.372 5.64A9.72 9.72 0 0 1 21.672 12v.084L17.352 9.6l-4.68 2.712v5.412l4.68-2.7v-3.816l4.14 2.4A9.6 9.6 0 0 1 12 21.6z"/></svg>
|
After Width: | Height: | Size: 443 B |
1
material/.icons/simple/googledocs.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.727 6.727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zm-.545 10.455H7.09v-1.364h7.09v1.364zm2.727-3.273H7.091v-1.364h9.818v1.364zm0-3.273H7.091V9.273h9.818v1.363zM14.727 6h6l-6-6v6z"/></svg>
|
After Width: | Height: | Size: 341 B |
1
material/.icons/simple/googleforms.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M14.727 6h6l-6-6v6zm0 .727H14V0H4.91c-.905 0-1.637.732-1.637 1.636v20.728c0 .904.732 1.636 1.636 1.636h14.182c.904 0 1.636-.732 1.636-1.636V6.727h-6zM7.91 17.318a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm0-3.273a.819.819 0 1 1 .001-1.637.819.819 0 0 1 0 1.637zm0-3.272a.819.819 0 1 1 .001-1.638.819.819 0 0 1 0 1.638zm9 6.409h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818v-1.364h6.818v1.364zm0-3.273h-6.818V9.273h6.818v1.363z"/></svg>
|
After Width: | Height: | Size: 506 B |
1
material/.icons/simple/gstreamer.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.091 14.055c-.029-.586.226-1.949.811-1.82.25.055.181.399.1.77-.11.502-.3 1.049-.3 1.049s.714.028.7 0c.071-.9.26-1.878.785-1.805.435.061-.124 1.805-.124 1.805h.65c-.023-.296.136-.985.226-1.483.09-.498-.101-.716-.502-.72s-.798.347-.798.347c.016-.3-.38-.347-.38-.347-.421-.027-.826.257-.826.257l.038-.22h-.636s-.032.35-.16.99c-.129.638-.3 1.176-.3 1.176h.716zm4.354-2.22c-.87 0-1.259.614-1.259 1.242s.371 1.042 1.128 1.042c.355 0 .556-.328.556-.328s.012-.09-.055-.053c-.067.038-.25.116-.49.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.974h-.665c0-.46.368-.806.618-.683.228.106.047.683.047.683zm-8.306-.975c-.871 0-1.26.615-1.26 1.243s.372 1.042 1.128 1.042c.356 0 .557-.328.557-.328s.012-.09-.056-.053c-.067.038-.25.116-.489.116s-.497-.227-.497-.791h1.37c.072-.229.118-1.229-.753-1.229zm.127.975h-.665c0-.46.31-.757.56-.634.228.106.105.634.105.634zm9.623 1.28h-.703s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.381 1.597zm-12.12 0h-.702s.41-1.472.446-2.194c-.006.006.609 0 .609 0s-.053.163-.076.305c.174-.193.233-.366.705-.366.006 0 0 .609 0 .609s-.44-.11-.6.049c-.158.158-.328.285-.382 1.597zm-.856-2.95-.574.198-.132.535h-.366v.352h.289s-.308 1.103-.25 1.44c.057.366.414.443.626.433s.27-.164.26-.221-.299.055-.328-.205c-.02-.154.24-1.447.24-1.447h.454v-.352h-.357l.138-.734zm5.985 2.916c.085-.07.028-.21-.045-.228-.084-.172.173-1.178.173-1.454s-.462-.828-1.416-.308c-.092.059-.058.155-.036.187s.066.053.086.032c.09-.098.48-.2.663-.007.125.115.12.339.033.425-.106.01-1.15-.02-1.276.644-.216 1.18 1.107.558 1.175.51s.06.14.172.219c.301.026.412.03.471-.02zm-.66-.493c-.107.282-.505.24-.528.04-.086-.668.603-.618.603-.618s.032.296-.075.578zm-6.948-1.04.2-.337s-.163-.347-.644-.347-.758.347-.758.758.915.721.694 1.128c-.37.379-.76-.24-.753-.28-.028.04-.219.304-.21.304.047.092.214.385.75.392.444.005.712-.324.72-.73.01-.546-.785-.823-.794-1.072-.01-.25.527-.537.795.184zm-1.048-.803c-.085-.08-.15.027-.342.107-.193.08-.257.07-.45.043-.316-.07-.871-.049-1.017.022-.975.391-.452 1.116-.293 1.26-.001 0-.238.125-.272.32-.044.251.071.387.075.39-.319.017-.524.338-.474.6.053.283.39.508.872.51 1.02.022 1.072-.63 1.072-.63.14-.793-.533-.83-1.012-.792-.173-.155-.038-.3-.045-.3 1.619.039 1.211-1.041 1.211-1.041.273-.067.81-.36.675-.489zm-2.168 2.272c.634.114.89-.031.933.292.018.316-.25.406-.561.425-.311.02-.538-.138-.551-.34-.012-.203.164-.182.179-.377zm.98-1.38c-.06.26-.239.44-.402.404-.163-.037-.248-.277-.19-.537.06-.26.239-.44.402-.403.163.037.248.277.19.537zM4.037 9.475c-.464 0-1.142-.378-1.802-.378s-1.055.378-1.124.43c-.069.05-.112.248.094.188.206-.06.378-.06.704-.06s1.107.446 1.896.446 1.45-.609 1.596-.823c.145-.215.008-.284-.103-.232-.112.051-.832.429-1.261.429zm2.012 1.175c-.487 0-1.199-.377-1.893-.377s-1.108.377-1.18.429c-.073.051-.118.248.099.188.216-.06.396-.06.739-.06.342 0 1.162.446 1.992.446s1.523-.609 1.676-.823c.153-.215.009-.283-.108-.232s-.874.43-1.325.43zm-2.8 1.297c-.506 0-1.244-.408-1.964-.408s-1.15.408-1.224.464-.122.268.103.203c.224-.065.41-.065.766-.065s1.206.482 2.066.482c.86 0 1.58-.658 1.738-.89.16-.23.01-.305-.112-.25-.121.056-.906.464-1.374.464z"/></svg>
|
After Width: | Height: | Size: 3.2 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.826 15.069a1.018 1.018 0 1 1-.001 2.036 1.018 1.018 0 0 1 0-2.036zM21.327 1.11a1.018 1.018 0 1 1 .001 2.036 1.018 1.018 0 0 1 0-2.036zM3.322 3.107h16.116a2.13 2.13 0 0 0 1.89 1.151 2.132 2.132 0 0 0 2.129-2.13A2.131 2.131 0 0 0 21.327 0c-.89 0-1.654.55-1.97 1.329H3.321C1.764 1.329.543 2.51.543 4.019v17.156C.543 22.706 1.816 24 3.322 24h17.155c1.51 0 2.738-1.267 2.738-2.825V10.998c0-1.532-1.228-2.78-2.738-2.78H10.3c-1.553 0-2.866 1.274-2.866 2.78v3.198c0 1.484 1.286 2.691 2.866 2.691h3.554a2.132 2.132 0 0 0 1.972 1.329c1.174 0 2.129-.956 2.129-2.13s-.955-2.129-2.13-2.129a2.13 2.13 0 0 0-1.889 1.152H10.3c-.523 0-1.088-.349-1.088-.913v-3.198c0-.524.519-1 1.088-1h10.177c.538 0 .96.439.96 1v10.177c0 .567-.44 1.047-.96 1.047H3.322c-.533 0-1-.49-1-1.047V4.02c0-.52.43-.912 1-.912"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0Zm-.007 5.12c4.48 0 5.995 3.025 6.064 4.744h-3.239c-.069-.962-.897-2.406-2.896-2.406-2.136 0-3.514 1.857-3.514 4.126 0 2.27 1.378 4.125 3.514 4.125 1.93 0 2.758-1.512 3.103-3.025h-3.103v-1.238h6.509v6.327h-2.855v-3.989c-.207 1.444-1.102 4.264-4.617 4.264-3.516 0-5.584-2.82-5.584-6.326 0-3.645 2.276-6.602 6.618-6.602z"/></svg>
|
Before Width: | Height: | Size: 864 B After Width: | Height: | Size: 471 B |
1
material/.icons/simple/h3.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.236 6.105c-.099-.045-.256-.084-.373-.173-.485-.375-.96-.768-1.442-1.148-.172-.135-.195-.279-.089-.468.31-.558.594-1.133.924-1.677a.993.993 0 0 1 .503-.395 39.005 39.005 0 0 1 2.4-.712.97.97 0 0 1 .63.084c.523.269 1.024.582 1.532.883.265.157.291.233.182.522-.216.566-.44 1.127-.647 1.697a.874.874 0 0 1-.609.557c-.88.26-1.76.512-2.641.765-.101.026-.207.036-.37.065zm-6.106 4.93c-.132-.084-.295-.144-.392-.259-.424-.5-.828-1.017-1.245-1.524-.139-.167-.123-.34-.026-.501.464-.754.922-1.51 1.415-2.246.113-.168.337-.298.537-.363.817-.263 1.645-.494 2.471-.735.259-.076.491-.048.709.143.441.39.894.77 1.351 1.145.192.155.228.328.127.542-.373.783-.727 1.577-1.133 2.344a1.098 1.098 0 0 1-.575.497c-1.012.325-2.04.602-3.063.893-.046.014-.098.012-.146.017l-.03.047zm14.928-9.188c.162.046.337.072.487.144.717.342 1.427.694 2.137 1.049.268.133.41.282.33.644-.137.614-.231 1.239-.328 1.861-.048.307-.216.497-.496.579-1.052.308-2.106.607-3.16.901-.282.079-.552.009-.795-.152L13.17 5.496c-.197-.132-.265-.296-.18-.527.228-.623.433-1.252.68-1.866a.714.714 0 0 1 .387-.375c.926-.297 1.863-.564 2.797-.838.062-.019.13-.012.195-.017.004-.009.007-.017.009-.026zM9.653 12.65c-.2-.11-.435-.185-.596-.337-.609-.573-1.192-1.176-1.792-1.757-.217-.212-.267-.438-.144-.71.36-.79.7-1.59 1.088-2.366a.978.978 0 0 1 .523-.445c.943-.306 1.898-.573 2.85-.841a.862.862 0 0 1 .753.125c.664.465 1.33.929 1.994 1.396.314.219.372.384.267.757-.232.828-.472 1.654-.7 2.482a.926.926 0 0 1-.677.681 365.9 365.9 0 0 1-3.236.915c-.094.026-.193.028-.29.041a.876.876 0 0 0-.04.059zM0 16.098c.09-.23.152-.45.258-.647.49-.917.992-1.827 1.488-2.74.185-.342.459-.57.833-.676.946-.268 1.89-.537 2.837-.807.357-.103.643-.027.905.258a66.623 66.623 0 0 0 1.673 1.735c.268.27.336.568.201.918-.429 1.116-.855 2.231-1.288 3.343-.166.426-.48.688-.923.807-1.105.301-2.209.61-3.314.914-.537.149-.756.063-1.05-.404-.462-.734-.929-1.468-1.386-2.205-.09-.15-.15-.318-.234-.496Zm23.986-6.187c-.057.95-.106 1.87-.166 2.785-.036.533-.207.735-.727.879-1.184.328-2.37.648-3.553.978-.464.129-.874.04-1.244-.258-.894-.718-1.786-1.44-2.684-2.155-.33-.264-.455-.57-.337-.992.23-.82.437-1.646.645-2.472.086-.337.298-.54.62-.635 1.007-.292 2.016-.578 3.024-.867a1.291 1.291 0 0 1 1.043.128c.957.556 1.91 1.115 2.866 1.671.37.22.586.519.513.938zM8.16 18.325c.092-.298.156-.534.238-.765.347-.97.713-1.934 1.049-2.91.17-.495.484-.783.99-.918 1.021-.268 2.034-.564 3.05-.853.428-.122.797-.048 1.143.248.858.735 1.725 1.46 2.596 2.184.4.334.57.727.469 1.256-.245 1.286-.46 2.58-.693 3.869-.089.49-.38.807-.862.937-1.343.361-2.687.724-4.034 1.075-.487.126-.882-.045-1.195-.433-.572-.708-1.146-1.413-1.721-2.12-.243-.299-.506-.585-.722-.901-.142-.21-.216-.464-.308-.669z"/></svg>
|
After Width: | Height: | Size: 2.7 KiB |
1
material/.icons/simple/hashicorp.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10.114 4.094 4.215 7.5v13.09L.666 18.542V5.45L10.114 0v4.094zm3.772 13.37 3.549-2.049V2.05L13.885 0v10.426h-3.77v-3.89L6.562 8.585v13.357l3.551 2.054V13.599h3.772v3.865zM19.783 3.41V16.5l-5.897 3.405V24l9.448-5.45V5.458l-3.551-2.05z"/></svg>
|
After Width: | Height: | Size: 311 B |
1
material/.icons/simple/hearthisdotat.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.485 3.515C15.799-1.17 8.2-1.17 3.515 3.515c-4.687 4.686-4.687 12.285 0 16.97 4.685 4.686 12.284 4.686 16.97 0 4.687-4.685 4.687-12.284 0-16.97zm-5.81 14.433c-.252.252-1.25.562-1.25-.012 0-.573-.157-3.089-2.028-4.958-1.88-1.88-4.55-2.192-5.056-2.192-.506 0-.331-1-.078-1.252.253-.253.558-.15 1.064-.15 0 0 3.445.464 5.326 2.345 1.868 1.869 2.173 5.153 2.173 5.153 0 .463.102.813-.15 1.066zm4.022-.509c-.36.36-1.786.803-1.786-.015 0-.82-.224-4.41-2.893-7.079C11.335 7.662 7.524 7.217 6.8 7.217c-.723 0-.473-1.426-.113-1.787.361-.36.799-.214 1.52-.214 0 0 4.918.663 7.603 3.348 2.666 2.667 3.1 7.356 3.1 7.356 0 .658.147 1.158-.214 1.52z"/></svg>
|
After Width: | Height: | Size: 716 B |
1
material/.icons/simple/hotwire.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m16.764 6.917-3.48.81L16.32 0 7.236 11.705l4.334-.854-4.087 7.982 2.364-.532L7.456 24l7.51-8.111-2.77.64 4.568-9.612z"/></svg>
|
After Width: | Height: | Size: 195 B |
1
material/.icons/simple/hsbc.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m24 12.007-5.996 5.997V5.996L24 12.007zm-5.996-6.01H6.01l5.996 6.01 5.997-6.01zM0 12.006l6.01 5.997V5.996L0 12.007zm6.01 5.997h11.994l-5.997-5.997-5.996 5.997z"/></svg>
|
After Width: | Height: | Size: 237 B |
1
material/.icons/simple/inertia.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.901 5.331H0L6.669 12 0 18.669h6.901L13.571 12 6.9 5.331zm10.43 0H10.43L17.099 12l-6.67 6.669h6.902L24 12l-6.669-6.669z"/></svg>
|
After Width: | Height: | Size: 199 B |
1
material/.icons/simple/intuit.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.32 12.38c0 1.174.974 2.033 2.211 2.033 1.237 0 2.212-.859 2.212-2.033v-2.7h-1.198v2.56c0 .633-.44 1.06-1.017 1.06s-1.017-.424-1.017-1.06V9.68h-1.198l.008 2.699zm7.624-1.619h1.429v3.563h1.198V10.76H24V9.68h-4.056v1.082zM19.17 9.68h-1.198v4.645h1.198V9.679zM7.482 10.761h1.43v3.563h1.197V10.76h1.428V9.68H7.482v1.082zM1.198 9.68H0v4.645h1.198V9.679zm5.653 1.94c0-1.174-.974-2.032-2.212-2.032-1.238 0-2.212.858-2.212 2.032v2.705h1.198v-2.56c0-.633.44-1.06 1.017-1.06s1.018.425 1.018 1.06v2.56h1.197L6.85 11.62h.001z"/></svg>
|
After Width: | Height: | Size: 594 B |
1
material/.icons/simple/iris.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21.691 11.281c-1.26-.322-1.573-.479-1.573-.957v-.021c0-.354.323-.635.937-.635.578 0 1.174.239 1.779.639l.074.05c.026.01.055.002.074-.018l.775-1.121a.061.061 0 0 0-.009-.068c-.023-.015-.044-.034-.068-.05l-.007-.005c-.716-.541-1.584-.843-2.592-.843-1.492 0-2.552.874-2.552 2.196v.021c0 1.448.949 1.854 2.416 2.228 1.22.313 1.468.521 1.468.927v.021c0 .427-.396.687-1.052.687-.797 0-1.461-.315-2.092-.817l-.043-.035a.064.064 0 0 0-.075.012l-.881 1.049a.069.069 0 0 0 0 .073l.068.059a4.645 4.645 0 0 0 2.986 1.075c1.572 0 2.676-.813 2.676-2.259v-.018c.005-1.273-.828-1.805-2.309-2.19ZM5.765 8.42a.069.069 0 0 1 .068-.065h1.475a.068.068 0 0 1 .064.068v7.157a.064.064 0 0 1-.064.064H5.829a.068.068 0 0 1-.067-.064l.003-7.16ZM0 13.339c0-.035.029-.063.064-.063h1.475a.067.067 0 0 1 .065.063v2.241a.068.068 0 0 1-.065.064H.064A.064.064 0 0 1 0 15.58v-2.241ZM15.836 8.42c0-.035.029-.064.064-.064h1.476c.034 0 .063.029.063.064v7.16a.064.064 0 0 1-.063.064H15.9a.064.064 0 0 1-.064-.064V8.42Zm-.887 7.172-1.744-2.551c.926-.344 1.559-1.084 1.559-2.259v-.022c0-.688-.218-1.261-.624-1.667-.478-.477-1.193-.737-2.123-.737H8.749a.064.064 0 0 0-.063.064v7.16c0 .035.028.064.063.064h1.476a.064.064 0 0 0 .064-.064v-2.268h1.26l1.559 2.332h1.81c.038 0 .051-.024.031-.052ZM2.847 10.966a.068.068 0 0 1 .068-.063h1.47a.068.068 0 0 1 .064.063v4.61a.064.064 0 0 1-.064.063H2.909a.07.07 0 0 1-.068-.063l.006-4.61Zm7.448.93.008-2.093h1.578c.782 0 1.26.354 1.26 1.041v.021c0 .614-.447 1.031-1.228 1.031h-1.618Z"/></svg>
|
After Width: | Height: | Size: 1.5 KiB |
1
material/.icons/simple/jfrogpipelines.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.844 0 .021 1.2C7.226 1.636 4.1 4.387 3.231 8.176c-1.041 4.517 1.518 9.036 5.783 10.55.042.015.639.18.96.272v.01l.203.047c1.848.43 1.777.347 2.132-1.27.304-.117.568-.095.882-.15a7.35 7.35 0 0 0 .764-.178c1.081 1.476.687 1.635 2.696.378 2.453-1.534 1.331-1.205.86-2.593l.98-1.336c1.309.313 1.657.537 1.974-.889.608-2.742.89-2.653-1.054-3.083-.109-.31-.233-1.25-.31-1.635.378-.337 1.272-.589 1.197-1.271-.013-.115-1.523-2.754-1.91-2.887-.538-.188-1.091.449-1.523.6-.244-.206-1.176-.798-1.305-1.058.15-.645.544-1.42-.34-1.735-.685-.25-1.501-.443-2.477-.577l.003.004.527.497-.82.904c.67.045 1.185.165 1.848.356-.404 1.974-.029 1.192 1.322 2.258.252.198.85.794 1.098.854.456.108.894-.363 1.219-.532l.71 1.185c-1.368.866-1.019.648-.663 2.224.371 1.645-.506 1.713 1.457 2.198l-.332 1.35c-1.964-.425-1.197-.007-2.256 1.328-.933 1.172-1.275 1.008-.355 2.333l-1.16.68c-.782-1.409-.777-.959-2.22-.652-1.626.335-1.732-.44-2.194 1.458l-.285-.07-1.137-.344C5.879 16.168 3.7 12.38 4.573 8.588a7.523 7.523 0 0 1 5.955-5.702c.123-.022.245-.04.366-.057l.021 1.176 1.92-2.118zm1.385 6.854a3.642 3.642 0 0 0-1.142.168c-4.232 1.296-2.575 7.69 1.83 6.567 4.049-1.031 2.777-6.665-.688-6.735zm-.108 1.389c2.233.046 2.91 3.542.239 4.095-1.201.248-2.176-.667-2.352-1.657-.228-1.284.665-2.222 1.647-2.4.162-.03.317-.041.466-.038zM1.534 22.392V24h20.932v-1.608z"/></svg>
|
After Width: | Height: | Size: 1.4 KiB |
1
material/.icons/simple/jovian.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.25 1.65C20.25.74 19.51 0 18.6 0H5.4c-.91 0-1.65.74-1.65 1.65v20.7c0 .91.74 1.65 1.65 1.65h13.2c.91 0 1.65-.74 1.65-1.65V1.65zm-5.275 4.341a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm.04 9.018a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm-6.015 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg>
|
After Width: | Height: | Size: 350 B |
1
material/.icons/simple/juce.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.383 0 0 5.383 0 12s5.383 12 12 12 12-5.383 12-12S18.617 0 12 0zm0 22.402c-5.744 0-10.417-4.667-10.417-10.404S6.256 1.595 12 1.595s10.417 4.666 10.417 10.403S17.744 22.402 12 22.402zm8.097-5.04a9.77 9.77 0 0 1-2.5 2.572 1.23 1.23 0 0 1-1.787-.42c-.97-1.794-1.75-3.59-2.468-5.391a.504.504 0 0 1 .669-.648c1.729.749 3.503 1.46 5.414 2.04a1.227 1.227 0 0 1 .672 1.847zm1.615-5.36c0 .596-.053 1.179-.156 1.746a1.235 1.235 0 0 1-1.559.97c-2.01-.583-3.87-1.324-5.687-2.111l.002.001a.503.503 0 0 1 .013-.93c1.802-.713 3.606-1.48 5.416-2.437.727-.385 1.62.04 1.782.846.124.619.19 1.26.19 1.915zm-6.847 7.713c.383.726-.04 1.61-.842 1.78a9.67 9.67 0 0 1-2.021.212 9.702 9.702 0 0 1-1.607-.132 1.233 1.233 0 0 1-.98-1.56c.583-2.003 1.322-3.854 2.107-5.666a.503.503 0 0 1 .93.014h.002c.704 1.78 1.468 3.565 2.411 5.352zM9.181 4.276a1.232 1.232 0 0 1 .844-1.782 9.745 9.745 0 0 1 3.692-.05c.722.129 1.176.852.973 1.557-.585 2.028-1.33 3.9-2.125 5.73a.503.503 0 0 1-.93-.013h-.001c-.715-1.81-1.49-3.623-2.453-5.442zm-5.374 2.51a9.759 9.759 0 0 1 2.635-2.747 1.233 1.233 0 0 1 1.787.42c1.021 1.88 1.83 3.763 2.578 5.65a.504.504 0 0 1-.668.648c-1.802-.783-3.644-1.53-5.64-2.13a1.234 1.234 0 0 1-.692-1.842zm6.864 7.223c-.763 1.753-1.486 3.55-2.072 5.488a1.23 1.23 0 0 1-1.838.679 9.77 9.77 0 0 1-2.662-2.53 1.23 1.23 0 0 1 .414-1.794c1.834-.99 3.67-1.783 5.51-2.513a.504.504 0 0 1 .648.668v.002zm2.72-3.872c.775-1.777 1.51-3.6 2.103-5.57a1.23 1.23 0 0 1 1.85-.672A9.791 9.791 0 0 1 20 6.497a1.23 1.23 0 0 1-.425 1.779c-1.842.998-3.688 1.796-5.538 2.53a.504.504 0 0 1-.648-.67zm-9.098 4.78a1.229 1.229 0 0 1-1.773-.81 9.735 9.735 0 0 1-.103-3.683 1.234 1.234 0 0 1 1.56-.981c2.02.584 3.888 1.328 5.713 2.119a.503.503 0 0 1-.014.93c-1.79.71-3.585 1.474-5.383 2.425z"/></svg>
|
After Width: | Height: | Size: 1.8 KiB |
1
material/.icons/simple/juejin.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m12 14.316 7.454-5.88-2.022-1.625L12 11.1l-.004.003-5.432-4.288-2.02 1.624 7.452 5.88Zm0-7.247 2.89-2.298L12 2.453l-.004-.005-2.884 2.318 2.884 2.3Zm0 11.266-.005.002-9.975-7.87L0 12.088l.194.156 11.803 9.308 7.463-5.885L24 12.085l-2.023-1.624Z"/></svg>
|
After Width: | Height: | Size: 322 B |
1
material/.icons/simple/kamailio.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.647 13.643 1.113-2.62m-3.277.747 1.366-1.413H2.14L.577 12.009v-1.652H0v3.286h.577v-.953l.512-.526 1.122 1.479h.7L1.482 11.77zm11.06-.746.567 1.314h-.793l-.217.511h1.221l.334.794h.61l-1.446-3.31h-.535l-1.446 3.31h.592c.373-.88.736-1.741 1.112-2.62zm-7.783 0 .568 1.314h-.794l-.217.511H5.54l.333.794h.61l-1.445-3.31H4.5l-1.445 3.31h.591M24 11.995a1.718 1.718 0 0 0-.479-1.197 1.652 1.652 0 0 0-.54-.364 1.757 1.757 0 0 0-.694-.133 1.717 1.717 0 0 0-1.24.505 1.65 1.65 0 0 0-.356.541 1.719 1.719 0 0 0-.127.658 1.719 1.719 0 0 0 .479 1.196c.15.154.33.275.54.364.21.09.44.134.694.134a1.717 1.717 0 0 0 1.24-.505 1.65 1.65 0 0 0 .356-.542c.085-.206.127-.425.127-.657zm-.606.01c0 .16-.027.31-.082.453-.054.142-.13.265-.227.37a1.063 1.063 0 0 1-.798.34 1.076 1.076 0 0 1-.805-.347 1.151 1.151 0 0 1-.23-.373 1.25 1.25 0 0 1-.082-.453c0-.16.027-.31.082-.453.054-.142.13-.266.227-.37a1.063 1.063 0 0 1 .798-.34 1.075 1.075 0 0 1 .805.346c.099.107.176.231.23.374.055.142.082.293.082.453zm-4.14-1.648v3.286h.578v-3.286h-.578zm-2.938 3.286h2.305v-.526h-1.728v-2.76h-.577v3.286zm-1.455-3.286v3.286h.577v-3.286h-.577zm-5.163.93v2.356h.577v-3.286H9.66l-1 1.554-1-1.554h-.614v3.286h.568v-2.347l1.028 1.54h.018l1.038-1.55zm-.499-1.74c3.162-1.018 6.03-1.59 8.606-1.717 1.125-.056 2.34-.077 3.452.12.397.07.782.18 1.137.356.283.14.507.31.671.51.222-.77.045-1.333-.53-1.688-.54-.334-1.272-.413-1.889-.464-2.726-.224-6.542.737-11.447 2.882zm5.637 5.235c-3.192.918-6.077 1.4-8.656 1.447-1.126.02-2.341.003-3.446-.228a4.19 4.19 0 0 1-1.125-.391 2.014 2.014 0 0 1-.655-.53c-.246.763-.086 1.33.477 1.703.53.35 1.26.452 1.874.522 2.718.31 6.562-.532 11.53-2.523z"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
1
material/.icons/simple/kit.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m3.5 11.633-2.434 2.408V8.687a.53.53 0 0 0-.533-.527.53.53 0 0 0-.533.527v6.624a.528.528 0 0 0 .532.526.533.533 0 0 0 .377-.153l2.974-2.939 2.974 2.94a.535.535 0 0 0 .754 0 .522.522 0 0 0 0-.746l-2.974-2.938L7.61 9.06a.522.522 0 0 0 0-.745.538.538 0 0 0-.753 0l-3.344 3.307c-.003 0-.005.003-.007.005l-.007.006v-.001zm8.826 4.206a.53.53 0 0 1-.533-.526V8.688a.53.53 0 0 1 .533-.528.53.53 0 0 1 .533.528v6.624a.53.53 0 0 1-.533.526v.001zm7.257-6.624v6.098c0 .29.238.526.532.526a.53.53 0 0 0 .533-.526V9.215h2.818A.53.53 0 0 0 24 8.688a.53.53 0 0 0-.533-.527h-6.702a.53.53 0 0 0-.533.527.53.53 0 0 0 .533.527h2.819-.001z"/></svg>
|
After Width: | Height: | Size: 695 B |
1
material/.icons/simple/kodak.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.496 9.076a.735.735 0 0 0 .84-.844c0-.51-.255-.771-.84-.771s-.835.263-.835.77a.733.733 0 0 0 .835.845zm.128 2.126h-.82v1.538h.82c.448 0 .634-.307.634-.81 0-.494-.186-.728-.634-.728zM2.406 12.848a1.448 1.448 0 0 1-.346-.753 1.058 1.058 0 0 1 .173-.603l6.739-9.138a.447.447 0 0 0 .077-.282.51.51 0 0 0-.52-.51H1.54A1.56 1.56 0 0 0 0 3.106v17.805a1.53 1.53 0 0 0 1.536 1.526h6.993a.513.513 0 0 0 .52-.505v-.005a.63.63 0 0 0-.096-.32l-6.547-8.759zM20.03 16.01h.928l-.464-1.154-.464 1.154zm2.468-14.446h-6.782a2.223 2.223 0 0 0-1.522.716L2.905 11.887c-.1.106-.1.271 0 .377l11.59 9.74c.346.279.776.432 1.22.434h6.763A1.517 1.517 0 0 0 24 20.926V3.11a1.542 1.542 0 0 0-1.502-1.546zM19.25 3.306h.643v1.166l1.157-1.166h.896l-1.295 1.272 1.345 1.268h-.918l-1.184-1.162v1.162h-.644v-2.54zm1.332 3.621c.945 0 1.47.437 1.47 1.299 0 .846-.51 1.367-1.47 1.367s-1.47-.521-1.47-1.367c0-.863.527-1.299 1.472-1.299h-.002zm1.392 5c0 .824-.367 1.317-1.272 1.317h-1.447v-2.565h1.447c.905 0 1.272.425 1.272 1.248zm-.896 8.703-1.184-1.163v1.163h-.643v-2.54h.643v1.166l1.158-1.166h.855l-1.252 1.272L22 20.63h-.922zm.325-3.692-.18-.449h-1.286l-.176.449h-.685l1.1-2.586h.848l1.096 2.586h-.717z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
material/.icons/simple/leica.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.42 10.954c.198.011.35.146.343.29-.033.94-1.19.795-1.19.795s.17-1.126.846-1.085zm9.313 2.064c.794 0 .952-1.605.952-1.64a.41.41 0 0 0-.423-.398c-.66 0-.9 1.203-.9 1.508 0 .116.007.53.37.53zm-9.949-5.08c.036-.318-.12-.662-.555-.662-1.06 0-1.509 2.963-1.509 2.963s1.853-.438 2.064-2.301zm-6.244 5.82c-.207.021-.423.114-.423.344 0 .139.235.382.608.37.49-.014 1.085-.475 1.085-.475s-.506-.207-1.085-.239a1.026 1.026 0 0 0-.185 0zM24 12.003C24 18.628 18.627 24 12 24 5.37 24 0 18.628 0 12.003 0 5.374 5.371 0 12 0c6.627 0 12 5.374 12 12.003zM11.933 9.446c0 .446.377.555.794.555.418 0 .82-.18.82-.635 0-.456-.48-.555-.82-.555-.471 0-.794.193-.794.635zM9.366 10.53c-1.41 0-2.407.866-2.407 1.904 0 .948.808 1.35 1.852 1.35 1.184 0 2.354-.714 2.354-.714s.071.714 1.006.714c.964 0 1.72-.714 1.72-.714s.417.687 1.376.687c.98 0 1.72-.793 1.72-.793s.272.74 1.243.74c.759 0 1.164-.476 1.164-.476s.212.477.873.477c.808 0 1.402-.556 1.402-.556l-.132-.476s-.307.238-.529.238c-.168 0-.265-.137-.265-.291 0-.347.556-2.064.556-2.064l-1.35.026-.052.212s-.201-.37-.9-.37c-1.352 0-2.085 1.166-2.116 1.852-.007.149-.027.158-.027.158-.032.036-.497.583-1.085.583-.47 0-.555-.384-.555-.635 0-.273.233-1.35.873-1.35.348 0 .555.291.555.291l.186-.608s-.292-.236-.9-.238c-1.308-.001-2.19.967-2.222 1.852-.007.132-.03.176-.027.185-.043.053-.35.423-.767.423-.286 0-.291-.219-.291-.317 0-.135.555-2.064.555-2.064l-1.481.026-.503 1.879s-.826.581-1.958.661c-.584.04-.794-.32-.794-.529v-.08c.001 0 .246.027.424.027.14 0 1.878-.134 1.878-1.19 0-.605-.613-.82-1.376-.82zm12.568 3.889-.132-.476s-3.096 1.078-9.022 1.005c-4.089-.05-7.224-1.243-7.224-1.243s.119-.212.185-.344c.41-.835.9-2.514.9-2.514s2.805-.785 2.805-3.016c0-.706-.674-1.162-1.323-1.19-2.264-.089-2.877 3.128-3.017 3.677-.007.039-.026.053-.026.053-.698-.095-1.085-.238-1.085-.238l-.159.45c.471.223 1.165.29 1.165.29-.136.865-.82 2.488-.82 2.488s-.608-.186-1.376-.186c-1 0-1.35.47-1.376.768-.066.77.911 1.137 1.587 1.137 1.32 0 2.011-.714 2.011-.714s3.695 1.402 7.567 1.402c5.069 0 9.34-1.35 9.34-1.35z"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.29 16.752V7.2H6.546V4.8h6.328v2.4h-1.746v9.574h3.925v-2.618h2.839V19.2H6.545v-2.448h1.746zM0 12c0 6.628 5.372 12 12 12s12-5.372 12-12S18.628 0 12 0 0 5.372 0 12z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.224 14.352a4.447 4.447 0 0 1-3.775 2.092C1.992 16.444 0 14.454 0 12s1.992-4.444 4.45-4.444c1.592 0 2.988.836 3.774 2.092-.427.682-.673 1.488-.673 2.352s.246 1.67.673 2.352zM15.101 12c0-.864.247-1.67.674-2.352-.786-1.256-2.183-2.092-3.775-2.092s-2.989.836-3.775 2.092c.427.682.674 1.488.674 2.352s-.247 1.67-.674 2.352c.786 1.256 2.183 2.092 3.775 2.092s2.989-.836 3.775-2.092A4.42 4.42 0 0 1 15.1 12zm4.45-4.444a4.447 4.447 0 0 0-3.775 2.092c.427.682.673 1.488.673 2.352s-.246 1.67-.673 2.352a4.447 4.447 0 0 0 3.775 2.092C22.008 16.444 24 14.454 24 12s-1.992-4.444-4.45-4.444z"/></svg>
|
Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 658 B |
1
material/.icons/simple/ltspice.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.327 3.485c-.797.627-.975 1.621-1.165 3.317-.365 3.257-.64 5.198-1.047 8.658-.199 1.701.976 1.902 2.365 1.886h2.884c.26.002.352.123.319.38-.124.966-.258 2.79-1.19 2.79L0 20.492s2.83-1.032 3.165-3.372l1.34-10.887c.208-1.357 1.288-2.75 2.634-2.75h2.188zm5.556 17.03c1.346 0 2.426-1.392 2.634-2.749l1.34-10.887c.335-2.34 3.165-3.372 3.165-3.372l-11.493-.022c-.932 0-1.066 1.823-1.19 2.788-.033.258.059.379.32.38h2.883c1.39-.015 2.564.186 2.365 1.887-.406 3.46-.682 5.4-1.047 8.658-.19 1.696-.368 2.69-1.165 3.317h2.188zm8.319-13.862c.259 0 .496-.21.528-.466l.267-2.23a.411.411 0 0 0-.414-.472h-.88c-1.088 0-2.202 1.795-2.255 2.696a.408.408 0 0 0 .411.472h2.343z"/></svg>
|
After Width: | Height: | Size: 738 B |
1
material/.icons/simple/mambaui.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4.045 15.831c1.303.349 2.496.773 3.91 1.042a30.713 30.713 0 0 0 .405 6.07c-1.698-1.908-4.137-5.187-4.315-7.112Zm15.843 0c-1.258.349-2.41.773-3.777 1.042a31.772 31.772 0 0 1-.39 6.07c1.644-1.908 4.001-5.187 4.167-7.112zM6.783 1.057c2.317 4.17 9.686 3.63 11.46 0a6.223 6.223 0 0 1 2.337 1.386c-.087 3.607-2.338 4.898-2.338 4.898l.078.837c2.566-.742 3.522-.663 3.336-5.021 1.29 1.058 2.456 3.067 2.335 4.358-.125 1.342-2.037 5.377-1.8 5.306a87.749 87.749 0 0 1-8.444 3.204 2.93 2.93 0 0 0-1.944-1.672 12.781 12.781 0 0 0-1.784 1.78c-2.347-.853-4.424-1.8-6.594-2.722l-1.706-.628-.776-1.99C-.099 8.214-.573 6.778 1.1 4.515c.364-.492.997-1.56 1.555-1.795-.109 3.695-1.224 5.454 2.944 5.457l.078-.837s-1.81-.227-2.25-4.898zM8.856 12.26c-.208.279-.337.349-.543.628.052.14-.207.175-.156.314a2.865 2.865 0 0 0 .853 1.151 2.664 2.664 0 0 0 1.705-1.151c-.206-.44-1.443-1.163-1.86-.941Zm5.663 0c-.414.279-.905.663-1.32.942.13.21.802.732.932.942.39.235.296.427.776.21a1.401 1.401 0 0 0 .853-1.256c-.207-.245-.414-.593-.62-.838Z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
material/.icons/simple/medibangpaint.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.516 0H6.478L4.417.164a5.158 5.158 0 0 0-3.184 1.827 5.479 5.479 0 0 0-.981 2.06C-.068 5.336.015 6.992.015 8.548v7.284c0 2.377.038 4.504 1.007 5.878a5.153 5.153 0 0 0 2.435 1.873c1.232.332 2.509.467 3.783.401h6.967c.622 0 1.25.007 1.87.007 2.149 0 4.19-.092 5.504-.921a5.073 5.073 0 0 0 2.013-2.53c.459-1.308.398-3.127.398-4.871V9.415c0-3.264.115-5.748-1.335-7.565C21.208.033 18.727 0 15.516 0Zm0 .327a23.237 23.237 0 0 1 4.167.237 4.316 4.316 0 0 1 2.718 1.49 5.645 5.645 0 0 1 1.108 2.823c.143 1.284.195 2.576.156 3.867v7.475c.005 1.52.011 3.092-.382 4.212a4.724 4.724 0 0 1-1.878 2.36 5.749 5.749 0 0 1-2.307.724 23.456 23.456 0 0 1-3.021.147l-1.87-.008H7.241a11.983 11.983 0 0 1-3.675-.381 4.828 4.828 0 0 1-2.276-1.754 5.279 5.279 0 0 1-.81-2.414 26.103 26.103 0 0 1-.137-3.272V8.548c0-.268 0-.545-.005-.812A15.618 15.618 0 0 1 .567 4.13a5.19 5.19 0 0 1 .927-1.94A4.833 4.833 0 0 1 4.464.491L5.852.382l.639-.055h9.025Zm2.147 8.845-.174-.286-.26-.357a7.147 7.147 0 0 0-.267-.331c-.029-.034-.055-.061-.085-.094.362 7.124-6.189 10.879-10.683 7.917a6.694 6.694 0 0 0 5.716 3.224c3.665 0 6.68-3.015 6.68-6.679 0-1.194-.32-2.366-.927-3.394ZM5.674 14.978c.081.207.636.521.795.626 4.195 2.764 10.247-.825 9.908-7.474-.007-.148-.006-.538-.089-.61a7.696 7.696 0 0 0-1.44-.995c-1.103 3.961-6.324 6.303-9.404 4.362a6.615 6.615 0 0 0 .23 4.091Zm-.075-4.598c.033.033.07.061.111.084 1.117.704 2.547.769 3.922.385 2.116-.591 4.119-2.248 4.735-4.458.014-.05.039-.156.028-.165a3.428 3.428 0 0 1-.341-.296c-.679-.715-.826-.975-.382-2.603-3.168.512-6.771 4.01-7.534 5.87-.003.007-.003.015-.005.022a6.7 6.7 0 0 0-.534 1.161Z"/></svg>
|
After Width: | Height: | Size: 1.6 KiB |
1
material/.icons/simple/microeditor.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0C5.372 0 0 5.372 0 12s5.372 12 12 12 12-5.372 12-12S18.628 0 12 0Zm5.698 13.628c-.117.465-.303.837-.558 1.14-.233.302-.466.488-.721.58-.256.094-.512.14-.791.14-.28 0-.512-.046-.698-.162-.186-.093-.325-.256-.442-.442a1.922 1.922 0 0 1-.232-.675 4.688 4.688 0 0 1-.07-.837c0-.116 0-.232.023-.395.022-.163.047-.372.07-.372h-.047c-.373.93-.883 1.604-1.534 2.14-.652.534-1.372.79-2.164.79-.535 0-.977-.21-1.28-.605-.325-.395-.487-1-.487-1.79 0-.117 0-.233.022-.373.023-.116.023-.162.046-.395h-.163c-.209.465-.395 1.116-.534 1.698-.14.58-.255 1.116-.326 1.604-.093.489-.14.93-.186 1.303-.047.372-.07.628-.093.767.023.116.046.233.07.372.046.14.07.28.116.396.046.116.07.255.093.372.023.116.046.209.046.279 0 .325-.07.58-.209.744-.14.162-.302.255-.465.255a.83.83 0 0 1-.535-.186c-.163-.14-.232-.35-.232-.628 0-.396.07-.907.21-1.512.14-.604.348-1.372.604-2.279.14-.418.255-.837.395-1.256.14-.418.256-.814.372-1.162.116-.35.21-.675.302-.954a3.71 3.71 0 0 0 .163-.65c.023-.07.047-.234.07-.466.023-.233.046-.489.093-.79.046-.303.07-.629.116-.954.047-.35.093-.652.116-.93.047-.21.07-.443.117-.698.046-.255.116-.512.209-.72.093-.233.233-.42.395-.583.163-.162.372-.232.628-.232.28 0 .465.093.558.256.093.162.14.372.117.604-.023.233-.047.49-.117.744-.07.256-.14.49-.21.675-.185.581-.371 1.116-.58 1.558-.21.442-.396.93-.558 1.442-.14.35-.186.674-.186.953 0 .512.162.884.465 1.163.325.28.697.395 1.14.395a1.63 1.63 0 0 0 1.022-.372c.326-.255.628-.558.907-.907.28-.348.512-.72.698-1.14a8.3 8.3 0 0 0 .419-1.069c.023-.046.046-.14.07-.325.046-.187.07-.396.116-.628.046-.233.093-.465.14-.72.046-.257.091-.466.116-.629.046-.186.07-.372.116-.605.046-.232.116-.442.21-.65.092-.21.232-.373.371-.513a.87.87 0 0 1 .605-.209c.302 0 .488.093.605.256.093.163.14.372.14.605a3.58 3.58 0 0 1-.117.697c-.07.233-.116.42-.163.558a23.236 23.236 0 0 1-.558 1.558c-.186.466-.349.884-.512 1.21-.14.349-.256.604-.349.814-.093.21-.14.349-.14.418 0 .605.14 1.047.396 1.303.256.255.535.395.837.395.512 0 .907-.163 1.21-.465.302-.326.535-.907.674-1.605h.186a5.386 5.386 0 0 1-.14 1.698z"/></svg>
|
After Width: | Height: | Size: 2.1 KiB |
1
material/.icons/simple/microstation.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 .357c-.938.217-3.086.22-3.631 1.15l-.55.922c-1.376 2.348-4.833 11.069-8.183 11.181-3.35.113 1.762-10.712 2.27-11.797-2.08.489-4.078.193-4.826 2.326-.775 2.212-1.54 4.425-2.363 6.62-1.71 4.532-3.795 8.89-6.634 12.767.064-.086.127-.171-.083.117 2.111-.422 4.03-.352 5.295-2.253 1.17-1.759 1.92-3.73 2.712-5.68l.377-.927.303.286c3.017 2.844 5.334 0 7.697-2.219l.349-.327 1.322 4.977 2.932-3.144a33.47 33.47 0 0 1-.713-1.342l-.037-.08C18.302 8.742 21.6 3.935 23.861.566Z"/></svg>
|
After Width: | Height: | Size: 548 B |
1
material/.icons/simple/miraheze.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m2.677 12.923 3.768.011 1.949 3.369-1.926 3.323H2.666L.727 16.292l1.95-3.369Zm-.004-8.6 3.761.011 1.944 3.367-1.922 3.326H2.662L.727 7.69l1.946-3.367Zm14.882 0 3.768.011 1.95 3.367-1.928 3.326h-3.801L15.606 7.69l1.949-3.367Zm0 8.6 3.768.011 1.95 3.369-1.928 3.323h-3.802l-1.937-3.334 1.949-3.369Zm-7.456 4.373 3.767.011 1.951 3.368L13.889 24h-3.801l-1.939-3.336 1.95-3.368Zm0-17.296 3.767.011 1.951 3.369-1.928 3.324h-3.801L8.149 3.368 10.099 0Zm0 8.628 3.767.011 1.951 3.368-1.928 3.325h-3.801l-1.939-3.336 1.95-3.368Z"/></svg>
|
After Width: | Height: | Size: 597 B |
1
material/.icons/simple/mongoosedotws.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 0a4.863 4.863 0 0 0-3.456 1.43L1.43 8.545a4.879 4.879 0 0 0-.09 6.804L7.41 9.28a1.454 1.454 0 0 1 .37-1.434 1.471 1.471 0 0 1 2.079 0c.58.58.58 1.512.006 2.085-.37.37-.89.496-1.368.388l-6.099 6.1 6.147 6.146a4.887 4.887 0 0 0 6.911.007l6.243-6.243-2.951-2.951a1.453 1.453 0 0 1-1.434-.37 1.471 1.471 0 0 1 0-2.08 1.474 1.474 0 0 1 2.085-.006c.37.37.496.89.388 1.368l2.963 2.963a4.872 4.872 0 0 0-.185-6.708l-7.108-7.108A4.881 4.881 0 0 0 12 0Zm3.16 7.4c.122-.002.243.012.361.04.257.054.508.185.711.388.185.185.317.412.37.657a1.43 1.43 0 0 1-.364 1.428 1.47 1.47 0 0 1-1.368.388l-1.416 1.416a1.457 1.457 0 0 1-1.756 1.756 1.42 1.42 0 0 1-.71-.388 1.347 1.347 0 0 1-.371-.657A1.43 1.43 0 0 1 10.98 11a1.47 1.47 0 0 1 1.368-.388l1.416-1.416a1.46 1.46 0 0 1 1.396-1.795zm.033.733a.736.736 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.046.732.732 0 0 0-.52-.214zm-6.374.018a.735.735 0 0 0-.52 1.254.737.737 0 0 0 1.046.006.737.737 0 0 0-.006-1.045.733.733 0 0 0-.52-.215zm9.54 3.077a.745.745 0 0 0-.526.22.736.736 0 0 0 1.04 1.04.737.737 0 0 0 .006-1.046.73.73 0 0 0-.52-.214zm-6.329.078a.724.724 0 0 0-.41.119 1.01 1.01 0 0 0-.12.096c-.035.035-.065.077-.095.119a.737.737 0 0 0 .102.926.735.735 0 0 0 1.039-1.04.743.743 0 0 0-.516-.22z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/nbc.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.231 5.113c-.086 0-.17.005-.253.014-1.166.025-2.913 1.409-2.137 3.523l3.593 8.455 1.262-8.893c.273-2.072-1.182-3.098-2.465-3.099zm5.552.001c-1.21.023-2.572.909-2.504 2.777h.68s.364 0 .413.17c-.267.219-.996.243-.898 1.409l1.14 7.654 3.569-8.48c.728-1.895-.802-3.475-2.161-3.524a2.485 2.485 0 0 0-.239-.006zM4.519 8.261c-.594.004-1.204.225-1.732.672-.994.9-1.359 2.94.438 4.131l7.16 4.908-3.471-7.947c-.455-1.17-1.404-1.77-2.395-1.764zm14.993.088c-.92-.037-1.924.42-2.497 1.814l-3.374 7.848 7.16-4.932c1.651-1.166 1.385-3.038.462-3.96-.372-.415-1.036-.742-1.751-.77zm2.046 5.36c-.493-.015-1.018.123-1.534.465L13.3 18.863h8.278c1.699 0 2.793-1.75 2.305-3.353-.317-.986-1.242-1.765-2.325-1.8zm-18.982.001a2.404 2.404 0 0 0-1.347.346 2.479 2.479 0 0 0-.422.326l-.028.024a2.859 2.859 0 0 0-.662 1.03h.001c-.166.593-.15 1.151.003 1.64a2.556 2.556 0 0 0 .604 1.02 2.624 2.624 0 0 0 1.894.79h8.154L4.05 14.199a2.94 2.94 0 0 0-1.474-.488Z"/></svg>
|
After Width: | Height: | Size: 1008 B |
1
material/.icons/simple/newegg.svg
Normal file
After Width: | Height: | Size: 5.3 KiB |
1
material/.icons/simple/nextra.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M22.68 21.031c-4.98-4.98-4.98-13.083 0-18.063l.978-.978c.22-.22.342-.513.342-.825 0-.311-.122-.604-.342-.824-.44-.441-1.207-.44-1.648 0l-.979.978c-4.98 4.98-13.084 4.98-18.063 0L1.99.34a1.17 1.17 0 0 0-1.649 0 1.168 1.168 0 0 0 0 1.649l.978.978c4.98 4.98 4.98 13.083 0 18.063l-.977.978c-.221.22-.342.513-.342.825 0 .31.121.604.341.824.442.443 1.21.441 1.65 0l.977-.977c4.98-4.983 13.083-4.98 18.064 0l.978.977c.22.22.513.342.824.342.312 0 .605-.122.824-.342.22-.22.342-.512.342-.824 0-.313-.122-.605-.342-.825l-.977-.978z"/></svg>
|
After Width: | Height: | Size: 599 B |
1
material/.icons/simple/ngrx.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.024.017V0L12 .008 11.976 0v.017L.812 3.892l1.605 14.875 9.559 5.207V24l.024-.013.024.013v-.026l9.559-5.207 1.605-14.875L12.024.017zm6.868 14.244c-1.094 2.632-3.104 4.02-6.031 4.166-2.829 0-4.661-1.7-4.66-1.7-1.163-.905-1.963-2.046-2.398-3.417-.695-.76-.702-.841-.774-1.145-.072-.303.045-.388.249-.685.136-.198.168-.483.098-.85-.173-.24-.273-.616-.3-1.128 0-.247.166-.508.496-.783.33-.275.533-.486.607-.632.056-.079.077-.423.065-1.031-.004-.598.328-.923.995-.975 1-.08 1.565-.832 1.879-1.174.21-.228.52-.339.91-.341.551-.026 1.052.185 1.484.62 1.075-.055 2.176.235 3.292.863 1.586.942 2.451 1.962 2.596 3.055-.17 1.439-2.102 1.4-5.788-.113-1.93.546-2.878 1.73-2.846 3.552-.001 1.672.808 2.886 2.422 3.643-.787-.772-1.122-1.422-1.01-1.959 1.637 1.937 3.5 2.662 5.588 2.173-.92.032-1.65-.264-2.198-.893 1.411-.035 2.743-.69 3.998-1.972-.724.576-1.482.794-2.284.657 2.173-1.709 2.942-3.702 2.307-5.98l-.002-.006a3.02 3.02 0 0 1 .788 2.03c.014.783-.249 1.61-.795 2.477.408-.318.88-1.002 1.413-2.047.23 2.117-.625 3.724-2.574 4.825.622-.057 1.448-.467 2.473-1.23zm-5.567-6.63a.319.319 0 1 1 .638 0 .319.319 0 0 1-.638 0z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
material/.icons/simple/openscad.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12.065 2.418c-1.287.016-2.478.283-3.346.701-.895.432-1.426 1.014-1.426 1.627 0 .494.375.98.975 1.397.242-.178.493-.307.729-.422.235-.116.556-.147.976-.15.42-.004.856.09.856.09.008.001 1.498.644 1.498.644l.894-.418h.002s.592-.266 1.268-.258c.045 0 .09.003.136.006.187.013.355.038.655.107.3.07.591.239.777.39.562-.405.897-.879.897-1.364 0-.617-.501-1.203-1.364-1.639-.862-.436-2.068-.71-3.402-.71h-.125zm7.3.143c-.325-.02-.443.02-.695.13-.506.275-1.024.55-1.545.825a9.872 9.872 0 0 1 4.725 8.06c.418-.213.832-.427 1.229-.636 1.157-.844 1.234-3.073.177-5.194-.94-1.885-2.53-3.188-3.89-3.185ZM8.55 2.928a9.648 9.648 0 0 0-6.177 8.16c.425-.214.857-.424 1.294-.617l.002-.002h.002a1.73 1.73 0 0 1 .637-.133c.22-.005.445.029.672.094.454.13.916.386 1.355.726.88.68 1.693 1.714 2.213 2.883.576 1.293.84 2.532.795 3.56-.045 1.029-.412 1.875-1.138 2.268l-.977.467a9.594 9.594 0 0 0 4.744 1.248 9.594 9.594 0 0 0 5.334-1.611c-.745.289-1.48.318-2.086-.006-.54-.29-.915-.833-1.082-1.541-.121-.413-.09-.715-.103-1.147.015-.475.141-.929.207-1.248.104-.434.377-1.154.775-1.865.398-.71.977-1.41 1.611-2.008.635-.598 1.253-.966 1.704-1.082.45-.116.742-.17 1.043-.174.3-.003.608.046.921.21.772.41 1.163 1.295 1.188 2.357.074-.226.108-1.16.129-1.525a9.636 9.636 0 0 0-5.123-8.516c.447.385.717.84.717 1.342 0 .618-.409 1.185-.92 1.523a6.2 6.2 0 0 1-1.498.744 7.273 7.273 0 0 1-2.211.377c-.738.002-1.25.012-1.664-.06a12.338 12.338 0 0 1-.844-.166c-.35-.067-.334-.053-.608-.15-.59-.21-.775-.29-1.377-.686-.601-.396-1.04-.972-1.04-1.604 0-.736.602-1.367 1.505-1.818zm1.498 2.9c.054.332.147.729.162 1.131.175.04.354.077.538.107.46-.227.863-.423 1.27-.62l-1.247-.538c-.003 0-.09-.015-.215-.033a9.161 9.161 0 0 0-.508-.047zm3.291.291-.869.405.022.638c.844-.032 1.631-.174 2.299-.406.02-.298.108-.59.152-.824-.145-.037-.305-.033-.693-.036-.388-.003-.91.223-.91.223zm1.85-.115c-.04.123-.082.25-.107.39-.014.074-.02.168-.028.256.267-.107.507-.227.725-.359a1.745 1.745 0 0 0-.59-.287zm-2.967.625c-.291.14-.64.306-.984.477.338.03.675.058 1.002.066l-.018-.543zm-7.904 3.959a1.459 1.459 0 0 0-.549.111c-.755.333-1.507.71-2.213 1.088.106.01.208.025.3.037.388.052.811.218 1.509.762.28.219.592.543.898.92.327.388.61.844.865 1.238.173.288.326.575.45.848.151.316.26.641.377.945.112.306.18.617.261.91.078.285.104.573.15.844.032.268.045.52.04.754-.011.449-.044.854-.168 1.215-.04.115-.092.224-.154.328a76.45 76.45 0 0 0 2.001-.941c1.25-.676 1.36-2.978.235-5.506-.88-1.978-2.652-3.574-4.002-3.553Zm14.44.666c.185.347.338.904.13 1.633-.066.172-.12.377-.215.556-.528 1.1-1.506 1.61-1.789 1.739 0 .047-.002.112-.039.463a3.68 3.68 0 0 1-.174.86c-.11.365-.227.628-.384.88-.077.1-.15.257-.506.65-.436.271-1.008.453-1.313.453.17.567.445 1.027.871 1.256.671.358 1.554.239 2.452-.277a6.193 6.193 0 0 0 1.48-1.23c.35-.405.666-.836 1.172-1.72.505-.882.814-2.064.79-3.044-.022-1.004-.384-1.783-1.054-2.14a1.478 1.478 0 0 0-.721-.163c-.248 0-.493.06-.7.084zm-.284.047c-.5.165-1.01.47-1.498.875.172.192.37.356.611.537a3.73 3.73 0 0 0 .909.502l.048-.113a3.14 3.14 0 0 0 .096-.284c.137-.48.102-.865.012-1.154a1.64 1.64 0 0 0-.178-.363zm-17.178.732a.8.8 0 0 0-.468.155c-.473.369-.779.918-.823 1.894-.043.977.211 2.185.774 3.45.503 1.13 1.298 2.135 2.138 2.784.841.65 1.727.944 2.481.6.62-.343.737-.999.758-1.877.021-.878-.241-2.098-.807-3.344-.474-1.044-1.459-2.381-2.139-2.912-.68-.53-1.04-.664-1.386-.71a2.995 2.995 0 0 0-.528-.04Zm15.475.323c-.582.582-1.084 1.197-1.45 1.796l1.444.793a3.24 3.24 0 0 0 .531-.312 3.503 3.503 0 0 0 1.065-1.192 4.335 4.335 0 0 1-.944-.539c-.356-.266-.509-.39-.646-.546zm-1.574 2.033a7.495 7.495 0 0 0-.658 1.715l1.955-1.004c-.41-.22-.87-.468-1.297-.711Zm1.42.935-2.225 1.159-.03.146c.226.053.475.128.782.291.427.227.627.39.781.53.052-.068.103-.139.153-.217.342-.548.472-1.156.523-1.586.012-.108.01-.218.016-.323z"/></svg>
|
After Width: | Height: | Size: 3.8 KiB |
1
material/.icons/simple/opensourcehardware.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M23.87 11.525c.071.013.13.084.13.157v3.033a.166.166 0 0 1-.13.157l-2.875.535a.243.243 0 0 0-.17.151l-.898 2.242a.252.252 0 0 0 .017.229l1.633 2.379a.167.167 0 0 1-.02.204l-2.144 2.144a.167.167 0 0 1-.203.019l-2.338-1.604a.23.23 0 0 0-.224-.008l-1.03.55a.121.121 0 0 1-.17-.062l-2.125-5.135a.161.161 0 0 1 .062-.192l.258-.158c.048-.03.113-.08.163-.125a3.354 3.354 0 1 0-3.612 0c.05.046.115.096.163.125l.258.158a.16.16 0 0 1 .062.192L8.552 21.65a.121.121 0 0 1-.17.063l-1.03-.55a.23.23 0 0 0-.224.007L4.79 22.775a.168.168 0 0 1-.204-.019l-2.145-2.144a.167.167 0 0 1-.019-.204l1.633-2.38a.251.251 0 0 0 .017-.228l-.897-2.242a.244.244 0 0 0-.17-.15L.13 14.871a.166.166 0 0 1-.13-.157v-3.032c0-.073.059-.144.13-.157l2.947-.548a.253.253 0 0 0 .175-.15l.903-2.108a.246.246 0 0 0-.014-.227L2.424 5.989a.167.167 0 0 1 .019-.203L4.587 3.64a.166.166 0 0 1 .204-.019L7.337 5.37c.06.041.163.048.229.016l2.043-.836c.07-.023.137-.1.15-.173l.567-3.047a.167.167 0 0 1 .157-.131h3.034c.073 0 .143.059.157.13l.567 3.048a.25.25 0 0 0 .15.173l2.043.836a.252.252 0 0 0 .23-.016l2.546-1.748a.166.166 0 0 1 .203.02l2.144 2.144c.052.051.06.143.02.203l-1.718 2.503a.245.245 0 0 0-.014.227l.903 2.108a.256.256 0 0 0 .175.15l2.946.548"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
material/.icons/simple/operagx.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M24 12.01c0 3.412-1.462 6.674-4.013 8.943A12 12 0 0 1 11.992 24c-.178 0-.385-.019-.563-.019C5.016 23.681 0 18.403 0 11.991 0 5.37 5.372 0 11.99 0h.038c2.944 0 5.775 1.087 7.96 3.047A12.04 12.04 0 0 1 24 12.009zm-9.14 10.443c-2.729-.056-5.279-1.397-7.041-3.684-1.388-1.64-2.203-4.013-2.269-6.516v-.544c.047-2.521.881-4.893 2.269-6.534 1.744-2.269 4.294-3.61 7.012-3.666a10.67 10.67 0 0 0-2.784-.384h-.038c-5.99 0-10.865 4.894-10.865 10.866 0 5.812 4.528 10.584 10.34 10.847a10.087 10.087 0 0 0 3.375-.385zm7.996-10.444c0-3.065-1.303-5.99-3.59-8.053a7.69 7.69 0 0 0-4.228-1.284c-2.447 0-4.754 1.181-6.357 3.244-1.247 1.462-1.969 3.59-2.025 5.83v.526c.056 2.25.778 4.369 2.006 5.812l.02.02c1.602 2.071 3.909 3.252 6.355 3.252a7.69 7.69 0 0 0 4.229-1.284 10.894 10.894 0 0 0 3.59-8.063zm-3.75 0c0 4.05-2.184 7.341-4.912 7.585 2.128-1.388 3.61-4.257 3.61-7.585 0-3.328-1.463-6.197-3.61-7.575 2.728.244 4.912 3.525 4.912 7.575z"/></svg>
|
After Width: | Height: | Size: 999 B |
1
material/.icons/simple/owncloud.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.189 9.52a1.707 1.707 0 0 1-.22-.825c0-.926.751-1.677 1.677-1.677.34 0 .66.1.926.284a3.523 3.523 0 0 0-.311 1.457c0 .092.009.193.009.285-.065 0-.129-.01-.202-.01a3.684 3.684 0 0 0-1.88.486zm-.367 6.518a3.888 3.888 0 0 1-1.613-3.144c0-.33.045-.651.119-.954h-.101A3.232 3.232 0 0 0 0 15.167a3.232 3.232 0 0 0 5.06 2.659 2.16 2.16 0 0 1-.339-1.155c0-.22.037-.431.101-.633zm.138-.348c.293-.56.816-.972 1.448-1.1.055-.01.12-.019.183-.028.065-.009.12-.009.184-.018h.082c.101 0 .193.01.294.018a4.924 4.924 0 0 1 .908-3.575 3.066 3.066 0 0 1-.358-.54l-.083-.166c-.027-.055-.055-.11-.073-.165a3.781 3.781 0 0 1-.211-.715c-.082-.01-.165-.01-.247-.01-.605 0-1.183.157-1.678.432-.055.027-.11.064-.165.091-.055.037-.101.065-.156.101a3.54 3.54 0 0 0-1.274 1.605c-.018.055-.046.119-.064.174-.019.055-.037.119-.055.174a3.422 3.422 0 0 0-.129.926A3.57 3.57 0 0 0 4.96 15.69zm11.321-4.135c.468-.247.99-.394 1.55-.43a3.24 3.24 0 0 0-3.218-2.952c-.064 0-.129 0-.193.009.028.183.046.376.046.568 0 .303-.037.596-.11.871a4.884 4.884 0 0 1 1.925 1.934zm-8.608-2.3c.01.064.028.128.037.192.036.147.073.293.128.43.028.065.046.12.073.184.028.055.055.12.083.174.082.165.183.321.293.468.23-.257.477-.495.752-.706.055-.037.1-.073.156-.11l.165-.11a4.812 4.812 0 0 1 2.558-.761h.064c.064 0 .119 0 .183.01.083 0 .165.008.248.018a4.67 4.67 0 0 1 1.595.421c.045-.229.073-.458.073-.706a3.167 3.167 0 0 0-.083-.706c-.009-.064-.027-.119-.045-.174a3.188 3.188 0 0 0-3.09-2.365c-1.219 0-2.282.678-2.832 1.669-.028.055-.065.11-.092.165l-.083.183c-.146.376-.238.78-.238 1.21 0 .11.01.21.018.32.019.065.028.13.037.193zm14.558 5.463a1.426 1.426 0 0 0-.284.028c.009.082.009.165.009.238a3.853 3.853 0 0 1-1.064 2.659c.321.375.807.614 1.339.614.971 0 1.769-.798 1.769-1.77 0-.971-.798-1.769-1.77-1.769zm-.651.12c0-.065-.01-.13-.01-.193-.008-.064-.008-.129-.017-.184a3.5 3.5 0 0 0-3.337-2.979h-.184c-.064 0-.119 0-.183.01a3.551 3.551 0 0 0-1.393.393c.256.56.403 1.174.43 1.816 0 .064.01.128.01.192v.055c0 .083 0 .165-.01.248a4.846 4.846 0 0 1-1.402 3.126 3.504 3.504 0 0 0 2.613 1.164c.889 0 1.705-.34 2.328-.89.046-.045.092-.082.138-.128.045-.045.091-.091.128-.137a3.477 3.477 0 0 0 .908-2.356.563.563 0 0 1-.019-.138zM7.866 16.505c-.037-.055-.065-.11-.101-.165a4.947 4.947 0 0 1-.541-1.394 1.579 1.579 0 0 0-.358-.036H6.83c-.064 0-.12.009-.184.009-.064.009-.119.018-.183.037-.522.119-.953.476-1.183.944-.027.055-.055.11-.073.174l-.055.174a1.681 1.681 0 0 0-.055.43c0 .34.101.66.266.927.037.055.064.1.11.156.037.046.073.091.12.137a1.764 1.764 0 0 0 1.283.55 1.77 1.77 0 0 0 1.65-1.127 4.57 4.57 0 0 1-.532-.651.505.505 0 0 1-.128-.165zM16.5 14.24c.01-.073.01-.155.01-.238v-.12c0-.65-.138-1.264-.386-1.823l-.082-.165-.083-.165a4.544 4.544 0 0 0-1.723-1.76c-.055-.028-.11-.065-.165-.092l-.165-.083a4.518 4.518 0 0 0-1.825-.43h-.229c-.082 0-.156.009-.229.009a4.388 4.388 0 0 0-1.962.632c-.055.037-.11.064-.156.101-.055.037-.1.073-.155.11-.303.22-.578.468-.816.752-.037.046-.083.091-.12.146-.036.046-.073.101-.11.147a4.473 4.473 0 0 0-.843 2.622c0 .257.018.513.064.752.01.073.028.137.037.21.018.074.037.147.055.23.11.412.284.797.504 1.155.037.055.064.11.101.156.037.055.073.1.11.155.083.12.174.23.266.33.055.055.1.12.156.175.045.055.1.1.156.146a4.53 4.53 0 0 0 6.05.083c.046-.037.092-.083.138-.12.045-.045.091-.082.137-.128a4.55 4.55 0 0 0 1.238-2.567 7.866 7.866 0 0 0 .027-.22z"/></svg>
|
After Width: | Height: | Size: 3.3 KiB |
1
material/.icons/simple/paloaltonetworks.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.278 15.443 1.705 1.705-3.426 3.426-3.427-3.426 8.592-8.591-1.705-1.705 3.426-3.426 3.427 3.426-8.592 8.591zM0 12.017l3.426 3.426 8.591-8.59-3.426-3.427L0 12.017zm11.983 5.13 3.426 3.427L24 11.983l-3.426-3.426-8.591 8.59z"/></svg>
|
After Width: | Height: | Size: 302 B |
1
material/.icons/simple/paychex.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m21.118 11.891-.868-1.766h1.263l.365.977.75-.977H24l-1.57 1.766.919 1.994h-1.303l-.414-1.046-.879 1.046h-1.42Zm-3.907-1.766h3.108l-.197.967h-1.954l-.099.464h1.816l-.188.898h-1.815l-.1.464h1.994l-.197.967h-3.158Zm-3.691 0h1.164l-.276 1.303h1.056l.276-1.303h1.165l-.79 3.76h-1.154l.305-1.49h-1.055l-.316 1.49H12.74zm-.671 2.329c-.07.385-.365 1.52-1.935 1.52-1.095 0-1.618-.71-1.618-1.717 0-1.214.76-2.23 2.043-2.23.839 0 1.589.364 1.608 1.49h-1.095c.01-.356-.158-.553-.513-.553-.642 0-.878.74-.878 1.273 0 .316.078.79.611.79.365 0 .573-.247.642-.583zm-5.754.05-.809-2.379h1.165l.355 1.401.918-1.401h1.362L8.25 12.493l-.286 1.392H6.809Zm-1.894-1.086.138 1.125h-.72Zm-2.477 2.467h1.184l.286-.533h1.224l.059.533h1.135l-.573-3.76H4.895Zm-.987-2.793h.395c.246 0 .503.05.503.336 0 .246-.158.424-.622.424H1.58ZM0 13.885h1.145l.237-1.135h.78c.986 0 1.627-.651 1.627-1.411 0-.83-.444-1.214-1.134-1.214H.789Z"/></svg>
|
After Width: | Height: | Size: 974 B |
1
material/.icons/simple/pearson.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18.22 1.546C12.596-1.648 5.258.088 2.096 6.928c-2.176 4.71-1.188 12.896 3.88 15.83 5.066 2.934 11.866.472 14.98-5.29 3.542-6.554 2.356-13.034-2.736-15.922zm-6.244 18.526a1.212 1.212 0 0 1-.76.248 1.59 1.59 0 0 1-.4-.054 1.078 1.078 0 0 1-.528-.306.942.942 0 0 1-.21-.474 1.15 1.15 0 0 1 .208-.854c.2-.298.532-.48.89-.49a1 1 0 0 1 .186.018c.188.04.366.12.518.24.286.217.456.553.462.912a.944.944 0 0 1-.366.76zm7.656-9.834c-.202 1.514-1.14 2.914-2.7 3.84-1.236.738-2.86 1.032-4.46 1.046-.012.248-.062 1.1-.088 1.236a.87.87 0 0 1-.196.42c-.172.218-.47.36-.766.44a2.493 2.493 0 0 1-.632.096.8.8 0 0 1-.568-.234.8.8 0 0 1-.204-.482l-.012-.17c-.034-.144-.22-7.496-.184-7.366.028-.88 1.48-1.034 2.27-.88.79.158.59 1.098.57 2.252 0 0-.04 1.52-.112 3.124a6.178 6.178 0 0 0 2.556-.684c1.512-.732 2.312-1.856 2.312-3.512s-1.648-3.51-4.688-3.51-4.346.75-5.818 1.94c-.332.27-.588.54-.83.72-.24.178-.882.204-1.054-.212-.208-.504.18-1.064.406-1.334.36-.426 1.24-1.284 2.218-1.78C8.772 4.616 10.14 4 12.048 3.954c1.724-.044 4.448.094 6.41 2.26l.014.014c1.02 1.066 1.34 2.684 1.16 4.01z"/></svg>
|
After Width: | Height: | Size: 1.1 KiB |
1
material/.icons/simple/phoenixframework.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m9.012 15.241-.188-.036c-1.34-.248-2.186-1.06-2.588-2.334-.25-.794.204-1.38 1.038-1.416.682-.032 1.15.36 1.562.816.532.588 1.02 1.216 1.542 1.814.754.86 1.64 1.412 2.854 1.24a5.404 5.404 0 0 0 2.86-1.308c.124-.108.26-.2.392-.302l-.084-.098a6.034 6.034 0 0 1-2.12.252c-1.092-.054-2.132-.282-3.064-.882-.848-.548-1.476-1.28-1.774-2.26-.24-.79.252-1.344 1.072-1.23.313.049.606.187.842.398.2.168.39.346.594.51.958.77 2.294.812 3.508-.022-1.996-.01-3.354-1.108-4.548-2.5-.466-.544-.922-1.1-1.4-1.636-.92-1.038-1.944-1.952-3.346-2.264-1.79-.398-3.518-.136-5.176.622A4.214 4.214 0 0 0 0 5.217h.352c.836-.022 1.464.35 1.916 1.034.328.498.482 1.06.6 1.64.176.86.086 1.734.188 2.598.26 2.22 1.394 3.768 3.506 4.56.774.292 1.568.39 2.45.19v.002zM3.674 5.113c-.334.084-.6-.05-.874-.328.47-.118.886-.164 1.332-.18a.562.562 0 0 1-.458.508zm10.938 12.96c-.03-.212-.212-.306-.356-.42-.634-.492-1.378-.668-2.164-.682a4.08 4.08 0 0 1-1.378-.208c-.204-.076-.43-.174-.426-.436.006-.266.238-.34.448-.404.174-.052.352-.084.548-.13-.5-.32-.988-.364-1.636-.102-1.024.41-2.032.36-3.052-.006-.574-.208-1.086-.534-1.618-.824l-.026.02c.44.722 1.038 1.304 1.71 1.8 1.296.96 2.712 1.53 4.37 1.276a22.8 22.8 0 0 1 1.614-.19c.676-.054 1.32.136 1.966.308v-.002zm-3.124-10.37c-.036-.026-.07-.09-.144-.024a5.258 5.258 0 0 0 2.284 1.776c1.488.604 3 .708 4.544.174 1.2-.414 2.06-.01 2.508 1.156.066-1.352-.73-2.338-1.996-2.53-.712-.11-1.37.128-2.038.32-1.856.54-3.584.274-5.16-.872h.002zm9.256 5.272.726.064c-.546-.48-1.212-.52-1.888-.48-1.026.058-1.766.65-2.44 1.356-.594.624-1.13 1.324-2.016 1.574l.02.04c.12.002.24.008.36.002 1.288-.058 2.5-.33 3.464-1.264.306-.294.576-.62.87-.926.226-.258.562-.394.904-.366zm-2.992-1.596c-.96.084-1.794.48-2.58 1.006-.602.404-1.248.594-1.972.468-.128-.022-.258-.04-.384-.058l-.006.054c.046.024.092.05.14.07.12.048.24.106.364.136 1.396.33 2.732.16 3.936-.618.76-.49 1.546-.582 2.398-.456.086.014.172.028.258.036.08.008.164.088.272 0a3.454 3.454 0 0 0-2.426-.638zm-3.434-3.26a2.68 2.68 0 0 0 1.534-.364c-.154.014-.22.014-.282.026a2.296 2.296 0 0 1-1.96-.472l-.646-.5c-.856-.652-1.836-.872-2.91-.852.018.052.02.088.038.106 1.168 1.18 2.52 1.996 4.226 2.054v.002zm8.452 6.06c-.724-.72-1.694-.81-2.59-.186.594.028 1.04.216 1.4.592.128.134.262.26.404.378.548.44 1.474.46 2.016.052-.636-.248-.636-.248-1.23-.838v.002zm-7.198 5.486c-.634-1.18-1.7-1.448-2.936-1.368.364.1.708.26 1.02.474.286.2.526.448.764.702.472.504 1.208.812 1.696.708-.224-.14-.546-.514-.546-.514h-.012l.008.006.004.018c.004-.02.006-.016.008-.01h.02l-.028-.012v.01l.01.004s.114.208-.008-.018z"/></svg>
|
After Width: | Height: | Size: 2.6 KiB |
1
material/.icons/simple/podcastindex.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5.006.006c-.237.02-.467.103-.647.236C1.727 2.254.173 4.976.292 8.29c.12 3.195 1.675 6.27 4.067 8.046.24.118.48.236.72.236.358 0 .716-.118.956-.473.478-.591.359-1.301-.24-1.656-1.913-1.302-3.11-3.786-3.11-6.153 0-2.485 1.077-4.616 3.11-6.154.599-.355.598-1.183.24-1.656-.225-.37-.636-.508-1.03-.473Zm13.753 0c-.314.03-.613.177-.792.473-.36.473-.36 1.301.238 1.656 2.034 1.538 3.11 3.67 3.11 6.154 0 2.367-1.196 4.851-3.11 6.153-.598.355-.717 1.065-.239 1.656.24.355.6.473.958.473.24 0 .478-.118.718-.236 2.512-1.775 4.067-4.851 4.067-8.046.107-3.313-1.435-6.035-4.067-8.047a1.31 1.31 0 0 0-.883-.236Zm-2.265 3.552a1.2 1.2 0 0 0-.83.376 1.17 1.17 0 0 0 .06 1.669c1.532 1.408 1.663 3.798-.012 5.371a1.195 1.195 0 0 0-.036 1.681 1.2 1.2 0 0 0 1.687.047c2.716-2.556 2.488-6.52-.012-8.827a1.178 1.178 0 0 0-.856-.317zm-8.993.007a1.2 1.2 0 0 0-.856.31c-2.5 2.307-2.727 6.271-.011 8.827a1.2 1.2 0 0 0 1.686-.047 1.17 1.17 0 0 0-.048-1.668C6.597 9.413 6.741 7.022 8.26 5.614a1.17 1.17 0 0 0 .06-1.668 1.148 1.148 0 0 0-.819-.381Zm4.5 2.15a2.571 2.571 0 0 0-2.572 2.57 2.571 2.571 0 0 0 1.193 2.17L7.714 24h2.525l2.877-13.402a2.571 2.571 0 0 0 1.456-2.312A2.571 2.571 0 0 0 12 5.714Z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
1
material/.icons/simple/posthog.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.854 14.5 5 9.647.854 5.5A.5.5 0 0 0 0 5.854V8.44a.5.5 0 0 0 .146.353L5 13.647l.147.146L9.854 18.5l.146.147v-.049c.065.03.134.049.207.049h2.586a.5.5 0 0 0 .353-.854L9.854 14.5zm0-5-4-4a.487.487 0 0 0-.409-.144.515.515 0 0 0-.356.21.493.493 0 0 0-.089.288V8.44a.5.5 0 0 0 .147.353l9 9a.5.5 0 0 0 .853-.354v-2.585a.5.5 0 0 0-.146-.354l-5-5zm1-4a.5.5 0 0 0-.854.354V8.44a.5.5 0 0 0 .147.353l4 4a.5.5 0 0 0 .853-.354V9.854a.5.5 0 0 0-.146-.354l-4-4zm12.647 11.515a3.863 3.863 0 0 1-2.232-1.1l-4.708-4.707a.5.5 0 0 0-.854.354v6.585a.5.5 0 0 0 .5.5H23.5a.5.5 0 0 0 .5-.5v-.6c0-.276-.225-.497-.499-.532zm-5.394.032a.8.8 0 1 1 0-1.6.8.8 0 0 1 0 1.6zM.854 15.5a.5.5 0 0 0-.854.354v2.293a.5.5 0 0 0 .5.5h2.293c.222 0 .39-.135.462-.309a.493.493 0 0 0-.109-.545L.854 15.501zM5 14.647.854 10.5a.5.5 0 0 0-.854.353v2.586a.5.5 0 0 0 .146.353L4.854 18.5l.146.147h2.793a.5.5 0 0 0 .353-.854L5 14.647z"/></svg>
|
After Width: | Height: | Size: 963 B |
1
material/.icons/simple/protoncalendar.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.172 14.818v7.032h-4.276v-1.147c0-.584.21-1.151.592-1.596l3.684-4.288zm-4.93 5.884c0-.741.266-1.46.75-2.022l4.673-5.32c.522-.591 1.524-.92 2.262-.92h.967V7.007a1.919 1.919 0 0 0-1.928-1.914H0v14.295c0 1.36 1.11 2.462 2.482 2.462h7.76v-1.147zM18.8 5.197a2.54 2.54 0 0 1 .747 1.81v5.434H24V4.613c0-1.36-1.11-2.462-2.482-2.462H2.482A2.473 2.473 0 0 0 .006 4.438h16.96c.694 0 1.345.27 1.834.76zm.34 14.742c.817 0 1.45-.451 1.45-1.136a.953.953 0 0 0-.79-.971v-.013a.962.962 0 0 0 .485-.346.944.944 0 0 0 .185-.565c0-.632-.549-1.081-1.343-1.081-.99 0-1.384.712-1.415 1.21h.843a.54.54 0 0 1 .577-.495c.318 0 .549.196.549.48 0 .283-.213.473-.732.473h-.3v.713h.346c.536 0 .807.176.807.492s-.26.532-.655.532a.673.673 0 0 1-.686-.51h-.873c.063.733.683 1.222 1.551 1.217zm2-3.39v.806l.79-.532v3.06h.82v-3.988h-.635l-.974.655z"/></svg>
|
After Width: | Height: | Size: 894 B |