From b64985342055a810af7c81701ff24a977540f7d7 Mon Sep 17 00:00:00 2001 From: Jay Harris Date: Wed, 5 Jun 2024 18:14:25 +1200 Subject: [PATCH 1/2] [Icons]: Don't change color on monochrome icons in updates --- src/scripts/update-icons.js | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/src/scripts/update-icons.js b/src/scripts/update-icons.js index ace9fdaa0..62dec8326 100644 --- a/src/scripts/update-icons.js +++ b/src/scripts/update-icons.js @@ -3,6 +3,7 @@ const fs = require('fs') const path = require('path') const { JSDOM } = require('jsdom') const { optimize } = require('svgo') +const { TinyColor } = require('@ctrl/tinycolor') const RAW_FOLDER = './icons-raw' const FINAL_FOLDER = './icons' @@ -19,6 +20,22 @@ if (!process.env.FIGMA_API_TOKEN) { ) } +/** + * Determines whether a color is allowed in monochrome icons. All other colors + * will be replaced with our Perfect Gray :D + * @param {string} color The color currently being used + * @returns {boolean} whether the color is allowed + */ +const isAllowedColor = (color) => { + const allowedColors = ['FFFFFF', '000000', 'none', 'transparent'] + + if (allowedColors.includes(color)) return true + if (allowedColors.includes(new TinyColor(color).toHex().toUpperCase())) + return true + + return false +} + const getFlag = (iconName) => { const regionRegex = /Country=Region - ((\w|\s)+).svg/ let match = regionRegex.exec(iconName) @@ -33,6 +50,14 @@ const getFlag = (iconName) => { return match[1]?.toUpperCase() } +/** + * Determines whether an icon is probably color, based on its name + * @param {string} name + * @returns {boolean} Whether the icon is probably color + */ +const isProbablyColor = (name) => + name.endsWith('-color.svg') || getFlag(name) || name.startsWith('social') + const getMutatedIconName = (iconName) => { const flag = getFlag(iconName) const name = flag ? `Country-${flag}.svg` : iconName @@ -57,6 +82,22 @@ const mutateIcon = (iconName) => { return } + // Sometimes, we change the default icon color in Figma - we don't really want + // that to trigger an update of all our icons though, so we just always use + // this nice gray. + if (!isProbablyColor(iconName)) { + const idealColor = '#62757E' + for (const filled of document.querySelectorAll('[fill]')) { + if (isAllowedColor(filled.getAttribute('fill'))) continue + filled.setAttribute('fill', idealColor) + } + + for (const stroked of document.querySelectorAll('[stroke]')) { + if (isAllowedColor(stroked.getAttribute('stroke'))) continue + stroked.setAttribute('stroke', idealColor) + } + } + const outputName = getMutatedIconName(iconName) const rejectReasons = new Set() From e9e13a102689b8b5a9b1c6bdfaed772af065306d Mon Sep 17 00:00:00 2001 From: Jay Harris Date: Wed, 5 Jun 2024 18:37:15 +1200 Subject: [PATCH 2/2] [Icons]: Update icons --- icons/add-circle-filled.svg | 1 + icons/brave-icon-search-color.svg | 2 +- icons/brave-icon-search.svg | 2 +- icons/browser-sidebar-right.svg | 2 +- icons/browser-sidebar.svg | 2 +- icons/browser-split-view-horizontal.svg | 1 + icons/browser-split-view-left.svg | 2 +- icons/browser-split-view-right.svg | 2 +- icons/browser-split-view-unsplit.svg | 2 +- icons/browser-split-view-vertical.svg | 1 + icons/browser-split-view.svg | 1 - icons/cart-add.svg | 2 +- icons/cart-cancel.svg | 2 +- icons/cart-checked.svg | 2 +- icons/cart-in.svg | 2 +- icons/cart-loaded.svg | 2 +- icons/cart-out.svg | 2 +- icons/cart-remove.svg | 2 +- icons/cart.svg | 2 +- icons/clipboard-checked.svg | 2 +- icons/clipboard.svg | 2 +- icons/close-circle.svg | 2 +- icons/copy-plain-text.svg | 2 +- icons/copy-styles.svg | 2 +- icons/credit-card-american-express-color.svg | 2 +- icons/credit-card-cartes-bancaires-color.svg | 2 +- icons/credit-card-dinersclub-color.svg | 2 +- icons/credit-card-discover-color.svg | 2 +- icons/credit-card-elo-color.svg | 2 +- icons/credit-card-jcb-color.svg | 2 +- icons/credit-card-maestro-color.svg | 2 +- icons/credit-card-mastercard-color.svg | 2 +- icons/credit-card-unionpay-color.svg | 2 +- icons/credit-card-visa-color.svg | 2 +- icons/creditcard-color.svg | 2 +- icons/cut.svg | 1 + icons/desktop-vpn-error-color.svg | 2 +- icons/desktop-vpn-off-color.svg | 2 +- icons/desktop-vpn-on-color.svg | 2 +- icons/discover.svg | 2 +- icons/document-envelope-back.svg | 2 +- icons/document-envelope-front.svg | 2 +- icons/eth-logo.svg | 2 +- icons/etherscan-color.svg | 2 +- icons/evernote.svg | 2 +- icons/examplecom-color.svg | 2 +- icons/folder-color.svg | 2 +- icons/folder-open-color.svg | 2 +- icons/lifi-color.svg | 1 + icons/message-bubble-write-edit.svg | 1 + icons/message-bubble-write.svg | 2 +- icons/meta.d.ts | 12 ++++++++++-- icons/meta.js | 12 ++++++++++-- icons/microsoft-color.svg | 1 + icons/network-signal-good-color.svg | 2 +- icons/network-signal-great-color.svg | 2 +- icons/network-signal-okay-color.svg | 2 +- icons/network-signal-poor-color.svg | 2 +- icons/ollama-color.svg | 1 + icons/pane-resize.svg | 1 + icons/payment-affirm-color.svg | 2 +- icons/payment-alipay-color.svg | 2 +- icons/payment-amazon-pay-color.svg | 2 +- icons/payment-apple-color.svg | 2 +- icons/payment-apple-pay-color.svg | 2 +- icons/payment-authorize.net-color.svg | 2 +- icons/payment-bancontact-color.svg | 2 +- icons/payment-bat-color.svg | 2 +- icons/payment-bitcoin-cash-color.svg | 2 +- icons/payment-bitcoin-color.svg | 2 +- icons/payment-bitpay-color.svg | 2 +- icons/payment-citadele-color.svg | 2 +- icons/payment-ethereum-color.svg | 2 +- icons/payment-facebook-pay-color.svg | 2 +- icons/payment-forbrugsforeningen-color.svg | 2 +- icons/payment-giropay-color.svg | 2 +- icons/payment-google-pay-color.svg | 2 +- icons/payment-googleplay-color.svg | 2 +- icons/payment-ideal-color.svg | 2 +- icons/payment-interac-color.svg | 2 +- icons/payment-jko-pay-color.svg | 2 +- icons/payment-kakaopay-color.svg | 2 +- icons/payment-klarna-color.svg | 2 +- icons/payment-light-coin-color.svg | 2 +- icons/payment-line-pay-color.svg | 2 +- icons/payment-payline-color.svg | 2 +- icons/payment-payoneer-color.svg | 2 +- icons/payment-paypal-color.svg | 2 +- icons/payment-paypay-color.svg | 2 +- icons/payment-paysafe-color.svg | 2 +- icons/payment-poli-color.svg | 2 +- icons/payment-qiwi-color.svg | 2 +- icons/payment-radom-color.svg | 2 +- icons/payment-samsung-pay-color.svg | 2 +- icons/payment-sepa-color.svg | 2 +- icons/payment-shop-pay-color.svg | 2 +- icons/payment-skrill-color.svg | 2 +- icons/payment-sofort-color.svg | 2 +- icons/payment-square-color.svg | 2 +- icons/payment-stripe-color.svg | 2 +- icons/payment-tappay-color.svg | 2 +- icons/payment-venmo-color.svg | 2 +- icons/payment-verifone-color.svg | 2 +- icons/payment-webmoney-color.svg | 2 +- icons/payment-wechat-pay-color.svg | 2 +- icons/payment-wepay-color.svg | 2 +- icons/payment-worldpay-color.svg | 2 +- icons/payment-zelle-color.svg | 2 +- icons/pocket.svg | 2 +- icons/premium-indicator-color.svg | 2 +- icons/product-bat-monochrome.svg | 2 +- icons/ramp-logo.svg | 2 +- icons/sidepanel-open.svg | 2 +- icons/sidepanel-retract.svg | 2 +- icons/social-brave-outline-favicon-fullheight.svg | 2 +- icons/text-color.svg | 2 +- icons/tune-small.svg | 2 +- icons/verification-filled-color.svg | 2 +- icons/wallet-status-color.svg | 2 +- icons/wallet-warning-color.svg | 2 +- icons/window-tabs-horizontal.svg | 2 +- icons/window-tabs-vertical-expanded.svg | 2 +- 122 files changed, 139 insertions(+), 115 deletions(-) create mode 100644 icons/add-circle-filled.svg create mode 100644 icons/browser-split-view-horizontal.svg create mode 100644 icons/browser-split-view-vertical.svg delete mode 100644 icons/browser-split-view.svg create mode 100644 icons/cut.svg create mode 100644 icons/lifi-color.svg create mode 100644 icons/message-bubble-write-edit.svg create mode 100644 icons/microsoft-color.svg create mode 100644 icons/ollama-color.svg create mode 100644 icons/pane-resize.svg diff --git a/icons/add-circle-filled.svg b/icons/add-circle-filled.svg new file mode 100644 index 000000000..819a8c0ea --- /dev/null +++ b/icons/add-circle-filled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/brave-icon-search-color.svg b/icons/brave-icon-search-color.svg index 4c1b45bd0..aee0b5070 100644 --- a/icons/brave-icon-search-color.svg +++ b/icons/brave-icon-search-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/brave-icon-search.svg b/icons/brave-icon-search.svg index 2e2bbb2c5..a30a08a7f 100644 --- a/icons/brave-icon-search.svg +++ b/icons/brave-icon-search.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-sidebar-right.svg b/icons/browser-sidebar-right.svg index f86c40424..3ade3bda4 100644 --- a/icons/browser-sidebar-right.svg +++ b/icons/browser-sidebar-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-sidebar.svg b/icons/browser-sidebar.svg index 909c2ee5d..3bf4acf6c 100644 --- a/icons/browser-sidebar.svg +++ b/icons/browser-sidebar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-split-view-horizontal.svg b/icons/browser-split-view-horizontal.svg new file mode 100644 index 000000000..9b8bb2143 --- /dev/null +++ b/icons/browser-split-view-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/browser-split-view-left.svg b/icons/browser-split-view-left.svg index 7ce91b330..bb75770e1 100644 --- a/icons/browser-split-view-left.svg +++ b/icons/browser-split-view-left.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-split-view-right.svg b/icons/browser-split-view-right.svg index ceeb14fdc..d047fd115 100644 --- a/icons/browser-split-view-right.svg +++ b/icons/browser-split-view-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-split-view-unsplit.svg b/icons/browser-split-view-unsplit.svg index 30373fa08..7f1597abd 100644 --- a/icons/browser-split-view-unsplit.svg +++ b/icons/browser-split-view-unsplit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/browser-split-view-vertical.svg b/icons/browser-split-view-vertical.svg new file mode 100644 index 000000000..a70385e61 --- /dev/null +++ b/icons/browser-split-view-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/browser-split-view.svg b/icons/browser-split-view.svg deleted file mode 100644 index 30babeb0c..000000000 --- a/icons/browser-split-view.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/icons/cart-add.svg b/icons/cart-add.svg index 3b1f26390..deef93af1 100644 --- a/icons/cart-add.svg +++ b/icons/cart-add.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-cancel.svg b/icons/cart-cancel.svg index e8f1f5d21..5513a3207 100644 --- a/icons/cart-cancel.svg +++ b/icons/cart-cancel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-checked.svg b/icons/cart-checked.svg index 4603ee17e..b598e6748 100644 --- a/icons/cart-checked.svg +++ b/icons/cart-checked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-in.svg b/icons/cart-in.svg index 29db3b60d..f65ec53b3 100644 --- a/icons/cart-in.svg +++ b/icons/cart-in.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-loaded.svg b/icons/cart-loaded.svg index 5ea483075..1b39f5c3c 100644 --- a/icons/cart-loaded.svg +++ b/icons/cart-loaded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-out.svg b/icons/cart-out.svg index ad7a7ea1a..43507678c 100644 --- a/icons/cart-out.svg +++ b/icons/cart-out.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart-remove.svg b/icons/cart-remove.svg index 470be5063..897981032 100644 --- a/icons/cart-remove.svg +++ b/icons/cart-remove.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cart.svg b/icons/cart.svg index fa32b4ec8..338d33c2b 100644 --- a/icons/cart.svg +++ b/icons/cart.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/clipboard-checked.svg b/icons/clipboard-checked.svg index e79d2cad0..2153f5148 100644 --- a/icons/clipboard-checked.svg +++ b/icons/clipboard-checked.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/clipboard.svg b/icons/clipboard.svg index 3fd92d5d6..fe7f5c7ba 100644 --- a/icons/clipboard.svg +++ b/icons/clipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/close-circle.svg b/icons/close-circle.svg index 9e09774d0..36a1bc724 100644 --- a/icons/close-circle.svg +++ b/icons/close-circle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/copy-plain-text.svg b/icons/copy-plain-text.svg index ce2211aeb..594acf058 100644 --- a/icons/copy-plain-text.svg +++ b/icons/copy-plain-text.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/copy-styles.svg b/icons/copy-styles.svg index a8f9fb280..dcde30cbd 100644 --- a/icons/copy-styles.svg +++ b/icons/copy-styles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-american-express-color.svg b/icons/credit-card-american-express-color.svg index 3aa2e8716..c21c68a0f 100644 --- a/icons/credit-card-american-express-color.svg +++ b/icons/credit-card-american-express-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-cartes-bancaires-color.svg b/icons/credit-card-cartes-bancaires-color.svg index 15707f3cd..d50994905 100644 --- a/icons/credit-card-cartes-bancaires-color.svg +++ b/icons/credit-card-cartes-bancaires-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-dinersclub-color.svg b/icons/credit-card-dinersclub-color.svg index 5fc5deb8c..d3b71cfc1 100644 --- a/icons/credit-card-dinersclub-color.svg +++ b/icons/credit-card-dinersclub-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-discover-color.svg b/icons/credit-card-discover-color.svg index 9e07bed4b..0e5e75046 100644 --- a/icons/credit-card-discover-color.svg +++ b/icons/credit-card-discover-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-elo-color.svg b/icons/credit-card-elo-color.svg index 188773c50..e06d1636c 100644 --- a/icons/credit-card-elo-color.svg +++ b/icons/credit-card-elo-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-jcb-color.svg b/icons/credit-card-jcb-color.svg index 07e512bc1..d91167e6e 100644 --- a/icons/credit-card-jcb-color.svg +++ b/icons/credit-card-jcb-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-maestro-color.svg b/icons/credit-card-maestro-color.svg index 657729109..677b82e29 100644 --- a/icons/credit-card-maestro-color.svg +++ b/icons/credit-card-maestro-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-mastercard-color.svg b/icons/credit-card-mastercard-color.svg index bb77753c6..0068b8faf 100644 --- a/icons/credit-card-mastercard-color.svg +++ b/icons/credit-card-mastercard-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-unionpay-color.svg b/icons/credit-card-unionpay-color.svg index e726f4192..4b0c8c804 100644 --- a/icons/credit-card-unionpay-color.svg +++ b/icons/credit-card-unionpay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/credit-card-visa-color.svg b/icons/credit-card-visa-color.svg index 327f52d62..992b6f341 100644 --- a/icons/credit-card-visa-color.svg +++ b/icons/credit-card-visa-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/creditcard-color.svg b/icons/creditcard-color.svg index 88edbbecf..5f5430641 100644 --- a/icons/creditcard-color.svg +++ b/icons/creditcard-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/cut.svg b/icons/cut.svg new file mode 100644 index 000000000..76d165c6f --- /dev/null +++ b/icons/cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/desktop-vpn-error-color.svg b/icons/desktop-vpn-error-color.svg index de4d83e3d..2cf0dc766 100644 --- a/icons/desktop-vpn-error-color.svg +++ b/icons/desktop-vpn-error-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/desktop-vpn-off-color.svg b/icons/desktop-vpn-off-color.svg index 966a5f11f..006a527f0 100644 --- a/icons/desktop-vpn-off-color.svg +++ b/icons/desktop-vpn-off-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/desktop-vpn-on-color.svg b/icons/desktop-vpn-on-color.svg index 73d8d2c0d..19f257d75 100644 --- a/icons/desktop-vpn-on-color.svg +++ b/icons/desktop-vpn-on-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/discover.svg b/icons/discover.svg index 22819a807..4a47bed8e 100644 --- a/icons/discover.svg +++ b/icons/discover.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/document-envelope-back.svg b/icons/document-envelope-back.svg index c0baf99bf..6f4ea8942 100644 --- a/icons/document-envelope-back.svg +++ b/icons/document-envelope-back.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/document-envelope-front.svg b/icons/document-envelope-front.svg index 15ddfc394..b69d07da3 100644 --- a/icons/document-envelope-front.svg +++ b/icons/document-envelope-front.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/eth-logo.svg b/icons/eth-logo.svg index 23b9c9519..016f47832 100644 --- a/icons/eth-logo.svg +++ b/icons/eth-logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/etherscan-color.svg b/icons/etherscan-color.svg index 5a04ddc02..0f2626ffe 100644 --- a/icons/etherscan-color.svg +++ b/icons/etherscan-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/evernote.svg b/icons/evernote.svg index 5395e9a1d..ddb241e58 100644 --- a/icons/evernote.svg +++ b/icons/evernote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/examplecom-color.svg b/icons/examplecom-color.svg index 84a417c7c..9fca6a464 100644 --- a/icons/examplecom-color.svg +++ b/icons/examplecom-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/folder-color.svg b/icons/folder-color.svg index 6b27c27a7..990494a57 100644 --- a/icons/folder-color.svg +++ b/icons/folder-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/folder-open-color.svg b/icons/folder-open-color.svg index f3edb878d..79633761e 100644 --- a/icons/folder-open-color.svg +++ b/icons/folder-open-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/lifi-color.svg b/icons/lifi-color.svg new file mode 100644 index 000000000..ec17baa26 --- /dev/null +++ b/icons/lifi-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/message-bubble-write-edit.svg b/icons/message-bubble-write-edit.svg new file mode 100644 index 000000000..1b80c5585 --- /dev/null +++ b/icons/message-bubble-write-edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/message-bubble-write.svg b/icons/message-bubble-write.svg index 1b80c5585..403e9a320 100644 --- a/icons/message-bubble-write.svg +++ b/icons/message-bubble-write.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/meta.d.ts b/icons/meta.d.ts index 0a4d51ace..1f316e11c 100644 --- a/icons/meta.d.ts +++ b/icons/meta.d.ts @@ -1,7 +1,7 @@ import { StringWithAutoComplete } from '../src/types/string' const meta = { - "updatedAt": 1715933358354, + "updatedAt": 1717970576470, "icons": { "-pac-color": "-pac-color", "0xbtc-color": "0xbtc-color", @@ -23,6 +23,7 @@ const meta = { "actn-color": "actn-color", "ada-color": "ada-color", "adcoin-color": "adcoin-color", + "add-circle-filled": "add-circle-filled", "add-color": "add-color", "add-tab": "add-tab", "adx-color": "adx-color", @@ -252,10 +253,11 @@ const meta = { "browser-refresh": "browser-refresh", "browser-sidebar-right": "browser-sidebar-right", "browser-sidebar": "browser-sidebar", + "browser-split-view-horizontal": "browser-split-view-horizontal", "browser-split-view-left": "browser-split-view-left", "browser-split-view-right": "browser-split-view-right", "browser-split-view-unsplit": "browser-split-view-unsplit", - "browser-split-view": "browser-split-view", + "browser-split-view-vertical": "browser-split-view-vertical", "brz-color": "brz-color", "bsd-color": "bsd-color", "bsv-color": "bsv-color", @@ -696,6 +698,7 @@ const meta = { "currencycom-color": "currencycom-color", "curve-color": "curve-color", "cusdt-color": "cusdt-color", + "cut": "cut", "cvc-color": "cvc-color", "d-color": "d-color", "dai-color": "dai-color", @@ -1114,6 +1117,7 @@ const meta = { "leo-color": "leo-color", "letter-spacing": "letter-spacing", "letter": "letter", + "lifi-color": "lifi-color", "line-height": "line-height", "link-broken": "link-broken", "link-color": "link-color", @@ -1184,6 +1188,7 @@ const meta = { "message-bubble-quote": "message-bubble-quote", "message-bubble-smile": "message-bubble-smile", "message-bubble-text": "message-bubble-text", + "message-bubble-write-edit": "message-bubble-write-edit", "message-bubble-write": "message-bubble-write", "message-bubble": "message-bubble", "meta-color": "meta-color", @@ -1191,6 +1196,7 @@ const meta = { "mft-color": "mft-color", "microphone-off": "microphone-off", "microphone": "microphone", + "microsoft-color": "microsoft-color", "mina-color": "mina-color", "minus": "minus", "miota-color": "miota-color", @@ -1305,6 +1311,7 @@ const meta = { "okex-color": "okex-color", "okx-color": "okx-color", "old-tv": "old-tv", + "ollama-color": "ollama-color", "omg-color": "omg-color", "omni-color": "omni-color", "oneinch-color": "oneinch-color", @@ -1321,6 +1328,7 @@ const meta = { "ox-color": "ox-color", "oxt-color": "oxt-color", "pancakeswap-color": "pancakeswap-color", + "pane-resize": "pane-resize", "panorama": "panorama", "papyrus": "papyrus", "paragraph-down": "paragraph-down", diff --git a/icons/meta.js b/icons/meta.js index eee7cd386..8eb552ff2 100644 --- a/icons/meta.js +++ b/icons/meta.js @@ -1,5 +1,5 @@ export default { - "updatedAt": 1715933358354, + "updatedAt": 1717970576470, "icons": { "-pac-color": "-pac-color", "0xbtc-color": "0xbtc-color", @@ -21,6 +21,7 @@ export default { "actn-color": "actn-color", "ada-color": "ada-color", "adcoin-color": "adcoin-color", + "add-circle-filled": "add-circle-filled", "add-color": "add-color", "add-tab": "add-tab", "adx-color": "adx-color", @@ -250,10 +251,11 @@ export default { "browser-refresh": "browser-refresh", "browser-sidebar-right": "browser-sidebar-right", "browser-sidebar": "browser-sidebar", + "browser-split-view-horizontal": "browser-split-view-horizontal", "browser-split-view-left": "browser-split-view-left", "browser-split-view-right": "browser-split-view-right", "browser-split-view-unsplit": "browser-split-view-unsplit", - "browser-split-view": "browser-split-view", + "browser-split-view-vertical": "browser-split-view-vertical", "brz-color": "brz-color", "bsd-color": "bsd-color", "bsv-color": "bsv-color", @@ -694,6 +696,7 @@ export default { "currencycom-color": "currencycom-color", "curve-color": "curve-color", "cusdt-color": "cusdt-color", + "cut": "cut", "cvc-color": "cvc-color", "d-color": "d-color", "dai-color": "dai-color", @@ -1112,6 +1115,7 @@ export default { "leo-color": "leo-color", "letter-spacing": "letter-spacing", "letter": "letter", + "lifi-color": "lifi-color", "line-height": "line-height", "link-broken": "link-broken", "link-color": "link-color", @@ -1182,6 +1186,7 @@ export default { "message-bubble-quote": "message-bubble-quote", "message-bubble-smile": "message-bubble-smile", "message-bubble-text": "message-bubble-text", + "message-bubble-write-edit": "message-bubble-write-edit", "message-bubble-write": "message-bubble-write", "message-bubble": "message-bubble", "meta-color": "meta-color", @@ -1189,6 +1194,7 @@ export default { "mft-color": "mft-color", "microphone-off": "microphone-off", "microphone": "microphone", + "microsoft-color": "microsoft-color", "mina-color": "mina-color", "minus": "minus", "miota-color": "miota-color", @@ -1303,6 +1309,7 @@ export default { "okex-color": "okex-color", "okx-color": "okx-color", "old-tv": "old-tv", + "ollama-color": "ollama-color", "omg-color": "omg-color", "omni-color": "omni-color", "oneinch-color": "oneinch-color", @@ -1319,6 +1326,7 @@ export default { "ox-color": "ox-color", "oxt-color": "oxt-color", "pancakeswap-color": "pancakeswap-color", + "pane-resize": "pane-resize", "panorama": "panorama", "papyrus": "papyrus", "paragraph-down": "paragraph-down", diff --git a/icons/microsoft-color.svg b/icons/microsoft-color.svg new file mode 100644 index 000000000..f19b7daec --- /dev/null +++ b/icons/microsoft-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/network-signal-good-color.svg b/icons/network-signal-good-color.svg index eb148c0ae..27c891a33 100644 --- a/icons/network-signal-good-color.svg +++ b/icons/network-signal-good-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/network-signal-great-color.svg b/icons/network-signal-great-color.svg index c005ac6ed..f3f01cf7b 100644 --- a/icons/network-signal-great-color.svg +++ b/icons/network-signal-great-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/network-signal-okay-color.svg b/icons/network-signal-okay-color.svg index a6fb15662..8853f940b 100644 --- a/icons/network-signal-okay-color.svg +++ b/icons/network-signal-okay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/network-signal-poor-color.svg b/icons/network-signal-poor-color.svg index 29d079218..83f7dda07 100644 --- a/icons/network-signal-poor-color.svg +++ b/icons/network-signal-poor-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/ollama-color.svg b/icons/ollama-color.svg new file mode 100644 index 000000000..9b92874eb --- /dev/null +++ b/icons/ollama-color.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/pane-resize.svg b/icons/pane-resize.svg new file mode 100644 index 000000000..2806fe13c --- /dev/null +++ b/icons/pane-resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/payment-affirm-color.svg b/icons/payment-affirm-color.svg index 9de94be60..c841e4838 100644 --- a/icons/payment-affirm-color.svg +++ b/icons/payment-affirm-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-alipay-color.svg b/icons/payment-alipay-color.svg index 16a47396e..513080f6b 100644 --- a/icons/payment-alipay-color.svg +++ b/icons/payment-alipay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-amazon-pay-color.svg b/icons/payment-amazon-pay-color.svg index 759f241e1..b460f45b4 100644 --- a/icons/payment-amazon-pay-color.svg +++ b/icons/payment-amazon-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-apple-color.svg b/icons/payment-apple-color.svg index 6c959e95b..0d7ebea2b 100644 --- a/icons/payment-apple-color.svg +++ b/icons/payment-apple-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-apple-pay-color.svg b/icons/payment-apple-pay-color.svg index 06a5b59e0..e5c60de30 100644 --- a/icons/payment-apple-pay-color.svg +++ b/icons/payment-apple-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-authorize.net-color.svg b/icons/payment-authorize.net-color.svg index 3960535d0..11bda8cfd 100644 --- a/icons/payment-authorize.net-color.svg +++ b/icons/payment-authorize.net-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-bancontact-color.svg b/icons/payment-bancontact-color.svg index ae4280882..76210d9b3 100644 --- a/icons/payment-bancontact-color.svg +++ b/icons/payment-bancontact-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-bat-color.svg b/icons/payment-bat-color.svg index 57fff6a01..c17585448 100644 --- a/icons/payment-bat-color.svg +++ b/icons/payment-bat-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-bitcoin-cash-color.svg b/icons/payment-bitcoin-cash-color.svg index b743c4d50..ce6eea6c3 100644 --- a/icons/payment-bitcoin-cash-color.svg +++ b/icons/payment-bitcoin-cash-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-bitcoin-color.svg b/icons/payment-bitcoin-color.svg index 16ea1bc30..0c6195236 100644 --- a/icons/payment-bitcoin-color.svg +++ b/icons/payment-bitcoin-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-bitpay-color.svg b/icons/payment-bitpay-color.svg index 3a55fe161..e43b4f237 100644 --- a/icons/payment-bitpay-color.svg +++ b/icons/payment-bitpay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-citadele-color.svg b/icons/payment-citadele-color.svg index 5ddfd2062..cf42426a6 100644 --- a/icons/payment-citadele-color.svg +++ b/icons/payment-citadele-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-ethereum-color.svg b/icons/payment-ethereum-color.svg index 7f95fab3a..b7c9deabe 100644 --- a/icons/payment-ethereum-color.svg +++ b/icons/payment-ethereum-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-facebook-pay-color.svg b/icons/payment-facebook-pay-color.svg index ad6204660..046c1d9b3 100644 --- a/icons/payment-facebook-pay-color.svg +++ b/icons/payment-facebook-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-forbrugsforeningen-color.svg b/icons/payment-forbrugsforeningen-color.svg index c4ab779f2..09dedbfb7 100644 --- a/icons/payment-forbrugsforeningen-color.svg +++ b/icons/payment-forbrugsforeningen-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-giropay-color.svg b/icons/payment-giropay-color.svg index bd3e721d5..6c6fe5d59 100644 --- a/icons/payment-giropay-color.svg +++ b/icons/payment-giropay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-google-pay-color.svg b/icons/payment-google-pay-color.svg index 0beeeea88..3d28b7cc6 100644 --- a/icons/payment-google-pay-color.svg +++ b/icons/payment-google-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-googleplay-color.svg b/icons/payment-googleplay-color.svg index 9d3085335..5e2cdb503 100644 --- a/icons/payment-googleplay-color.svg +++ b/icons/payment-googleplay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-ideal-color.svg b/icons/payment-ideal-color.svg index 937e5e392..f4208a2c4 100644 --- a/icons/payment-ideal-color.svg +++ b/icons/payment-ideal-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-interac-color.svg b/icons/payment-interac-color.svg index ff431ef6e..c03d536ca 100644 --- a/icons/payment-interac-color.svg +++ b/icons/payment-interac-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-jko-pay-color.svg b/icons/payment-jko-pay-color.svg index 1f8742d7a..575658e98 100644 --- a/icons/payment-jko-pay-color.svg +++ b/icons/payment-jko-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-kakaopay-color.svg b/icons/payment-kakaopay-color.svg index d96bd917f..85ad86500 100644 --- a/icons/payment-kakaopay-color.svg +++ b/icons/payment-kakaopay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-klarna-color.svg b/icons/payment-klarna-color.svg index bec29a67b..8602edeeb 100644 --- a/icons/payment-klarna-color.svg +++ b/icons/payment-klarna-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-light-coin-color.svg b/icons/payment-light-coin-color.svg index 8380617fa..cb7c6d9d1 100644 --- a/icons/payment-light-coin-color.svg +++ b/icons/payment-light-coin-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-line-pay-color.svg b/icons/payment-line-pay-color.svg index a91ec4ea6..19d9a3575 100644 --- a/icons/payment-line-pay-color.svg +++ b/icons/payment-line-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-payline-color.svg b/icons/payment-payline-color.svg index 4e06b3072..ccd42c1ae 100644 --- a/icons/payment-payline-color.svg +++ b/icons/payment-payline-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-payoneer-color.svg b/icons/payment-payoneer-color.svg index a41efec49..7d26b1a24 100644 --- a/icons/payment-payoneer-color.svg +++ b/icons/payment-payoneer-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-paypal-color.svg b/icons/payment-paypal-color.svg index 69fd4c479..c01bc906d 100644 --- a/icons/payment-paypal-color.svg +++ b/icons/payment-paypal-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-paypay-color.svg b/icons/payment-paypay-color.svg index 56a40be40..c42c1286f 100644 --- a/icons/payment-paypay-color.svg +++ b/icons/payment-paypay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-paysafe-color.svg b/icons/payment-paysafe-color.svg index 335c976da..58877de8d 100644 --- a/icons/payment-paysafe-color.svg +++ b/icons/payment-paysafe-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-poli-color.svg b/icons/payment-poli-color.svg index f95950afc..491583884 100644 --- a/icons/payment-poli-color.svg +++ b/icons/payment-poli-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-qiwi-color.svg b/icons/payment-qiwi-color.svg index b9884b9d3..582baf0c8 100644 --- a/icons/payment-qiwi-color.svg +++ b/icons/payment-qiwi-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-radom-color.svg b/icons/payment-radom-color.svg index eec67f362..a8e098989 100644 --- a/icons/payment-radom-color.svg +++ b/icons/payment-radom-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-samsung-pay-color.svg b/icons/payment-samsung-pay-color.svg index 96f4dec3b..375f136f0 100644 --- a/icons/payment-samsung-pay-color.svg +++ b/icons/payment-samsung-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-sepa-color.svg b/icons/payment-sepa-color.svg index c404218aa..d8a6c7c9e 100644 --- a/icons/payment-sepa-color.svg +++ b/icons/payment-sepa-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-shop-pay-color.svg b/icons/payment-shop-pay-color.svg index 439a374e8..8bd385923 100644 --- a/icons/payment-shop-pay-color.svg +++ b/icons/payment-shop-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-skrill-color.svg b/icons/payment-skrill-color.svg index f341bd985..cd14c49ca 100644 --- a/icons/payment-skrill-color.svg +++ b/icons/payment-skrill-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-sofort-color.svg b/icons/payment-sofort-color.svg index 3f7b9089f..265377117 100644 --- a/icons/payment-sofort-color.svg +++ b/icons/payment-sofort-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-square-color.svg b/icons/payment-square-color.svg index dcef4798b..f236d0f2f 100644 --- a/icons/payment-square-color.svg +++ b/icons/payment-square-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-stripe-color.svg b/icons/payment-stripe-color.svg index 0fdcb14d3..e988da29e 100644 --- a/icons/payment-stripe-color.svg +++ b/icons/payment-stripe-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-tappay-color.svg b/icons/payment-tappay-color.svg index fdd137b2c..1bd474df7 100644 --- a/icons/payment-tappay-color.svg +++ b/icons/payment-tappay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-venmo-color.svg b/icons/payment-venmo-color.svg index bf5157793..6e1da2ebb 100644 --- a/icons/payment-venmo-color.svg +++ b/icons/payment-venmo-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-verifone-color.svg b/icons/payment-verifone-color.svg index ad3d65a44..d465633bc 100644 --- a/icons/payment-verifone-color.svg +++ b/icons/payment-verifone-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-webmoney-color.svg b/icons/payment-webmoney-color.svg index e10a858ed..cf08ad695 100644 --- a/icons/payment-webmoney-color.svg +++ b/icons/payment-webmoney-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-wechat-pay-color.svg b/icons/payment-wechat-pay-color.svg index 84cecccfa..166edeb15 100644 --- a/icons/payment-wechat-pay-color.svg +++ b/icons/payment-wechat-pay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-wepay-color.svg b/icons/payment-wepay-color.svg index e58b9b280..2a2d9b503 100644 --- a/icons/payment-wepay-color.svg +++ b/icons/payment-wepay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-worldpay-color.svg b/icons/payment-worldpay-color.svg index 042c8d85c..184d5b8ee 100644 --- a/icons/payment-worldpay-color.svg +++ b/icons/payment-worldpay-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/payment-zelle-color.svg b/icons/payment-zelle-color.svg index 66fa71e70..022fbbc84 100644 --- a/icons/payment-zelle-color.svg +++ b/icons/payment-zelle-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/pocket.svg b/icons/pocket.svg index 9adb7ab7c..5b5a43caf 100644 --- a/icons/pocket.svg +++ b/icons/pocket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/premium-indicator-color.svg b/icons/premium-indicator-color.svg index a9a0e6192..4bde6c3d8 100644 --- a/icons/premium-indicator-color.svg +++ b/icons/premium-indicator-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/product-bat-monochrome.svg b/icons/product-bat-monochrome.svg index 4e964f7d1..5c368f206 100644 --- a/icons/product-bat-monochrome.svg +++ b/icons/product-bat-monochrome.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/ramp-logo.svg b/icons/ramp-logo.svg index 09f002a0b..c86907615 100644 --- a/icons/ramp-logo.svg +++ b/icons/ramp-logo.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/sidepanel-open.svg b/icons/sidepanel-open.svg index 31450bb31..4e97814c0 100644 --- a/icons/sidepanel-open.svg +++ b/icons/sidepanel-open.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/sidepanel-retract.svg b/icons/sidepanel-retract.svg index 175b491ca..5d2d464bd 100644 --- a/icons/sidepanel-retract.svg +++ b/icons/sidepanel-retract.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/social-brave-outline-favicon-fullheight.svg b/icons/social-brave-outline-favicon-fullheight.svg index 583d0b087..995ead932 100644 --- a/icons/social-brave-outline-favicon-fullheight.svg +++ b/icons/social-brave-outline-favicon-fullheight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/text-color.svg b/icons/text-color.svg index 7112bab9a..a6c83a25b 100644 --- a/icons/text-color.svg +++ b/icons/text-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/tune-small.svg b/icons/tune-small.svg index 9f127bc31..0901927c2 100644 --- a/icons/tune-small.svg +++ b/icons/tune-small.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/verification-filled-color.svg b/icons/verification-filled-color.svg index 7fbb071a5..39bc37a45 100644 --- a/icons/verification-filled-color.svg +++ b/icons/verification-filled-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/wallet-status-color.svg b/icons/wallet-status-color.svg index 5bb10bb88..6a7ee809b 100644 --- a/icons/wallet-status-color.svg +++ b/icons/wallet-status-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/wallet-warning-color.svg b/icons/wallet-warning-color.svg index 2d1996bd2..072814887 100644 --- a/icons/wallet-warning-color.svg +++ b/icons/wallet-warning-color.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/window-tabs-horizontal.svg b/icons/window-tabs-horizontal.svg index 3384306c1..2508ede55 100644 --- a/icons/window-tabs-horizontal.svg +++ b/icons/window-tabs-horizontal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/window-tabs-vertical-expanded.svg b/icons/window-tabs-vertical-expanded.svg index 47fb6a532..17e558295 100644 --- a/icons/window-tabs-vertical-expanded.svg +++ b/icons/window-tabs-vertical-expanded.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file