remove unused resources
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
|
@ -32,7 +32,6 @@
|
|||
"emojilib"
|
||||
"eth-phishing-detect"
|
||||
"react-native-config"
|
||||
"react-native-svg"
|
||||
"react-native-screens"
|
||||
"react-native-keychain"
|
||||
"rn-snoopy"
|
||||
|
@ -71,7 +70,6 @@
|
|||
"emojilib"
|
||||
"eth-phishing-detect"
|
||||
"react-native-config"
|
||||
"react-native-svg"
|
||||
"react-native-keychain"
|
||||
"rn-snoopy"
|
||||
"rn-snoopy/stream/bars"
|
||||
|
|
|
@ -1,41 +0,0 @@
|
|||
(ns status-im.ui.components.svg
|
||||
(:require [clojure.string :as string]
|
||||
[hickory.core :as hickory]))
|
||||
|
||||
(def svg-tags #{:svg :g :rect :path :use :defs :circle})
|
||||
|
||||
(defmacro slurp-svg [file]
|
||||
"Reads svg file, and return function (fn [color] ..), which returns hiccup structure for react-native-svg lib
|
||||
|
||||
Example
|
||||
|
||||
SVG:
|
||||
<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"25\" height=\"25\" viewBox=\"0 0 25 25\">\n
|
||||
<path fill=\"\" fill-rule=\"evenodd\" d=\"M13.5416667,11.4583333 L13.5416667,6.2571307 C13.5416667,5.67702996 13.0752966,5.20833333 12.5,5.20833333 C11.9206925,5.20833333 11.4583333,5.67789591 11.4583333,6.2571307 L11.4583333,11.4583333 L6.2571307,11.4583333 C5.67702996,11.4583333 5.20833333,11.9247034 5.20833333,12.5 C5.20833333,13.0793075 5.67789591,13.5416667 6.2571307,13.5416667 L11.4583333,13.5416667 L11.4583333,18.7428693 C11.4583333,19.32297 11.9247034,19.7916667 12.5,19.7916667 C13.0793075,19.7916667 13.5416667,19.3221041 13.5416667,18.7428693 L13.5416667,13.5416667 L18.7428693,13.5416667 C19.32297,13.5416667 19.7916667,13.0752966 19.7916667,12.5 C19.7916667,11.9206925 19.3221041,11.4583333 18.7428693,11.4583333 L13.5416667,11.4583333 Z\"/>\n
|
||||
</svg>
|
||||
|
||||
Result:
|
||||
(fn [color]
|
||||
[path {:fill color :fill-rule \"evenodd\" :d \"M13.5416667...\"}]
|
||||
|
||||
Attention!!!: Please make sure svg file has fill field, and has structure like above
|
||||
"
|
||||
(let [svg (-> (clojure.core/slurp file)
|
||||
(string/replace #"[\n]\s*" ""))
|
||||
svg-hiccup (hickory/as-hiccup (first (hickory/parse-fragment svg)))
|
||||
color (gensym "args")]
|
||||
`(fn [~color]
|
||||
~(into []
|
||||
(clojure.walk/postwalk-replace
|
||||
{:viewbox :viewBox} ;; See https://github.com/jhy/jsoup/issues/272
|
||||
(clojure.walk/prewalk
|
||||
(fn [node]
|
||||
(if (svg-tags node)
|
||||
(symbol (name node))
|
||||
(if (vector? node)
|
||||
(let [[k v] node]
|
||||
(if (and (= :fill k) v)
|
||||
[k color]
|
||||
node))
|
||||
node)))
|
||||
svg-hiccup))))))
|
|
@ -87,7 +87,6 @@
|
|||
"react-native-qrcode": "0.2.6",
|
||||
"react-native-securerandom": "git+https://github.com/status-im/react-native-securerandom.git#0.1.1-2",
|
||||
"react-native-splash-screen": "3.0.6",
|
||||
"react-native-svg": "6.3.1",
|
||||
"react-native-tcp": "3.3.0",
|
||||
"react-native-udp": "2.2.1",
|
||||
"react-native-webview-bridge": "git+https://github.com/status-im/react-native-webview-bridge.git#0.33.16-status-rn049-desktop",
|
||||
|
|
|
@ -60,7 +60,6 @@
|
|||
B24FC7FF1DE7195F00D694FF /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B24FC7FE1DE7195F00D694FF /* MessageUI.framework */; };
|
||||
B2DEA0D01E49E33300FA28D6 /* libRCTHttpServer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B2DEA0B11E49E32000FA28D6 /* libRCTHttpServer.a */; };
|
||||
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */; };
|
||||
B49246102225D86900DE94D5 /* mapview in Resources */ = {isa = PBXBuildFile; fileRef = B492460F2225D86900DE94D5 /* mapview */; };
|
||||
B957A49EB0DE44D9A31CAF2D /* libRNSVG.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AF2BF381BC7B4EB0887F0091 /* libRNSVG.a */; };
|
||||
BA68A2377A20496EA737000D /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E586E1B0E544F64AA9F5BD1 /* libz.tbd */; };
|
||||
C93242561FE1C68C00FE7099 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C93242531FE1C68C00FE7099 /* libRCTAnimation.a */; };
|
||||
|
@ -635,7 +634,6 @@
|
|||
B2F2D1BB1D9D531B00B7B453 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = StatusIm/Images.xcassets; sourceTree = "<group>"; };
|
||||
B321D25F4493470980039457 /* Inter-BoldItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-BoldItalic.otf"; path = "../resources/fonts/Inter-BoldItalic.otf"; sourceTree = "<group>"; };
|
||||
B461988B2210C98F00603CF2 /* RNCWebView.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNCWebView.xcodeproj; path = "../node_modules/react-native-webview/ios/RNCWebView.xcodeproj"; sourceTree = "<group>"; };
|
||||
B492460F2225D86900DE94D5 /* mapview */ = {isa = PBXFileReference; lastKnownFileType = folder; name = mapview; path = ../resources/mapview; sourceTree = "<group>"; };
|
||||
C2A4E93F6B154AEFA3485B45 /* libTcpSockets.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libTcpSockets.a; sourceTree = "<group>"; };
|
||||
C6B1215047604CD59A4C74D6 /* Inter-MediumItalic.otf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "Inter-MediumItalic.otf"; path = "../resources/fonts/Inter-MediumItalic.otf"; sourceTree = "<group>"; };
|
||||
CD48A32459B64E96843BB238 /* libRealmReact.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRealmReact.a; sourceTree = "<group>"; };
|
||||
|
@ -828,7 +826,6 @@
|
|||
1E7837547A9A40E18AD63CF3 /* Resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
B492460F2225D86900DE94D5 /* mapview */,
|
||||
983F07442119C9D2004133ED /* message.wav */,
|
||||
2028E0111D4275BD00227DCD /* SF */,
|
||||
B23B48FE1E76917B006D4535 /* RobotoMono-Medium.ttf */,
|
||||
|
@ -1871,7 +1868,6 @@
|
|||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
B49246102225D86900DE94D5 /* mapview in Resources */,
|
||||
983F077E2119C9D2004133ED /* message.wav in Resources */,
|
||||
74B758FC20D7C00B003343C3 /* launch-image-universal.storyboard in Resources */,
|
||||
B2F2D1BC1D9D531B00B7B453 /* Images.xcassets in Resources */,
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
(def dismiss-keyboard (js-require/js-require "dismissKeyboard"))
|
||||
(def image-crop-picker (js-require/js-require "react-native-image-crop-picker"))
|
||||
(def image-resizer (js-require/js-require "react-native-image-resizer"))
|
||||
(def svg (js/require "react-native-svg"))
|
||||
(def react-native-firebase (js-require/js-require "react-native-firebase"))
|
||||
(def snoopy (js-require/js-require "rn-snoopy"))
|
||||
(def snoopy-filter (js-require/js-require "rn-snoopy/stream/filter"))
|
||||
|
|
|
@ -1,227 +0,0 @@
|
|||
{meta {:name "Kyber UI"
|
||||
:description "Kyber exchange"
|
||||
:documentation ""}
|
||||
|
||||
events/on-transaction-receipt
|
||||
(let [{value :value} properties]
|
||||
[store/put {:key "RECEIPT" :value value}])
|
||||
|
||||
events/on-trade-result
|
||||
(let [{value :value} properties]
|
||||
[ethereum/await-transaction-receipt {:interval 1000 :value value :on-success [on-transaction-receipt]}])
|
||||
|
||||
events/trade
|
||||
(let [{src-address :src-address dest-address :dest-address amount-in-wei :amount-in-wei address :address slippage :slippage} properties]
|
||||
[ethereum/send-transaction {:to "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
|
||||
:method "trade(address,uint256,address,address,uint256,uint256,address)"
|
||||
:gas "600000"
|
||||
:params [src-address amount-in-wei dest-address address "57896044618658097711785492504343953926634992332820282019728792003956564819968" slippage "0xD8a38Ae058fB6a6A6CB9517cF9Bc1730a6E15617"]
|
||||
:on-success [on-trade-result]}])
|
||||
events/approve
|
||||
(let [{src-address :src-address dest-address :dest-address address :address amount-in-wei :amount-in-wei slippage :slippage} properties]
|
||||
;; Approve Kyber contract for further transfer
|
||||
[ethereum/send-transaction {:to src-address
|
||||
:method "approve(address,uint256)"
|
||||
:params ["0x818E6FECD516Ecc3849DAf6845e3EC868087B755" amount-in-wei]
|
||||
:gas "100000"
|
||||
:on-success [trade {:address address :amount-in-wei amount-in-wei :slippage slippage :src-address src-address :dest-address dest-address}]}])
|
||||
|
||||
views/render-token
|
||||
(let [{name :name {source :source} :icon} properties]
|
||||
[view {:style {:height 64 :margin-horizontal 16 :flex-direction :row :align-items :center}}
|
||||
[image {:source source :style {:width 40 :height 40}}]
|
||||
[text {:style {:margin-left 16 :font-size 16 :color :black}} name]])
|
||||
|
||||
events/aputs
|
||||
(let [{key :key selection :selection source :source symbol :symbol rate :rate value :value} properties]
|
||||
[store/puts {:value [{:key key :value {:selection selection :source source :symbol symbol}}
|
||||
{:key "RATE" :value {:value rate}}
|
||||
{:key "AMOUNT-TO-RECEIVE" :value value}]}])
|
||||
|
||||
events/on-rate-result
|
||||
(let [{key :key amount :amount selection :selection source :source symbol :symbol [_ slippage :as result] :value} properties]
|
||||
[arithmetic {:operation :times :values [amount slippage]
|
||||
:on-result [aputs {:key key :amount amount :rate result :selection selection :source source :symbol symbol}]}])
|
||||
|
||||
;; TODO Consider Kyber tokens list (require view lifecycle?)
|
||||
;; TODO react on amount changes too
|
||||
;; TODO hook completion screens (require case support?)
|
||||
;; TODO proper error handling
|
||||
|
||||
events/on-src-rate-params-change
|
||||
(let [{key :key amount :amount amount-in-wei :amount-in-wei dest-address :dest-address address :address selection :name {source :source} :icon symbol :symbol} properties]
|
||||
[ethereum/call {:to "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
|
||||
:method "getExpectedRate(address,address,uint256)"
|
||||
:params [address dest-address amount-in-wei]
|
||||
:outputs ["uint256" "uint256"]
|
||||
:on-success [on-rate-result {:key key :amount amount :selection selection :source source :symbol symbol}]}])
|
||||
|
||||
events/on-dest-rate-params-change
|
||||
(let [{key :key amount :amount amount-in-wei :amount-in-wei src-address :src-address address :address selection :name {source :source} :icon symbol :symbol} properties]
|
||||
[ethereum/call {:to "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
|
||||
:method "getExpectedRate(address,address,uint256)"
|
||||
:params [src-address address amount-in-wei]
|
||||
:outputs ["uint256" "uint256"]
|
||||
:on-success [on-rate-result {:key key :amount amount :selection selection :source source :symbol symbol}]}])
|
||||
|
||||
events/bputs
|
||||
(let [{amount :amount rate :rate value :value} properties]
|
||||
[store/puts {:value [{:key "RATE" :value {:value rate}}
|
||||
{:key "AMOUNT" :value amount}
|
||||
{:key "AMOUNT-TO-RECEIVE" :value value}]}])
|
||||
|
||||
events/on-amount-rate-result
|
||||
(let [{amount :amount [_ slippage :as result] :result} properties]
|
||||
[arithmetic {:operation :times :values [amount slippage]
|
||||
:on-result [bputs {:amount amount :rate result}]}])
|
||||
|
||||
events/on-amount-params-change
|
||||
(let [{amount :value src-address :src-address dest-address :dest-address} properties]
|
||||
[ethereum/call {:to "0x818E6FECD516Ecc3849DAf6845e3EC868087B755"
|
||||
:method "getExpectedRate(address,address,uint256)"
|
||||
:params [src-address dest-address amount-in-wei]
|
||||
:outputs ["uint256" "uint256"]
|
||||
:on-success [on-amount-rate-result {:amount amount}]}])
|
||||
|
||||
events/store-amount
|
||||
(let [{amount :value} properties]
|
||||
[store/put {:key "AMOUNT" :value amount}])
|
||||
|
||||
views/sign-to-confirm
|
||||
(let [{color :color} properties]
|
||||
[view {:style {:flex-direction :row :margin-vertical 14 :align-items :center}}
|
||||
[view {:style {:flex 1}}]
|
||||
[text {:style {:color color :font-size 15 :margin-right 5}} "Sign to confirm"]
|
||||
[icon {:key :main-icons/next :color color}]])
|
||||
|
||||
views/transaction-failed-panel
|
||||
(let [{} properties]
|
||||
[view {:style {:flex 1 :background-color "#4360df"}}
|
||||
[view {:style {:flex 1 :justify-content :center :align-items :center}}
|
||||
[view {:style {:background-color :white :width 56 :height 56 :border-radius 28 :align-items :center :justify-content :center}}
|
||||
[icon {:key :main-icons/check :color "#4360df"}]]
|
||||
[text {:style {:color :white :font-size 17 :margin-top 16}} "Transaction Failed"]
|
||||
[text {:style {:color "rgba(255,255,255,0.6)" :font-size 15 :margin-top 8}} "Sorry :("]
|
||||
[view {:style {:height 1 :background-color :white :opacity 0.2}}]
|
||||
[view {:style {:flex 1}}]
|
||||
[touchable-opacity {:on-press [store/put {:key "completed?" :value false}]}
|
||||
[text {:style {:color :white :font-size 15 :margin-top 16}} "Try again"]]]])
|
||||
|
||||
views/transaction-pending-panel
|
||||
(let [{} properties]
|
||||
[view {:style {:flex 1 :background-color "#4360df"}}
|
||||
[view {:style {:flex 1 :justify-content :center :align-items :center :margin-top 200}}
|
||||
[view {:style {:background-color :white :width 56 :height 56 :border-radius 28 :align-items :center :justify-content :center}}
|
||||
[icon {:key :main-icons/check :color "#4360df"}]]
|
||||
[text {:style {:color :white :font-size 17 :margin-top 16}} "Transaction Pending"]
|
||||
[text {:style {:color "rgba(255,255,255,0.6)" :font-size 15 :margin-top 8 :margin-horizontal 40}}
|
||||
"Your transaction is pending confirmation on the blockchain. You can check its status in your transaction history."]
|
||||
[view {:style {:flex 1}}]
|
||||
[view {:style {:height 1 :background-color :white :opacity 0.2}}]
|
||||
[touchable-opacity {:on-press [store/put {:key "completed?" :value false}]}
|
||||
[text {:style {:color :white :font-size 15 :margin-bottom 14 :margin-top 18}} "Back to wallet"]]]])
|
||||
|
||||
views/transaction-completed-panel
|
||||
(let [{tokenname1 :tokenname1 tokenname2 :tokenname2 source1 :source1 source2 :source2 address :address} properties]
|
||||
[view {:style {:flex 1 :background-color "#4360df"}}
|
||||
[view {:style {:flex 1 :justify-content :center :align-items :center}}
|
||||
[view {:style {:background-color :white :width 56 :height 56 :border-radius 28 :align-items :center :justify-content :center}}
|
||||
[icon {:key :main-icons/check :color "#4360df"}]]
|
||||
[text {:style {:color :white :font-size 17 :margin-top 16}} "Transaction Confirmed"]
|
||||
[view {:style {:height 1 :background-color :white :opacity 0.2}}]
|
||||
[touchable-opacity {:on-press [store/put {:key "completed?" :value false}]}
|
||||
[text {:style {:color :white :font-size 15 :margin-top 16}} "Back to exchange"]]]
|
||||
[view {:style {:flex 1 :background-color :white :padding-horizontal 16 :padding-top 23}}
|
||||
[text {:style {:font-size 15}} "You exchanged"]
|
||||
[view {:style {:border-color "#EEF2F5" :border-radius 8 :border-width 1 :flex-direction :row :margin-top 6 :padding 15 :align-items :center}}
|
||||
[image {:source source1 :style {:width 30 :height 30}}]
|
||||
[text {:style {:flex 1 :font-size 15 :margin-left 12}} tokenname1]]
|
||||
[view {:style {:flex 1}}]
|
||||
[text {:style {:font-size 15}} "You received"]
|
||||
[view {:style {:border-color "#EEF2F5" :border-radius 8 :border-width 1 :flex-direction :row :margin-top 6 :padding 15 :align-items :center}}
|
||||
[image {:source source2 :style {:width 30 :height 30}}]
|
||||
[text {:style {:flex 1 :font-size 15 :margin-left 12}} tokenname2]]
|
||||
[view {:style {:flex 1}}]]])
|
||||
|
||||
views/transaction-panel
|
||||
(let [m properties
|
||||
{status :status} [store/get {:key "RECEIPT"}]]
|
||||
(if status
|
||||
[transaction-completed-panel m]
|
||||
[transaction-pending-panel m]))
|
||||
|
||||
views/kyber-panel
|
||||
{:component-will-mount [store/clear-all]
|
||||
:view
|
||||
(let [{address :address} properties
|
||||
visible-tokens [wallet/tokens {:visible true}]
|
||||
tokens [wallet/tokens]
|
||||
{tokenname1 :selection source1 :source src-symbol :symbol} [store/get {:key "SRC"}]
|
||||
{tokenname2 :selection source2 :source dest-symbol :symbol} [store/get {:key "DEST"}]
|
||||
completed? [store/get {:key "completed?"}]
|
||||
amount [store/get {:key "AMOUNT"}]
|
||||
amount-to-receive-in-wei [store/get {:key "AMOUNT-TO-RECEIVE"}]
|
||||
{[expected slippage-in-wei] :value} [store/get {:key "RATE"}]
|
||||
{slippage :amount} [wallet/token {:token "ETH" :amount-in-wei slippage-in-wei}] ;; Kyber returns slippage with 18 decimals
|
||||
{amount-to-receive :amount} [wallet/token {:token "ETH" :amount-in-wei amount-to-receive-in-wei}]
|
||||
{src-decimals :decimals src-address :address amount-in-wei :amount-in-wei} [wallet/token {:token src-symbol :amount amount}]
|
||||
{dest-decimals :decimals dest-address :address} [wallet/token {:token dest-symbol}]
|
||||
{balance :value} [wallet/balance {:token src-symbol}]]
|
||||
(if completed?
|
||||
[transaction-panel {:source1 source1 :source2 source2 :tokenname1 tokenname1 :tokenname2 tokenname2 :address completed?}]
|
||||
[view {:style {:flex 1 :background-color "#4360df" :padding-horizontal 16 :padding-top 20}}
|
||||
[scroll-view {:keyboard-should-persist-taps :always}
|
||||
[view {:style {:flex 1}}
|
||||
[text {:style {:color :white :font-size 15}} "I want to exchange"]
|
||||
[touchable-opacity {:on-press [selection-screen {:title "Choose asset" :items visible-tokens :on-select [on-src-rate-params-change {:key "SRC" :amount amount :dest-address dest-address :amount-in-wei amount-in-wei}]
|
||||
:render [render-token] :extractor-key :name}]}
|
||||
[view {:style {:flex-direction :row :margin-top 8 :border-radius 8 :height 52 :background-color "rgba(255,255,255,0.1)"
|
||||
:align-items :center :padding-horizontal 14}}
|
||||
[image {:source source1 :style {:width 30 :height 30}}]
|
||||
(if tokenname1
|
||||
[view {:style {:flex 1 :flex-direction :column}}
|
||||
[view {:style {:flex-direction :row}}
|
||||
[text {:style {:margin-left 16 :color :white :font-size 15}} tokenname1]
|
||||
[text {:style {:margin-left 16 :color :white :font-size 15 :opacity 0.6}} src-symbol]]
|
||||
[text {:style {:margin-left 16 :color :white :font-size 15 :opacity 0.6}} "Available: ${balance}"]]
|
||||
[text {:style {:flex 1 :color :white :margin-left 12}} "Select token"])
|
||||
[icon {:key :main-icons/next :color :white}]]]
|
||||
[text {:style {:color :white :font-size 15 :margin-top 28}} "Amount"]
|
||||
[view {:style {:flex-direction :row :margin-top 8 :border-radius 8 :height 52 :background-color "rgba(255,255,255,0.1)"
|
||||
:align-items :center :padding-horizontal 14 :margin-bottom 32}}
|
||||
[input {:style {:color :white :flex 1} :placeholder "Specify amount..." :placeholder-text-color "rgba(255,255,255,0.6)" :selection-color :white :keyboard-type :decimal-pad
|
||||
:on-change [store-amount {:amount amount :src-address src-address :dest-address dest-address}]}]]
|
||||
[view {:style {:flex 1}}]
|
||||
[view {:style {:height 1 :background-color :white :opacity 0.2}}]
|
||||
[view {:style {:flex 1}}]
|
||||
[text {:style {:color :white :font-size 15 :margin-top 32}} "I want to recieve"]
|
||||
[touchable-opacity {:on-press [selection-screen {:title "Choose asset" :items tokens :on-select [on-dest-rate-params-change {:key "DEST" :amount amount :src-address src-address :amount-in-wei amount-in-wei}]
|
||||
:render [render-token] :extractor-key :name}]}
|
||||
[view {:style {:flex-direction :row :margin-top 8 :border-radius 8 :height 52 :background-color "rgba(255,255,255,0.1)"
|
||||
:align-items :center :padding-horizontal 14}}
|
||||
(when source2
|
||||
[image {:source source2 :style {:width 30 :height 30}}])
|
||||
(if tokenname2
|
||||
[view {:style {:flex 1 :flex-direction :row}}
|
||||
[text {:style {:margin-left 16 :color :white :font-size 15}} tokenname2]
|
||||
[text {:style {:margin-left 16 :color :white :font-size 15 :opacity 0.6}} dest-symbol]]
|
||||
[text {:style {:flex 1 :color :white :margin-left 12}} "Select token"])
|
||||
[icon {:key :main-icons/next :color :white}]]]
|
||||
[text {:style {:color :white :opacity 0.6 :font-size 15 :margin-top 28}} "Amount to receive"]
|
||||
[view {:style {:flex-direction :row :margin-top 8 :border-radius 8 :height 52 :border-color "rgba(255,255,255,0.1)" :border-width 1
|
||||
:align-items :center :padding-horizontal 14}}
|
||||
[text {:style {:color :white}} amount-to-receive]]
|
||||
(when slippage
|
||||
[text {:style {:margin-top 16 :color :white :opacity 0.6}} "1 ${src-symbol} = ${slippage} ${dest-symbol}"])
|
||||
[view {:style {:flex 1}}]
|
||||
[text {:style {:color :white :opacity 0.6}} "Powered by Kyber Network"]
|
||||
[view {:style {:height 1 :background-color :white :opacity 0.2}}]]]
|
||||
(if slippage
|
||||
[touchable-opacity {:on-press [approve {:slippage slippage-in-wei :amount-in-wei amount-in-wei
|
||||
:src-address src-address :dest-address dest-address :address address}]}
|
||||
[sign-to-confirm {:color :white}]]
|
||||
[sign-to-confirm {:color "#FFFFFF66"}])]))}
|
||||
|
||||
hooks/wallet.settings.kyber
|
||||
{:label "Exchange Assets"
|
||||
:view [kyber-panel]}}
|
|
@ -1,3 +0,0 @@
|
|||
<svg width="5" height="17" viewBox="0 0 5 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.43853 16.1688C1.23853 16.1688 1.03853 16.0688 0.838532 15.9688C0.338532 15.6687 0.238531 15.0688 0.538531 14.5688C1.93853 12.5688 2.63853 10.3688 2.63853 8.06875C2.63853 5.76875 1.93853 3.56875 0.538531 1.56875C0.338531 1.06875 0.438531 0.46875 0.938531 0.16875C1.33853 -0.13125 1.93853 -0.03125 2.33853 0.46875C3.93853 2.76875 4.73853 5.46875 4.73853 8.16875C4.73853 10.8687 3.93853 13.4687 2.33853 15.8687C2.13853 16.0687 1.73853 16.1688 1.43853 16.1688Z" fill="#4360DF"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 588 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="4" height="12" viewBox="0 0 4 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.23853 11.4687C1.03853 11.4687 0.838532 11.3687 0.638532 11.2687C0.238532 10.9687 0.138533 10.2687 0.438533 9.86874C1.33853 8.66874 1.83853 7.36874 1.83853 6.06874C1.83853 4.76874 1.43853 3.46874 0.538532 2.26874C0.138532 1.86874 0.238532 1.26874 0.738532 0.868739C1.13853 0.568739 1.83853 0.668739 2.13853 1.06874C3.23853 2.66874 3.83853 4.26874 3.83853 6.06874C3.83853 7.86874 3.23853 9.46874 2.03853 11.0687C1.83853 11.3687 1.53853 11.4687 1.23853 11.4687Z" fill="#4360DF"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 590 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="3" height="8" viewBox="0 0 3 8" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M1.03854 7.46876C0.838535 7.46876 0.538535 7.36876 0.438535 7.26876C0.0385354 6.86876 -0.0614647 6.26876 0.338535 5.86876C0.838535 5.26876 1.03854 4.66876 1.03854 4.16876C1.03854 3.56876 0.838535 2.96876 0.338535 2.36876C-0.161465 1.96876 -0.0614647 1.26876 0.338535 0.968757C0.738535 0.668757 1.43854 0.668757 1.73854 1.06876C2.53854 2.06876 2.93854 3.06876 2.93854 4.06876C2.93854 5.16876 2.53854 6.16876 1.73854 7.06876C1.63854 7.36876 1.33854 7.46876 1.03854 7.46876Z" fill="#4360DF"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 598 B |
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="46" height="46" viewBox="0 0 144 152">
|
||||
<g stroke="none" stroke-width="1" fill-rule="evenodd">
|
||||
<path fill="" d="M41.85,82.81 C61.54,81.7 73.88,86.18 93.57,85.07 C98.4541022,84.8006381 103.305626,84.1080412 108.07,83 C105.16,118.58 79.34,149.68 44.34,151.68 C22.83,152.86 1.33,139.92 0.16,118.86 C-0.98,98.16 15.18,84.31 41.85,82.81 Z M99.53,73.91 C79,75.1 66.1,70.31 45.54,71.5 C40.4407254,71.7827279 35.3770963,72.5223591 30.41,73.71 C33.44,35.69 60.35,2.43 96.94,0.32 C119.39,-0.98 141.83,12.89 143.05,35.39 C144.24,57.51 127.38,72.31 99.53,73.91 Z"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 633 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 11V6.00685C13 5.44995 12.5523 5 12 5C11.4439 5 11 5.45078 11 6.00685V11H6.00685C5.44995 11 5 11.4477 5 12C5 12.5561 5.45078 13 6.00685 13H11V17.9932C11 18.5501 11.4477 19 12 19C12.5561 19 13 18.5492 13 17.9932V13H17.9932C18.5501 13 19 12.5523 19 12C19 11.4439 18.5492 11 17.9932 11H13Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 458 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4C6.34315 4 5 5.34315 5 7C5 8.65685 6.34315 10 8 10C9.65685 10 11 8.65685 11 7C11 5.34315 9.65685 4 8 4ZM3 7C3 4.23858 5.23858 2 8 2C10.7614 2 13 4.23858 13 7C13 9.76142 10.7614 12 8 12C5.23858 12 3 9.76142 3 7ZM5 16C3.89543 16 3 16.8954 3 18V20C3 20.5523 2.55228 21 2 21C1.44772 21 1 20.5523 1 20V18C1 15.7909 2.79086 14 5 14H11C13.2091 14 15 15.7909 15 18V20C15 20.5523 14.5523 21 14 21C13.4477 21 13 20.5523 13 20V18C13 16.8954 12.1046 16 11 16H5Z" fill="black"/>
|
||||
<path d="M21 8C21 7.44772 20.5523 7 20 7C19.4477 7 19 7.44772 19 8V10H17C16.4477 10 16 10.4477 16 11C16 11.5523 16.4477 12 17 12H19V14C19 14.5523 19.4477 15 20 15C20.5523 15 21 14.5523 21 14V12H23C23.5523 12 24 11.5523 24 11C24 10.4477 23.5523 10 23 10H21V8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 897 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5.70703 5.29288C5.31665 4.90237 4.68335 4.90237 4.29297 5.29288C3.90234 5.6835 3.90234 6.31656 4.29297 6.70718L9.58569 12L4.29297 17.2929C3.90234 17.6835 3.90234 18.3166 4.29297 18.7072C4.68335 19.0977 5.31665 19.0977 5.70703 18.7072L11.707 12.7072C12.0977 12.3166 12.0977 11.6835 11.707 11.2929L5.70703 5.29288Z" fill="black"/>
|
||||
<path d="M13 17C12.4478 17 12 17.4478 12 18C12 18.5523 12.4478 19 13 19H19C19.5522 19 20 18.5523 20 18C20 17.4478 19.5522 17 19 17H13Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 593 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.02088 9H11.126C11.5701 10.7252 13.1362 12 15 12C16.8638 12 18.4299 10.7252 18.874 9H20.9461C21.5282 9 22 8.55228 22 8C22 7.44772 21.5282 7 20.9461 7H18.874C18.4299 5.27477 16.8638 4 15 4C13.1362 4 11.5701 5.27477 11.126 7H3.02088C2.45706 7 2 7.44772 2 8C2 8.55228 2.45706 9 3.02088 9ZM15 6C13.8954 6 13 6.89543 13 8C13 9.10457 13.8954 10 15 10C16.1046 10 17 9.10457 17 8C17 6.89543 16.1046 6 15 6Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.9791 15L12.8737 15C12.4297 13.2748 10.8636 12 8.99976 12C7.13592 12 5.56982 13.2748 5.12577 15L3.05388 15C2.47184 15 2 15.4477 2 16C2 16.5523 2.47184 17 3.05388 17L5.12577 17C5.56982 18.7252 7.13592 20 8.99976 20C10.8636 20 12.4297 18.7252 12.8737 17L20.9791 17C21.5429 17 22 16.5523 22 16C22 15.4477 21.5429 15 20.9791 15ZM8.99976 18C10.1043 18 10.9998 17.1046 10.9998 16C10.9998 14.8954 10.1043 14 8.99976 14C7.89519 14 6.99976 14.8954 6.99976 16C6.99976 17.1046 7.89519 18 8.99976 18Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.34577 11.0477L11.8333 8.62758C12.2104 8.26074 12.2141 7.65332 11.8313 7.28088C11.4458 6.90586 10.8287 6.90756 10.447 7.27888L6.28397 11.329C6.09577 11.5121 6.00059 11.7551 6.00005 11.9989C5.99762 12.246 6.09347 12.4883 6.28397 12.6737L10.447 16.7238C10.8241 17.0906 11.4485 17.0942 11.8313 16.7218C12.2168 16.3467 12.215 15.7464 11.8333 15.3751L9.34577 12.955H17.0242C17.5533 12.955 18 12.528 18 12.0013C18 11.471 17.5631 11.0477 17.0242 11.0477H9.34577Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 626 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.622 13L12.2916 15.3191C11.9097 15.6992 11.904 16.3275 12.2899 16.7115C12.6785 17.0982 13.3022 17.0947 13.6891 16.7098L17.7084 12.7099C17.8777 12.5414 17.9731 12.3241 17.9932 12.101C18.0276 11.8115 17.9321 11.51 17.7084 11.2873L13.6891 7.28743C13.3071 6.90728 12.6758 6.90169 12.2899 7.28571C11.9013 7.67242 11.9048 8.29314 12.2916 8.67811L14.6248 11H6.99558C6.44484 11 6 11.4477 6 12C6 12.5561 6.44574 13 6.99558 13H14.622Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 596 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 9.37802L15.3191 11.7083C15.6992 12.0903 16.3275 12.096 16.7115 11.7101C17.0982 11.3215 17.0947 10.6978 16.7098 10.3109L12.7099 6.29165C12.5414 6.12231 12.3241 6.02694 12.101 6.00684C11.8115 5.97242 11.51 6.06792 11.2873 6.29165L7.28743 10.3109C6.90728 10.6929 6.90169 11.3242 7.28571 11.7101C7.67242 12.0987 8.29314 12.0952 8.67811 11.7084L11 9.3752L11 17.0044C11 17.5552 11.4477 18 12 18C12.5561 18 13 17.5543 13 17.0044L13 9.37802Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 606 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.00687 11.8984C7.02704 11.6739 7.1228 11.4552 7.29281 11.2857L14.3042 4.29206C14.6926 3.90467 15.3188 3.9012 15.7089 4.29033C16.0963 4.67677 16.0907 5.30894 15.7072 5.69148L9.38119 12.0014L15.7072 18.3114C16.0956 18.6987 16.099 19.3234 15.7089 19.7125C15.3215 20.0989 14.6877 20.0933 14.3042 19.7108L7.29281 12.7172C7.06819 12.4931 6.97231 12.1897 7.00687 11.8984Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 535 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 3C7.05573 3 6.16656 3.44458 5.6 4.2L1.1 10.2C0.3 11.2667 0.3 12.7333 1.1 13.8L5.6 19.8C6.16656 20.5554 7.05573 21 8 21H20C21.6569 21 23 19.6569 23 18V6C23 4.34315 21.6569 3 20 3H8ZM7.2 5.4C7.38885 5.14819 7.68524 5 8 5H20C20.5523 5 21 5.44772 21 6V18C21 18.5523 20.5523 19 20 19H8C7.68524 19 7.38885 18.8518 7.2 18.6L2.7 12.6C2.43333 12.2444 2.43333 11.7556 2.7 11.4L7.2 5.4ZM16.8285 15.8284C16.438 16.2189 15.8048 16.2189 15.4143 15.8284L13.0001 13.4142L10.5859 15.8284C10.1954 16.219 9.5622 16.219 9.17168 15.8284C8.78115 15.4379 8.78115 14.8047 9.17168 14.4142L11.5859 12L9.17168 9.58577C8.78116 9.19524 8.78116 8.56208 9.17168 8.17156C9.56221 7.78103 10.1954 7.78103 10.5859 8.17156L13.0001 10.5858L15.4143 8.17158C15.8048 7.78106 16.438 7.78106 16.8285 8.17158C17.2191 8.56211 17.2191 9.19527 16.8285 9.5858L14.4143 12L16.8285 14.4142C17.2191 14.8047 17.2191 15.4379 16.8285 15.8284Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20ZM10.8826 10.8826L9.76514 14.2349L13.1174 13.1174L14.2349 9.76514L10.8826 10.8826ZM16.7647 8.50023L14.8567 14.2242C14.7571 14.5228 14.5228 14.7571 14.2242 14.8567L8.50023 16.7647C7.71847 17.0253 6.97473 16.2815 7.23532 15.4998L9.14332 9.77577C9.24285 9.47717 9.47717 9.24285 9.77577 9.14332L15.4998 7.23532C16.2815 6.97473 17.0253 7.71847 16.7647 8.50023Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 709 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.6001 4.2C12.2445 3.93333 11.7556 3.93333 11.4001 4.2L2.60006 10.8C2.15823 11.1314 1.53143 11.0418 1.20006 10.6C0.868688 10.1582 0.958231 9.53137 1.40006 9.2L10.2001 2.6C11.2667 1.8 12.7334 1.8 13.8001 2.6L22.6001 9.2C23.0419 9.53137 23.1314 10.1582 22.8001 10.6C22.4687 11.0418 21.8419 11.1314 21.4001 10.8L12.6001 4.2Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 12.5C4.55228 12.5 5 12.9477 5 13.5V17C5 17.5523 5.44772 18 6 18H8V15C8 12.7909 9.79086 11 12 11C14.2091 11 16 12.7909 16 15V18H18C18.5523 18 19 17.5523 19 17V13.5C19 12.9477 19.4477 12.5 20 12.5C20.5523 12.5 21 12.9477 21 13.5V17C21 18.6569 19.6569 20 18 20H6C4.34315 20 3 18.6569 3 17V13.5C3 12.9477 3.44772 12.5 4 12.5ZM14 18V15C14 13.8954 13.1046 13 12 13C10.8954 13 10 13.8954 10 15V18H14Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 914 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.82065 3H14.6459C15.3676 3.00331 15.9403 3.4848 16.1598 4.09552L16.5945 5.28571H18.9212C20.7015 5.28571 22 6.85613 22 8.57143V17.7143C22 19.4296 20.7015 21 18.9212 21H5.0788C3.29847 21 2 19.4296 2 17.7143V8.57143C2 6.85613 3.29847 5.28571 5.0788 5.28571H6.86748L7.30211 4.09558C7.52164 3.48483 8.09434 3.00332 8.81607 3.00001L8.82065 3ZM9.10101 5L8.26629 7.28571H5.0788C4.5774 7.28571 4 7.77788 4 8.57143V17.7143C4 18.5078 4.5774 19 5.0788 19H18.9212C19.4226 19 20 18.5078 20 17.7143V8.57143C20 7.77788 19.4226 7.28571 18.9212 7.28571H15.1957L14.3609 5H9.10101ZM11.9439 11C10.8453 11 10 11.8692 10 13C10 14.1308 10.8453 15 11.9439 15C13.0913 15 14 14.0816 14 13C14 11.9184 13.0913 11 11.9439 11ZM8 13C8 10.8283 9.67818 9 11.9439 9C14.1607 9 16 10.7791 16 13C16 15.2209 14.1607 17 11.9439 17C9.67818 17 8 15.1717 8 13Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 988 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM20 12C20 16.4183 16.4183 20 12 20C10.1513 20 8.44905 19.3729 7.09437 18.3199L18.3199 7.09437C19.3729 8.44905 20 10.1513 20 12ZM16.9057 5.68016C15.551 4.62709 13.8487 4 12 4C7.58172 4 4 7.58172 4 12C4 13.8487 4.62709 15.551 5.68016 16.9057L16.9057 5.68016Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 538 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M3.23178 6.64021C2.92274 6.26936 2.92274 5.73069 3.23178 5.35984L5.73178 2.35984C6.08534 1.93556 6.71591 1.87824 7.14018 2.2318C7.56446 2.58537 7.62179 3.21593 7.26822 3.64021L6.13502 5.00005L16 5.00005C16.0003 5.00005 15.9997 5.00005 16 5.00005C18.7611 5.00047 21 7.23889 21 10C21 10.5523 20.5523 11 20 11C19.4477 11 19 10.5523 19 10C19 8.3432 17.6569 7.00005 16 7.00005C16.0003 7.00005 15.9997 7.00005 16 7.00005H6.13506L7.26822 8.35984C7.62179 8.78412 7.56446 9.41468 7.14018 9.76825C6.71591 10.1218 6.08534 10.0645 5.73178 9.64021L3.23178 6.64021Z" fill="black"/>
|
||||
<path d="M20.7682 17.3598C21.0773 17.7306 21.0773 18.2693 20.7682 18.6402L18.2682 21.6402C17.9147 22.0644 17.2841 22.1218 16.8598 21.7682C16.4355 21.4146 16.3782 20.7841 16.7318 20.3598L17.865 19H8C7.99974 19 8.00026 19 8 19C5.23893 18.9995 3 16.7611 3 14C3 13.4477 3.44772 13 4 13C4.55228 13 5 13.4477 5 14C5 15.6568 6.34315 17 8 17C7.99967 17 8.00033 17 8 17H17.8649L16.7318 15.6402C16.3782 15.2159 16.4355 14.5853 16.8598 14.2318C17.2841 13.8782 17.9147 13.9355 18.2682 14.3598L20.7682 17.3598Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.7071 6.29289C20.0976 6.68342 20.0976 7.31658 19.7071 7.70711L9.70711 17.7071C9.31658 18.0976 8.68342 18.0976 8.29289 17.7071L4.29289 13.7071C3.90237 13.3166 3.90237 12.6834 4.29289 12.2929C4.68342 11.9024 5.31658 11.9024 5.70711 12.2929L9 15.5858L18.2929 6.29289C18.6834 5.90237 19.3166 5.90237 19.7071 6.29289Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 484 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10.574L7.72275 6.2968C7.32616 5.90021 6.68994 5.90241 6.29617 6.29617C5.89966 6.69269 5.90269 7.32864 6.2968 7.72275L10.574 12L6.2968 16.2772C5.90021 16.6738 5.90241 17.3101 6.29617 17.7038C6.69269 18.1003 7.32864 18.0973 7.72275 17.7032L12 13.426L16.2772 17.7032C16.6738 18.0998 17.3101 18.0976 17.7038 17.7038C18.1003 17.3073 18.0973 16.6714 17.7032 16.2772L13.426 12L17.7032 7.72275C18.0998 7.32616 18.0976 6.68994 17.7038 6.29617C17.3073 5.89966 16.6714 5.90269 16.2772 6.2968L12 10.574Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 664 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.96875 15.25C8.77637 15.5834 9.01685 16 9.40186 16H10.5564C10.7351 16 10.9001 15.9047 10.9895 15.75L15.0308 8.75C15.2231 8.41663 14.9827 8 14.5979 8H13.4434C13.2649 8 13.0996 8.09534 13.0105 8.25L8.96875 15.25Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4C5.79077 4 4 5.79089 4 8V16C4 18.2091 5.79077 20 8 20H16C18.2092 20 20 18.2091 20 16V8C20 5.79089 18.2092 4 16 4H8ZM6 8C6 6.89539 6.89551 6 8 6H16C17.1045 6 18 6.89539 18 8V16C18 17.1046 17.1045 18 16 18H8C6.89551 18 6 17.1046 6 16V8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 645 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C10.3431 3 9 4.34315 9 6V12C9 13.6569 10.3431 15 12 15H18C19.6569 15 21 13.6569 21 12V6C21 4.34315 19.6569 3 18 3H12ZM11 6C11 5.44772 11.4477 5 12 5H18C18.5523 5 19 5.44772 19 6V12C19 12.5523 18.5523 13 18 13H12C11.4477 13 11 12.5523 11 12V6Z" fill="black"/>
|
||||
<path d="M6 9H7V11H6C5.44772 11 5 11.4477 5 12V18C5 18.5523 5.44772 19 6 19H12C12.5523 19 13 18.5523 13 18V17H15V18C15 19.6569 13.6569 21 12 21H6C4.34315 21 3 19.6569 3 18V12C3 10.3431 4.34315 9 6 9Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 632 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.184 6H9.84583C9.23067 6 8.91984 6.03348 8.75135 6.06602C8.63018 6.08942 8.57605 6.11185 8.47793 6.16433C8.33758 6.23939 8.23939 6.33758 8.16433 6.47793C8.11185 6.57605 8.08942 6.63018 8.06602 6.75135C8.03348 6.91984 8 7.23067 8 7.84583V9H6V7.84583C6 6.50855 6.13924 6.02362 6.4007 5.53473C6.66216 5.04584 7.04584 4.66216 7.53473 4.4007C8.02362 4.13924 8.50855 4 9.84583 4H12.184C13.9152 4 15.2782 4.32489 16.419 4.93496C17.5597 5.54504 18.455 6.4403 19.065 7.58104C19.6751 8.72178 20 10.0848 20 11.816V12.184C20 13.9152 19.6751 15.2782 19.065 16.419C18.455 17.5597 17.5597 18.455 16.419 19.065C15.2782 19.6751 13.9152 20 12.184 20H9.84583C8.50855 20 8.02362 19.8608 7.53473 19.5993C7.04584 19.3378 6.66216 18.9542 6.4007 18.4653C6.13924 17.9764 6 17.4915 6 16.1542V15H8V16.1542C8 16.7693 8.03348 17.0802 8.06602 17.2487C8.08942 17.3698 8.11185 17.4239 8.16433 17.5221C8.23939 17.6624 8.33758 17.7606 8.47793 17.8357C8.57605 17.8882 8.63018 17.9106 8.75134 17.934C8.91984 17.9665 9.23067 18 9.84583 18H12.184C13.6558 18 14.681 17.7265 15.4758 17.3014C16.268 16.8777 16.8777 16.268 17.3014 15.4758C17.7265 14.681 18 13.6558 18 12.184V11.816C18 10.3442 17.7265 9.31902 17.3014 8.52424C16.8777 7.73203 16.268 7.12227 15.4758 6.69859C14.681 6.27354 13.6558 6 12.184 6Z" fill="black"/>
|
||||
<path d="M5 11C4.44772 11 4 11.4477 4 12C4 12.5523 4.44772 13 5 13H11C11.5523 13 12 12.5523 12 12C12 11.4477 11.5523 11 11 11H5Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.59141 4.75746C9.7027 4.3123 10.1027 4 10.5616 4H13.4384C13.8973 4 14.2973 4.3123 14.4086 4.75746L14.7192 6H9.28078L9.59141 4.75746ZM7.97909 8C7.99357 8.00032 8.00802 8.00031 8.02242 8H15.9776C15.992 8.00031 16.0064 8.00032 16.0209 8H20C20.5523 8 21 7.55228 21 7C21 6.44772 20.5523 6 20 6H16.7808L16.3489 4.27239C16.015 2.93689 14.8151 2 13.4384 2H10.5616C9.18495 2 7.985 2.93689 7.65113 4.27239L7.21922 6H4C3.44772 6 3 6.44772 3 7C3 7.55228 3.44772 8 4 8H7.97909ZM5.9005 10.005C6.45004 9.95001 6.94008 10.351 6.99504 10.9005L7.81494 19.0995C7.86606 19.6107 8.29622 20 8.80998 20H15.19C15.7038 20 16.1339 19.6107 16.1851 19.0995L17.005 10.9005C17.0599 10.351 17.55 9.95001 18.0995 10.005C18.649 10.0599 19.05 10.55 18.995 11.0995L18.1751 19.2985C18.0218 20.8321 16.7313 22 15.19 22H8.80998C7.26872 22 5.97822 20.8321 5.82486 19.2985L5.00496 11.0995C4.95001 10.55 5.35095 10.0599 5.9005 10.005Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 5C4.34315 5 3 6.34315 3 8C3 9.02458 3.00001 10.0492 3.00002 11.0738C3.00004 13.0492 3.00007 15.0246 3.00001 17H2C1.44772 17 1 17.4477 1 18C1 18.5523 1.44772 19 2 19H2.99992H21H22C22.5523 19 23 18.5523 23 18C23 17.4477 22.5523 17 22 17H21V8C21 6.34315 19.6569 5 18 5H6ZM19 17V8C19 7.44772 18.5523 7 18 7H6C5.44772 7 5 7.44772 5 8V17H19Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 507 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0013 12.6809L8.62758 9.28104C8.26074 8.91136 7.65332 8.90774 7.28088 9.28306C6.90586 9.66099 6.90756 10.266 7.27888 10.6402L11.329 14.7216C11.5121 14.9061 11.7551 14.9994 11.9989 15C12.246 15.0023 12.4883 14.9084 12.6737 14.7216L16.7238 10.6402C17.0906 10.2705 17.0942 9.65837 16.7218 9.28306C16.3467 8.90513 15.7464 8.90684 15.3751 9.28104L12.0013 12.6809Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 530 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.9987 11.3191L15.3724 14.719C15.7393 15.0886 16.3467 15.0923 16.7191 14.7169C17.0941 14.339 17.0924 13.734 16.7211 13.3598L12.671 9.2784C12.4879 9.0939 12.2449 9.00058 12.0011 9.00004C11.754 8.99766 11.5117 9.09164 11.3263 9.2784L7.27623 13.3598C6.90938 13.7295 6.9058 14.3416 7.27823 14.7169C7.65326 15.0949 8.2536 15.0932 8.62492 14.719L11.9987 11.3191Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 527 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.0606 2.64645C18.4749 2.06066 17.5251 2.06066 16.9393 2.64645L9.88046 9.70532C9.36783 10.218 9.00415 10.8603 8.82831 11.5636L8.02985 14.7575C7.94464 15.0982 8.04449 15.4587 8.29288 15.7071C8.54126 15.9555 8.90176 16.0553 9.24252 15.9701L12.4364 15.1717C13.1397 14.9958 13.782 14.6322 14.2947 14.1195L21.3535 7.06066C21.9393 6.47487 21.9393 5.52513 21.3535 4.93934L19.0606 2.64645ZM17.8232 4.59099C17.9208 4.49336 18.0791 4.49336 18.1768 4.59099L19.409 5.82322C19.5066 5.92086 19.5066 6.07915 19.409 6.17678L12.8805 12.7053C12.6241 12.9616 12.303 13.1435 11.9513 13.2314L10.7786 13.5246C10.5955 13.5703 10.4297 13.4045 10.4754 13.2214L10.7686 12.0487C10.8565 11.697 11.0384 11.3759 11.2947 11.1195L17.8232 4.59099Z" fill="black"/>
|
||||
<path d="M6 7C6 6.44772 6.44772 6 7 6H10C10.5523 6 11 5.55229 11 5C11 4.44772 10.5523 4 10 4H7C5.34314 4 4 5.34315 4 7V17C4 18.6569 5.34314 20 7 20H17C18.6569 20 20 18.6569 20 17V14C20 13.4477 19.5523 13 19 13C18.4477 13 18 13.4477 18 14V17C18 17.5523 17.5523 18 17 18H7C6.44772 18 6 17.5523 6 17V7Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M19 7H5C4.44772 7 4 7.44772 4 8C4 8.55228 4.44772 9 5 9H19C19.5523 9 20 8.55228 20 8C20 7.44772 19.5523 7 19 7ZM17 11H7C6.44772 11 6 11.4477 6 12C6 12.5523 6.44772 13 7 13H17C17.5523 13 18 12.5523 18 12C18 11.4477 17.5523 11 17 11ZM10 15H14C14.5523 15 15 15.4477 15 16C15 16.5523 14.5523 17 14 17H10C9.44772 17 9 16.5523 9 16C9 15.4477 9.44772 15 10 15Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 522 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.45195 13.7537L7.2628 12.9529C6.35513 12.6209 5.88848 11.6159 6.22051 10.7082C6.26559 10.585 6.32437 10.4673 6.39576 10.3572L12.7426 1.57132C13.1741 0.905892 14.2085 1.27836 14.1168 2.06616L13.2038 8.90766C13.1909 9.01831 13.2528 9.12413 13.3555 9.16716L16.3685 10.4291C17.2599 10.8025 17.6799 11.8278 17.3065 12.7193C17.2769 12.79 17.2427 12.8588 17.204 12.925L11.3982 21.8775C11.0052 22.5512 9.97273 22.252 10.0009 21.4725L10.2717 14.9728C10.2912 14.4318 9.96034 13.9397 9.45195 13.7537Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 620 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12.2559 5.07824L7.65425 11.1734C7.64405 11.1891 7.63566 11.206 7.62922 11.2236C7.58178 11.3532 7.64845 11.4968 7.77812 11.5442L9.96726 12.345C11.0857 12.7542 11.8137 13.8367 11.7707 15.0269L11.6077 18.5415L15.9083 12.1692C15.9763 12.0125 15.9163 11.866 15.789 11.8126L12.7761 10.5507C12.0568 10.2495 11.6237 10.5087 11.7139 9.73419L12.2559 5.07824ZM9.45195 13.7537L7.2628 12.9529C6.35513 12.6209 5.88848 11.6159 6.22051 10.7082C6.26559 10.585 6.32437 10.4673 6.39576 10.3572L12.7426 1.57132C13.1741 0.905892 14.2085 1.27836 14.1168 2.06616L13.2038 8.90766C13.1909 9.01831 13.2528 9.12413 13.3555 9.16716L16.3685 10.4291C17.2599 10.8025 17.6799 11.8278 17.3065 12.7193C17.2769 12.79 17.2427 12.8588 17.204 12.925L11.3982 21.8775C11.0052 22.5512 9.97273 22.252 10.0009 21.4725L10.2717 14.9728C10.2912 14.4318 9.96034 13.9397 9.45195 13.7537Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 969 B |
|
@ -1,6 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11 8C11 10.2091 9.20921 12 6.99998 12C4.79075 12 2.99998 10.2091 2.99998 8C2.99998 5.79089 4.79075 4 6.99998 4C9.20921 4 11 5.79089 11 8ZM8.99998 8C8.99998 9.10461 8.10448 10 6.99998 10C5.89549 10 4.99998 9.10461 4.99998 8C4.99998 6.89539 5.89549 6 6.99998 6C8.10448 6 8.99998 6.89539 8.99998 8Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 11C21 13.2091 19.2092 15 17 15C14.7908 15 13 13.2091 13 11C13 8.79089 14.7908 7 17 7C19.2092 7 21 8.79089 21 11ZM19 11C19 12.1046 18.1045 13 17 13C15.8955 13 15 12.1046 15 11C15 9.89539 15.8955 9 17 9C18.1045 9 19 9.89539 19 11Z" fill="black"/>
|
||||
<path d="M2.55199 16.9336L2.21336 16.6343C1.86693 16.3281 1.87718 15.7845 2.23509 15.4918L2.63573 15.1639C3.74315 14.4288 5.07127 14.0005 6.49998 14H7.49998C8.92943 14 10.2585 14.4285 11.3664 15.1639L11.7671 15.4918C12.125 15.7845 12.1352 16.3281 11.7888 16.6343L11.4502 16.9336C11.2036 17.1515 10.844 17.1832 10.5632 17.0121L9.99998 16.6688C9.26463 16.2435 8.41063 16 7.49998 16H6.50218C5.59154 16 4.73753 16.2435 4.00218 16.6688L3.43895 17.0121C3.15819 17.1832 2.79857 17.1515 2.55199 16.9336Z" fill="black"/>
|
||||
<path d="M12.052 19.9336L11.7134 19.6343C11.3669 19.3281 11.3772 18.7845 11.7351 18.4918L12.1357 18.1639C13.2436 17.4285 14.5727 17 16.0022 17H18.0022C19.4316 17 20.7607 17.4285 21.8686 18.1639L22.2693 18.4918C22.6272 18.7845 22.6374 19.3281 22.291 19.6343L21.9524 19.9336C21.9128 19.9686 21.8701 19.9989 21.8254 20.0242C21.7868 20.046 21.7468 20.0642 21.7058 20.0787C21.602 20.1154 21.4917 20.1288 21.3826 20.1182C21.2727 20.1074 21.164 20.0723 21.0654 20.0121L20.5022 19.6688C19.7668 19.2435 18.9128 19 18.0022 19H16.0022C15.0915 19 14.2375 19.2435 13.5022 19.6688L12.9389 20.0121C12.6582 20.1832 12.2986 20.1515 12.052 19.9336Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.9 KiB |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.25 17.25C13.25 17.8023 12.8023 18.25 12.25 18.25H11.75C11.1977 18.25 10.75 17.8023 10.75 17.25V16.75C10.75 16.1977 11.1977 15.75 11.75 15.75H12.25C12.8023 15.75 13.25 16.1977 13.25 16.75V17.25Z" fill="black"/>
|
||||
<path d="M10.5858 8.58579C10.9488 8.22276 11.4474 8 12 8C13.1046 8 14 8.89543 14 10C14 11.1046 13.1046 12 12 12C11.4477 12 11 12.4477 11 13C11 13.5523 11.4477 14 12 14C14.2091 14 16 12.2091 16 10C16 7.79086 14.2091 6 12 6C10.8957 6 9.89433 6.44881 9.17157 7.17157C8.78105 7.5621 8.78105 8.19526 9.17157 8.58579C9.56209 8.97631 10.1953 8.97631 10.5858 8.58579Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5228 22 12 22C6.47716 22 2 17.5228 2 12C2 6.47715 6.47716 2 12 2C17.5228 2 22 6.47715 22 12ZM12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4C7.58173 4 4 7.58172 4 12C4 16.4183 7.58173 20 12 20Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 994 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 3C5.34315 3 4 4.34315 4 6V18C4 19.6569 5.34315 21 7 21H17C18.6569 21 20 19.6569 20 18V6C20 4.34315 18.6569 3 17 3H7ZM6 6C6 5.44772 6.44772 5 7 5H17C17.5523 5 18 5.44772 18 6V18C18 18.5523 17.5523 19 17 19H7C6.44772 19 6 18.5523 6 18V6ZM9 7C8.44772 7 8 7.44772 8 8C8 8.55228 8.44772 9 9 9H15C15.5523 9 16 8.55228 16 8C16 7.44772 15.5523 7 15 7H9ZM8 12C8 11.4477 8.44772 11 9 11H15C15.5523 11 16 11.4477 16 12C16 12.5523 15.5523 13 15 13H9C8.44772 13 8 12.5523 8 12ZM9 15C8.44772 15 8 15.4477 8 16C8 16.5523 8.44772 17 9 17H15C15.5523 17 16 16.5523 16 16C16 15.4477 15.5523 15 15 15H9Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 755 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 12C16 14.2091 14.2092 16 12 16C9.79077 16 8 14.2091 8 12C8 9.79089 9.79077 8 12 8C14.2092 8 16 9.79089 16 12ZM14 12C14 13.1046 13.1045 14 12 14C10.8955 14 10 13.1046 10 12C10 10.8954 10.8955 10 12 10C13.1045 10 14 10.8954 14 12Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5229 22 12 22C6.47705 22 2 17.5228 2 12C2 6.47717 6.47705 2 12 2C17.5229 2 22 6.47717 22 12ZM20 12C20 16.4183 16.4182 20 12 20C7.58179 20 4 16.4183 4 12C4 7.58167 7.58179 4 12 4C16.4182 4 20 7.58167 20 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 693 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4C6.34315 4 5 5.34315 5 7C5 8.65685 6.34315 10 8 10C9.65685 10 11 8.65685 11 7C11 5.34315 9.65685 4 8 4ZM3 7C3 4.23858 5.23858 2 8 2C10.7614 2 13 4.23858 13 7C13 9.76142 10.7614 12 8 12C5.23858 12 3 9.76142 3 7ZM5 16C3.89543 16 3 16.8954 3 18V20C3 20.5523 2.55228 21 2 21C1.44772 21 1 20.5523 1 20V18C1 15.7909 2.79086 14 5 14H11C13.2091 14 15 15.7909 15 18V20C15 20.5523 14.5523 21 14 21C13.4477 21 13 20.5523 13 20V18C13 16.8954 12.1046 16 11 16H5Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.7071 8.29289C23.0976 8.68342 23.0976 9.31658 22.7071 9.70711L18.7071 13.7071C18.3166 14.0976 17.6834 14.0976 17.2929 13.7071L15.2929 11.7071C14.9024 11.3166 14.9024 10.6834 15.2929 10.2929C15.6834 9.90237 16.3166 9.90237 16.7071 10.2929L18 11.5858L21.2929 8.29289C21.6834 7.90237 22.3166 7.90237 22.7071 8.29289Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1004 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 15.9513C13 16.5035 12.5522 16.9513 12 16.9513C11.4478 16.9513 11 16.5035 11 15.9513V11.0304C11 11.0304 11 10 12 10C12.8345 10 13 10.8843 13 11.0304V15.9513Z" fill="black"/>
|
||||
<path d="M13 8C13 8.55225 12.5522 9 12 9C11.4478 9 11 8.55225 11 8C11 7.44775 11.4478 7 12 7C12.5522 7 13 7.44775 13 8Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 17.5228 6.47705 22 12 22C17.5229 22 22 17.5228 22 12C22 6.47717 17.5229 2 12 2C6.47705 2 2 6.47717 2 12ZM20 12C20 16.4183 16.4182 20 12 20C7.58179 20 4 16.4183 4 12C4 7.58167 7.58179 4 12 4C16.4182 4 20 7.58167 20 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 716 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 6H20C20.5523 6 21 6.44772 21 7V17C21 17.5523 20.5523 18 20 18H4C3.44769 18 3 17.5523 3 17V7C3 6.44772 3.44769 6 4 6ZM1 7C1 5.34314 2.34314 4 4 4H20C21.6569 4 23 5.34314 23 7V17C23 18.6569 21.6569 20 20 20H4C2.34314 20 1 18.6569 1 17V7ZM6 10C5.44769 10 5 10.4477 5 11V13C5 13.5523 5.44769 14 6 14H8C8.55231 14 9 13.5523 9 13V11C9 10.4477 8.55231 10 8 10H6Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 526 B |
|
@ -1 +0,0 @@
|
|||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m12 22c5.5228 0 10-4.4772 10-10 0-5.52285-4.4772-10-10-10-5.52285 0-10 4.47715-10 10 0 5.5228 4.47715 10 10 10zm7.9381-11c-.3381-2.7113-2.0329-5.00126-4.3837-6.16901.065.13023.1276.26332.1878.39891.6898 1.55201 1.1314 3.56607 1.2345 5.7701zm0 2c-.3381 2.7113-2.0329 5.0013-4.3837 6.169.065-.1302.1276-.2633.1878-.3989.6898-1.552 1.1314-3.5661 1.2345-5.7701zm-4.9638-2c-.1017-1.96653-.4982-3.69454-1.0597-4.95782-.328-.73796-.6926-1.27326-1.047-1.61052-.3492-.33236-.6407-.43166-.8676-.43166s-.5184.0993-.8676.43166c-.3544.33726-.719.87256-1.047 1.61052-.56148 1.26328-.95804 2.99129-1.05973 4.95782zm-5.94863 2h5.94863c-.1017 1.9665-.4982 3.6945-1.0597 4.9578-.328.738-.6926 1.2733-1.047 1.6105-.3492.3324-.6407.4317-.8676.4317s-.5184-.0993-.8676-.4317c-.3544-.3372-.719-.8725-1.047-1.6105-.56148-1.2633-.95804-2.9913-1.05973-4.9578zm-2.00239-2c.10315-2.20403.5447-4.21809 1.23448-5.7701.06026-.13559.12288-.26868.18785-.39891-2.35076 1.16775-4.04562 3.45771-4.38372 6.16901zm-2.96139 2h2.96139c.10315 2.204.5447 4.2181 1.23448 5.7701.06026.1356.12288.2687.18785.3989-2.35076-1.1677-4.04562-3.4577-4.38372-6.169z" fill="#000" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13.207 6.20711L13.8786 5.53554C15.0502 4.36397 16.9497 4.36397 18.1212 5.53554L18.4644 5.87868C19.6359 7.05026 19.6359 8.94975 18.4644 10.1213L15.6212 12.9645C14.4497 14.136 12.5502 14.136 11.3786 12.9645L11.207 12.7929C10.8165 12.4024 10.1833 12.4024 9.79281 12.7929C9.40228 13.1834 9.40228 13.8166 9.79281 14.2071L9.96438 14.3787C11.917 16.3313 15.0828 16.3313 17.0354 14.3787L19.8786 11.5355C21.8312 9.58292 21.8312 6.41709 19.8786 4.46447L19.5354 4.12133C17.5828 2.1687 14.417 2.16871 12.4644 4.12133L11.7928 4.7929C11.4023 5.18342 11.4023 5.81659 11.7928 6.20711C12.1833 6.59764 12.8165 6.59763 13.207 6.20711Z" fill="black"/>
|
||||
<path d="M4.12123 12.4645C2.16861 14.4171 2.16861 17.5829 4.12123 19.5355L4.46438 19.8787C6.417 21.8313 9.58282 21.8313 11.5354 19.8787L12.207 19.2071C12.5975 18.8166 12.5975 18.1834 12.207 17.7929C11.8165 17.4024 11.1833 17.4024 10.7928 17.7929L10.1212 18.4645C8.94966 19.636 7.05017 19.636 5.87859 18.4645L5.53545 18.1213C4.36388 16.9498 4.36388 15.0503 5.53545 13.8787L8.37859 11.0355C9.55017 9.86397 11.4497 9.86397 12.6212 11.0355L12.7928 11.2071C13.1833 11.5976 13.8165 11.5976 14.207 11.2071C14.5975 10.8166 14.5975 10.1834 14.207 9.7929L14.0354 9.62132C12.0828 7.6687 8.917 7.6687 6.96438 9.62132L4.12123 12.4645Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 2C11.4477 2 11 2.44772 11 3V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V3C13 2.44772 12.5523 2 12 2Z" fill="black"/>
|
||||
<path d="M7.05025 7.05025C7.44078 6.65972 7.44078 6.02656 7.05025 5.63603C6.65973 5.24551 6.02656 5.24551 5.63604 5.63603C4.00845 7.26362 3 9.51499 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 9.51499 19.9916 7.26363 18.364 5.63604C17.9734 5.24552 17.3403 5.24552 16.9498 5.63604C16.5592 6.02656 16.5592 6.65973 16.9498 7.05025C18.2176 8.3181 19 10.0667 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 10.0667 5.78241 8.31809 7.05025 7.05025Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 736 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.85498 13C8.4248 14.4457 7.08569 15.5 5.5 15.5C3.56689 15.5 2 13.933 2 12C2 10.067 3.56689 8.5 5.5 8.5C7.08569 8.5 8.4248 9.55432 8.85498 11H15.145C15.5752 9.55432 16.9143 8.5 18.5 8.5C20.4331 8.5 22 10.067 22 12C22 13.933 20.4331 15.5 18.5 15.5C16.9143 15.5 15.5752 14.4457 15.145 13H8.85498ZM5.5 13.5C6.32837 13.5 7 12.8284 7 12C7 11.1716 6.32837 10.5 5.5 10.5C4.67163 10.5 4 11.1716 4 12C4 12.8284 4.67163 13.5 5.5 13.5ZM18.5 13.5C19.3284 13.5 20 12.8284 20 12C20 11.1716 19.3284 10.5 18.5 10.5C17.6716 10.5 17 11.1716 17 12C17 12.8284 17.6716 13.5 18.5 13.5Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 733 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4C6.34315 4 5 5.34315 5 7C5 8.65685 6.34315 10 8 10C9.65685 10 11 8.65685 11 7C11 5.34315 9.65685 4 8 4ZM3 7C3 4.23858 5.23858 2 8 2C10.7614 2 13 4.23858 13 7C13 9.76142 10.7614 12 8 12C5.23858 12 3 9.76142 3 7ZM5 16C3.89543 16 3 16.8954 3 18V20C3 20.5523 2.55228 21 2 21C1.44772 21 1 20.5523 1 20V18C1 15.7909 2.79086 14 5 14H11C13.2091 14 15 15.7909 15 18V20C15 20.5523 14.5523 21 14 21C13.4477 21 13 20.5523 13 20V18C13 16.8954 12.1046 16 11 16H5Z" fill="black"/>
|
||||
<path d="M19.6402 7.23178C19.2694 6.92274 18.7307 6.92274 18.3598 7.23178L15.3598 9.73178C14.9356 10.0853 14.8782 10.7159 15.2318 11.1402C15.5854 11.5645 16.2159 11.6218 16.6402 11.2682L18 10.1351V15C18 15.5523 18.4477 16 19 16C19.5523 16 20 15.5523 20 15V10.135L21.3598 11.2682C21.7841 11.6218 22.4147 11.5645 22.7682 11.1402C23.1218 10.7159 23.0645 10.0853 22.6402 9.73178L19.6402 7.23178Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M5 4C4.44772 4 4 4.44772 4 5C4 5.55229 4.44772 6 5 6L19 6C19.5523 6 20 5.55228 20 5C20 4.44772 19.5523 4 19 4L5 4Z" fill="black"/>
|
||||
<path d="M15.3191 13.7084L13 11.378L13 19.0044C13 19.5543 12.5561 20 12 20C11.4477 20 11 19.5552 11 19.0044V11.3752L8.67811 13.7084C8.29314 14.0952 7.67241 14.0987 7.28571 13.7101C6.90169 13.3242 6.90728 12.6929 7.28743 12.3109L11.2873 8.29165C11.51 8.06792 11.8115 7.97242 12.101 8.00684C12.3241 8.02694 12.5414 8.12231 12.7099 8.29165L16.7098 12.3109C17.0947 12.6978 17.0982 13.3215 16.7115 13.7101C16.3275 14.096 15.6992 14.0903 15.3191 13.7084Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 708 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.25 12.5C10.0784 12.5 10.75 11.8284 10.75 11C10.75 10.1716 10.0784 9.5 9.25 9.5C8.42163 9.5 7.75 10.1716 7.75 11C7.75 11.8284 8.42163 12.5 9.25 12.5Z" fill="black"/>
|
||||
<path d="M14.75 12.5C15.5784 12.5 16.25 11.8284 16.25 11C16.25 10.1716 15.5784 9.5 14.75 9.5C13.9216 9.5 13.25 10.1716 13.25 11C13.25 11.8284 13.9216 12.5 14.75 12.5Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9 4C5.68628 4 3 6.68628 3 10V20.5C3 20.8923 3.22949 21.2485 3.58667 21.4106C3.94409 21.5728 4.36328 21.511 4.65845 21.2526L7.52734 18.7423C8.07422 18.2638 8.77637 18 9.50293 18H16C18.7615 18 21 15.7615 21 13V9C21 6.23853 18.7615 4 16 4H9ZM5 10C5 7.79089 6.79077 6 9 6H16C17.6567 6 19 7.34314 19 9V13C19 14.6569 17.6567 16 16 16H9.50293C8.29175 16 7.12183 16.4396 6.21045 17.2371L5 18.2963V10Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 922 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 4C5 2.34315 6.34315 1 8 1H16C17.6569 1 19 2.34315 19 4V20C19 21.6569 17.6569 23 16 23H8C6.34315 23 5 21.6569 5 20V4ZM8 3C7.44772 3 7 3.44772 7 4V20C7 20.5523 7.44772 21 8 21H16C16.5523 21 17 20.5523 17 20V4C17 3.44772 16.5523 3 16 3H15.4142C15.149 3 14.8946 3.10536 14.7071 3.29289L14.2929 3.70711C14.1054 3.89464 13.851 4 13.5858 4H10.4142C10.149 4 9.89464 3.89464 9.70711 3.70711L9.29289 3.29289C9.10536 3.10536 8.851 3 8.58579 3H8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 606 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 12C8 13.1046 7.10449 14 6 14C4.89551 14 4 13.1046 4 12C4 10.8954 4.89551 10 6 10C7.10449 10 8 10.8954 8 12Z" fill="black"/>
|
||||
<path d="M20 12C20 13.1046 19.1045 14 18 14C16.8955 14 16 13.1046 16 12C16 10.8954 16.8955 10 18 10C19.1045 10 20 10.8954 20 12Z" fill="black"/>
|
||||
<path d="M12 14C13.1045 14 14 13.1046 14 12C14 10.8954 13.1045 10 12 10C10.8955 10 10 10.8954 10 12C10 13.1046 10.8955 14 12 14Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 529 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5 5.5C15.5 6.41858 15.146 7.25464 14.5671 7.87903L17.6541 13.1029C17.925 13.0356 18.2083 13 18.5 13C20.4331 13 22 14.567 22 16.5C22 18.433 20.4331 20 18.5 20C16.9143 20 15.5752 18.9457 15.145 17.5H8.85498C8.4248 18.9457 7.08569 20 5.5 20C3.56689 20 2 18.433 2 16.5C2 14.567 3.56689 13 5.5 13C5.79175 13 6.0752 13.0356 6.34595 13.1029L9.43286 7.87903C8.854 7.25464 8.5 6.41858 8.5 5.5C8.5 3.56702 10.0669 2 12 2C13.9331 2 15.5 3.56702 15.5 5.5ZM13.5 5.5C13.5 6.32837 12.8284 7 12 7C11.1716 7 10.5 6.32837 10.5 5.5C10.5 4.67163 11.1716 4 12 4C12.8284 4 13.5 4.67163 13.5 5.5ZM8.06714 14.1211C8.427 14.5093 8.69995 14.9792 8.85498 15.5H15.145C15.3 14.9792 15.573 14.5093 15.9329 14.1211L12.8459 8.89709C12.5752 8.96436 12.2917 9 12 9C11.7083 9 11.4248 8.96436 11.1541 8.89709L8.06714 14.1211ZM18.5 15C17.6716 15 17 15.6716 17 16.5C17 17.3284 17.6716 18 18.5 18C19.3284 18 20 17.3284 20 16.5C20 15.6716 19.3284 15 18.5 15ZM7 16.5C7 17.3284 6.32837 18 5.5 18C4.67163 18 4 17.3284 4 16.5C4 15.6716 4.67163 15 5.5 15C6.32837 15 7 15.6716 7 16.5Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.7072 12.7143L9.69578 19.7079C9.3074 20.0953 8.6812 20.0988 8.29107 19.7097C7.90365 19.3232 7.9093 18.6911 8.29281 18.3085L14.6188 11.9986L8.29281 5.68865C7.90443 5.30126 7.90095 4.67664 8.29107 4.28751C8.67849 3.90107 9.31227 3.9067 9.69578 4.28924L16.7072 11.2828C16.9318 11.5069 17.0277 11.8103 16.9931 12.1016C16.973 12.3261 16.8772 12.5448 16.7072 12.7143Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 533 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M19 8C20.6569 8 22 6.65685 22 5C22 3.34315 20.6569 2 19 2C17.3431 2 16 3.34315 16 5C16 6.65685 17.3431 8 19 8Z" fill="black"/>
|
||||
<path d="M6 8C6 6.89543 6.89543 6 8 6H13C13.5523 6 14 5.55228 14 5C14 4.44772 13.5523 4 13 4H8C5.79086 4 4 5.79086 4 8V16C4 18.2091 5.79086 20 8 20H16C18.2091 20 20 18.2091 20 16V11C20 10.4477 19.5523 10 19 10C18.4477 10 18 10.4477 18 11V16C18 17.1046 17.1046 18 16 18H8C6.89543 18 6 17.1046 6 16V8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 555 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 4C13 3.44772 12.5523 3 12 3C11.4477 3 11 3.44772 11 4L11 9.58581L7.4142 6.00001C7.02368 5.60949 6.39051 5.60949 5.99999 6.00001C5.60946 6.39054 5.60946 7.0237 5.99999 7.41423L9.58576 11L4 11C3.44772 11 3 11.4477 3 12C3 12.5523 3.44772 13 4 13L9.58579 13L6.00001 16.5858C5.60949 16.9763 5.60949 17.6095 6.00001 18C6.39054 18.3905 7.0237 18.3905 7.41423 18L11 14.4142L11 20C11 20.5523 11.4477 21 12 21C12.5523 21 13 20.5523 13 20V14.4142L16.5858 18C16.9763 18.3905 17.6095 18.3905 18 18C18.3905 17.6095 18.3905 16.9763 18 16.5858L14.4142 13L20 13C20.5523 13 21 12.5523 21 12C21 11.4477 20.5523 11 20 11L14.4142 11L18 7.4142C18.3905 7.02367 18.3905 6.39051 18 5.99998C17.6095 5.60946 16.9763 5.60946 16.5858 5.99998L13 9.58578V4Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 899 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 21C10.3431 21 9 19.6569 9 18V12C9 10.3431 10.3431 9 12 9H18C19.6569 9 21 10.3431 21 12V18C21 19.6569 19.6569 21 18 21H12ZM11 18C11 18.5523 11.4477 19 12 19H18C18.5523 19 19 18.5523 19 18V12C19 11.4477 18.5523 11 18 11H12C11.4477 11 11 11.4477 11 12V18Z" fill="black"/>
|
||||
<path d="M6 15H7V13H6C5.44772 13 5 12.5523 5 12V6C5 5.44771 5.44772 5 6 5H12C12.5523 5 13 5.44771 13 6V7H15V6C15 4.34315 13.6569 3 12 3H6C4.34315 3 3 4.34315 3 6V12C3 13.6569 4.34315 15 6 15Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 633 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15 6.5C13.0669 6.5 11.5 8.06702 11.5 10C11.5 11.933 13.0669 13.5 15 13.5C16.9331 13.5 18.5 11.933 18.5 10C18.5 8.06702 16.9331 6.5 15 6.5ZM13.5 10C13.5 9.17163 14.1716 8.5 15 8.5C15.8284 8.5 16.5 9.17163 16.5 10C16.5 10.8284 15.8284 11.5 15 11.5C14.1716 11.5 13.5 10.8284 13.5 10Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 6C2 4.34314 3.34326 3 5 3H19C20.6567 3 22 4.34314 22 6V18C22 19.6569 20.6567 21 19 21H5C3.34326 21 2 19.6569 2 18V6ZM5 5C4.44775 5 4 5.44775 4 6V12.2327C4 12.5094 4.32008 12.6633 4.53615 12.4904L5.89258 11.4053C7.13916 10.408 8.94849 10.5616 10.009 11.7548L16.3 18.8322C16.3949 18.9389 16.5309 19 16.6738 19H19C19.5522 19 20 18.5522 20 18V6C20 5.44775 19.5522 5 19 5H5ZM4 18V15.9612C4 15.6574 4.1381 15.3701 4.37532 15.1803L7.14209 12.967C7.55762 12.6345 8.16064 12.6858 8.51416 13.0835L13.285 18.4508C13.4742 18.6636 13.3231 19 13.0383 19H5C4.44775 19 4 18.5522 4 18Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 2C4.23858 2 2 4.23858 2 7V17C2 17.3788 2.214 17.725 2.55279 17.8944C2.89157 18.0638 3.29698 18.0273 3.6 17.8L6.8 15.4C7.14619 15.1404 7.56726 15 8 15H10C10 17.2091 11.7909 19 14 19H16.6667L20.4 21.8C20.703 22.0273 21.1084 22.0638 21.4472 21.8944C21.786 21.725 22 21.3788 22 21V13C22 10.7909 20.2091 9 18 9V7C18 4.23858 15.7614 2 13 2H7ZM16 10V7C16 5.34315 14.6569 4 13 4H7C5.34315 4 4 5.34315 4 7V14.5C4 14.706 4.23519 14.8236 4.4 14.7L5.6 13.8C6.29239 13.2807 7.13452 13 8 13H13C14.6569 13 16 11.6569 16 10ZM12 15H13C15.419 15 17.4367 13.2822 17.9 11H18C19.1046 11 20 11.8954 20 13V18.5C20 18.706 19.7648 18.8236 19.6 18.7L17.6 17.2C17.4269 17.0702 17.2164 17 17 17H14C12.8954 17 12 16.1046 12 15Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 870 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 4C10.3431 4 9 5.34315 9 7C9 8.65685 10.3431 10 12 10C13.6569 10 15 8.65685 15 7C15 5.34315 13.6569 4 12 4ZM7 7C7 4.23858 9.23858 2 12 2C14.7614 2 17 4.23858 17 7C17 9.76142 14.7614 12 12 12C9.23858 12 7 9.76142 7 7ZM9 16C7.89543 16 7 16.8954 7 18V20C7 20.5523 6.55228 21 6 21C5.44772 21 5 20.5523 5 20V18C5 15.7909 6.79086 14 9 14H15C17.2091 14 19 15.7909 19 18V20C19 20.5523 18.5523 21 18 21C17.4477 21 17 20.5523 17 20V18C17 16.8954 16.1046 16 15 16H9Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 627 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M17.7544 4.65411C19.3643 4.15106 21 5.3537 21 7.04034V15.9598C21 17.6464 19.3643 18.8491 17.7544 18.346L12.7302 16.7759L11.3091 19.6181C10.8855 20.465 10.0198 21.0001 9.073 21.0001H7.32959C5.51123 21.0001 4.30127 19.1208 5.05371 17.4655L6.28296 14.7612L5.10522 14.3931C3.85278 14.0018 3 12.8419 3 11.5297V11.4704C3 10.1583 3.85278 8.99835 5.10522 8.60699L17.7544 4.65411ZM19 7.04034C19 6.70306 18.6729 6.46246 18.3508 6.56305L17 6.98517V16.015L18.3508 16.4371C18.6729 16.5377 19 16.2971 19 15.9598V7.04034ZM5.70166 10.5159L15 7.61017V15.39L5.70166 12.4842C5.28418 12.3537 5 11.9671 5 11.5297V11.4704C5 11.033 5.28418 10.6464 5.70166 10.5159ZM8.20654 15.3622L6.87427 18.2931C6.72388 18.6242 6.96582 19.0001 7.32959 19.0001H9.073C9.26245 19.0001 9.43555 18.893 9.52026 18.7237L10.7961 16.1716L8.20654 15.3622Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 976 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.09888 3C3.94216 3 3 3.93788 3 5.09888V8.90112C3 10.0578 3.93788 11 5.09888 11H8.90112C10.0578 11 11 10.0621 11 8.90112V5.09888C11 3.94216 10.0621 3 8.90112 3H5.09888ZM5 8.90112V5.09888C5 5.04427 5.04492 5 5.09888 5H8.90112C8.95573 5 9 5.04492 9 5.09888V8.90112C9 8.95573 8.95508 9 8.90112 9H5.09888C5.04427 9 5 8.95508 5 8.90112ZM5 15.0989V18.9011C5 18.9551 5.04427 19 5.09888 19H8.90112C8.95508 19 9 18.9557 9 18.9011V15.0989C9 15.0449 8.95573 15 8.90112 15H5.09888C5.04492 15 5 15.0443 5 15.0989ZM5.09888 13C3.94216 13 3 13.9379 3 15.0989V18.9011C3 20.0578 3.93788 21 5.09888 21H8.90112C10.0578 21 11 20.0621 11 18.9011V15.0989C11 13.9422 10.0621 13 8.90112 13H5.09888ZM15 5.09888V8.90112C15 8.95508 15.0443 9 15.0989 9H18.9011C18.9551 9 19 8.95573 19 8.90112V5.09888C19 5.04492 18.9557 5 18.9011 5H15.0989C15.0449 5 15 5.04427 15 5.09888ZM15.0989 3C13.9422 3 13 3.93788 13 5.09888V8.90112C13 10.0578 13.9379 11 15.0989 11H18.9011C20.0578 11 21 10.0621 21 8.90112V5.09888C21 3.94216 20.0621 3 18.9011 3H15.0989ZM13 13.4954C13 13.2218 13.2158 13 13.4954 13H15.5046C15.7782 13 16 13.2158 16 13.4954V15.5046C16 15.7782 15.7842 16 15.5046 16H13.4954C13.2218 16 13 15.7842 13 15.5046V13.4954ZM18.4954 13C18.2158 13 18 13.2218 18 13.4954V15.5046C18 15.7842 18.2218 16 18.4954 16H20.5046C20.7842 16 21 15.7782 21 15.5046V13.4954C21 13.2158 20.7782 13 20.5046 13H18.4954ZM18 18.4954C18 18.2218 18.2158 18 18.4954 18H20.5046C20.7782 18 21 18.2158 21 18.4954V20.5046C21 20.7782 20.7842 21 20.5046 21H18.4954C18.2218 21 18 20.7842 18 20.5046V18.4954ZM13.4954 18C13.2158 18 13 18.2218 13 18.4954V20.5046C13 20.7842 13.2218 21 13.4954 21H15.5046C15.7842 21 16 20.7782 16 20.5046V18.4954C16 18.2158 15.7782 18 15.5046 18H13.4954Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.8 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M13 18C13.5522 18 14 17.5523 14 17C14 16.4478 13.5522 16 13 16H9.41406L17.707 7.70718C18.0977 7.31656 18.0977 6.6835 17.707 6.29288C17.3167 5.90237 16.6833 5.90237 16.293 6.29288L8 14.5858V11C8 10.4478 7.55225 10 7 10C6.44775 10 6 10.4478 6 11V17C6 17.5523 6.44775 18 7 18H13Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 405 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.67529 16.4426C11.1009 18.8052 14.9825 18.7856 17.3841 16.3841C19.8053 13.9628 19.8053 10.0372 17.3841 7.61594C14.9628 5.19469 11.0372 5.19469 8.61594 7.61594C7.93204 8.29984 7.4301 9.11462 7.12934 10H10C10.5523 10 11 10.4477 11 11C11 11.5523 10.5523 12 10 12H5C4.44772 12 4 11.5523 4 11V6C4 5.44772 4.44772 5 5 5C5.55228 5 6 5.44772 6 6V8.12276C6.35382 7.4847 6.80154 6.88475 7.34315 6.34315C10.4673 3.21895 15.5327 3.21895 18.6569 6.34315C21.781 9.46734 21.781 14.5327 18.6569 17.6569C15.5327 20.781 10.4673 20.781 7.34315 17.6569L7.37146 17.6285C7.14636 17.4649 7 17.1996 7 16.9C7 16.4029 7.40294 16 7.9 16C8.23008 16 8.51866 16.1777 8.67529 16.4426Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 784 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 4C6.34315 4 5 5.34315 5 7C5 8.65685 6.34315 10 8 10C9.65685 10 11 8.65685 11 7C11 5.34315 9.65685 4 8 4ZM3 7C3 4.23858 5.23858 2 8 2C10.7614 2 13 4.23858 13 7C13 9.76142 10.7614 12 8 12C5.23858 12 3 9.76142 3 7ZM5 16C3.89543 16 3 16.8954 3 18V20C3 20.5523 2.55228 21 2 21C1.44772 21 1 20.5523 1 20V18C1 15.7909 2.79086 14 5 14H11C13.2091 14 15 15.7909 15 18V20C15 20.5523 14.5523 21 14 21C13.4477 21 13 20.5523 13 20V18C13 16.8954 12.1046 16 11 16H5Z" fill="black"/>
|
||||
<path d="M17 10C16.4477 10 16 10.4477 16 11C16 11.5523 16.4477 12 17 12H23C23.5523 12 24 11.5523 24 11C24 10.4477 23.5523 10 23 10H17Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 773 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15.707 3.29288C15.3167 2.90237 14.6833 2.90237 14.293 3.29288C13.9023 3.6835 13.9023 4.31656 14.293 4.70718L16.5857 7.00003H16C9.9248 7.00003 5 11.925 5 18V20C5 20.5523 5.44775 21 6 21C6.55225 21 7 20.5523 7 20V18C7 13.0294 11.0295 9.00003 16 9.00003H16.5857L14.293 11.2929C13.9023 11.6835 13.9023 12.3166 14.293 12.7072C14.6833 13.0977 15.3167 13.0977 15.707 12.7072L19.707 8.70718C20.0977 8.31656 20.0977 7.6835 19.707 7.29288L15.707 3.29288Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 574 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.92798 15.856C6.65405 15.856 4 13.2019 4 9.92798C4 6.65405 6.65405 4 9.92798 4C13.2019 4 15.856 6.65405 15.856 9.92798C15.856 11.2083 15.45 12.3937 14.76 13.3627L19.7087 18.3114C20.0945 18.6973 20.0945 19.3228 19.7087 19.7086C19.3228 20.0945 18.6973 20.0945 18.3115 19.7086L13.3628 14.76C12.3938 15.4501 11.2083 15.856 9.92798 15.856ZM9.92798 13.8799C12.1106 13.8799 13.8801 12.1106 13.8801 9.92798C13.8801 7.74536 12.1106 5.97595 9.92798 5.97595C7.74536 5.97595 5.97607 7.74536 5.97607 9.92798C5.97607 12.1106 7.74536 13.8799 9.92798 13.8799Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 714 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M12 13C11.4477 13 11 13.4477 11 14V16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16V14C13 13.4477 12.5523 13 12 13Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 3C9.79086 3 8 4.79086 8 7V9C6.34315 9 5 10.3431 5 12V18C5 19.6569 6.34315 21 8 21H16C17.6569 21 19 19.6569 19 18V12C19 10.3431 17.6569 9 16 9V7C16 4.79086 14.2091 3 12 3ZM14 7V9H10V7C10 5.89543 10.8954 5 12 5C13.1046 5 14 5.89543 14 7ZM7 12C7 11.4477 7.44772 11 8 11H16C16.5523 11 17 11.4477 17 12V18C17 18.5523 16.5523 19 16 19H8C7.44772 19 7 18.5523 7 18V12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 684 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 6C10.4478 6 10 6.44775 10 7C10 7.55225 10.4478 8 11 8L14.5859 8L6.29297 16.2928C5.90234 16.6835 5.90234 17.3165 6.29297 17.7072C6.68335 18.0977 7.31665 18.0977 7.70703 17.7072L16 9.41419L16 13C16 13.5522 16.4478 14 17 14C17.5522 14 18 13.5522 18 13L18 7C18 6.44775 17.5522 6 17 6L11 6Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 418 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2208 4L10.6735 5.64183C10.588 5.96223 10.349 6.22008 10.0347 6.32899C9.81036 6.40671 9.59204 6.49741 9.3806 6.6002C9.08103 6.74583 8.72916 6.73254 8.44191 6.56602L6.89415 5.79214L5.79214 6.89415L6.56602 8.44192C6.73254 8.72917 6.74583 9.08103 6.6002 9.3806C6.49741 9.59204 6.40671 9.81036 6.32899 10.0347C6.22008 10.349 5.96222 10.5881 5.64181 10.6735L4 11.2208V12.7792L5.6418 13.3265C5.96222 13.4119 6.22008 13.651 6.32899 13.9653C6.40671 14.1896 6.49741 14.408 6.6002 14.6194C6.74583 14.919 6.73254 15.2708 6.56602 15.5581L5.79214 17.1058L6.89415 18.2079L8.44192 17.434C8.72917 17.2675 9.08103 17.2542 9.3806 17.3998C9.59204 17.5026 9.81036 17.5933 10.0347 17.671C10.349 17.7799 10.5881 18.0378 10.6735 18.3582L11.2208 20H12.7792L13.3265 18.3582C13.4119 18.0378 13.651 17.7799 13.9653 17.671C14.1896 17.5933 14.408 17.5026 14.6194 17.3998C14.919 17.2542 15.2708 17.2675 15.5581 17.434L17.1058 18.2079L18.2079 17.1058L17.434 15.5581C17.2675 15.2708 17.2542 14.919 17.3998 14.6194C17.5026 14.408 17.5933 14.1896 17.671 13.9653C17.7799 13.651 18.0378 13.4119 18.3582 13.3265L20 12.7792V11.2208L18.3582 10.6735C18.0378 10.5881 17.7799 10.349 17.671 10.0347C17.5933 9.81036 17.5026 9.59204 17.3998 9.3806C17.2542 9.08103 17.2675 8.72917 17.434 8.44192L18.2079 6.89415L17.1058 5.79214L15.5581 6.56602C15.2708 6.73254 14.919 6.74583 14.6194 6.6002C14.408 6.49741 14.1896 6.40671 13.9653 6.32899C13.651 6.22008 13.412 5.96224 13.3265 5.64184L12.7792 4H11.2208ZM12.6653 20.3419C12.6652 20.3422 12.6654 20.3416 12.6653 20.3419V20.3419ZM9.43735 3.02566C9.64153 2.41314 10.2147 2 10.8604 2H13.1396C13.7853 2 14.3585 2.41314 14.5626 3.02566L15.0775 4.57024L16.5338 3.84212C17.1112 3.55338 17.8087 3.66656 18.2652 4.1231L19.8769 5.73477C20.3334 6.19131 20.4466 6.88876 20.1579 7.46624L19.4298 8.92249L20.9743 9.43735C21.5869 9.64153 22 10.2147 22 10.8604V13.1396C22 13.7853 21.5869 14.3585 20.9743 14.5626L19.4298 15.0775L20.1579 16.5338C20.4466 17.1112 20.3334 17.8087 19.8769 18.2652L18.2652 19.8769C17.8087 20.3334 17.1112 20.4466 16.5338 20.1579L15.0775 19.4298L14.5626 20.9743C14.3585 21.5869 13.7853 22 13.1396 22H10.8604C10.2147 22 9.64153 21.5869 9.43735 20.9743L8.92249 19.4298L7.46625 20.1579C6.88876 20.4466 6.19131 20.3334 5.73477 19.8769L4.1231 18.2652C3.66656 17.8087 3.55338 17.1112 3.84212 16.5338L4.57024 15.0775L3.02566 14.5626C2.41315 14.3585 2 13.7853 2 13.1396V10.8604C2 10.2147 2.41315 9.64153 3.02566 9.43736L4.57024 8.92249L3.84212 7.46625C3.55338 6.88876 3.66656 6.19131 4.1231 5.73477L5.73477 4.1231C6.19131 3.66656 6.88876 3.55338 7.46625 3.84212L8.92249 4.57024L9.43735 3.02566Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 10C10.8954 10 10 10.8954 10 12C10 13.1046 10.8954 14 12 14C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10ZM8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 3.0 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 6.41418V13C11 13.5522 11.4478 14 12 14C12.5522 14 13 13.5522 13 13V6.41418L14.293 7.70715C14.6833 8.09766 15.3167 8.09766 15.707 7.70715C16.0977 7.31653 16.0977 6.68347 15.707 6.29285L12.707 3.29285C12.5261 3.11194 12.2761 3 12 3C11.7583 3 11.5369 3.08569 11.364 3.22839C11.3394 3.24878 11.3157 3.27026 11.293 3.29285L8.29297 6.29285C7.90234 6.68347 7.90234 7.31653 8.29297 7.70715C8.68335 8.09766 9.31665 8.09766 9.70703 7.70715L11 6.41418Z" fill="black"/>
|
||||
<path d="M5 10C5.55225 10 6 10.4478 6 11V17C6 17.5522 6.44775 18 7 18H17C17.5522 18 18 17.5522 18 17V11C18 10.4478 18.4478 10 19 10C19.5522 10 20 10.4478 20 11V17C20 18.6569 18.6567 20 17 20H7C5.34326 20 4 18.6569 4 17V11C4 10.4478 4.44775 10 5 10Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 839 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M14.252 14.3066C13.6103 14.7446 12.8356 15.0001 12 15.0001C11.1645 15.0001 10.3897 14.7446 9.74808 14.3066C9.406 14.073 8.93416 14.0659 8.64127 14.3588L8.28771 14.7124C7.99482 15.0053 7.99233 15.4845 8.31932 15.7387C9.33518 16.5286 10.6132 17.0001 12 17.0001C13.3868 17.0001 14.6649 16.5286 15.6807 15.7387C16.0077 15.4844 16.0052 15.0053 15.7123 14.7124L15.3588 14.3588C15.0659 14.0659 14.594 14.073 14.252 14.3066Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 11 19 9 17 7C15 5 13 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM18.6754 14.1133C18.8578 13.5363 18.3885 12.9999 17.7902 12.9091C14.3405 12.3859 11.6142 9.65947 11.0909 6.20975C11.0001 5.61148 10.4637 5.14216 9.88675 5.32464C7.05362 6.2207 5 8.87053 5 12C5 15.866 8.13401 19 12 19C15.1295 19 17.7793 16.9464 18.6754 14.1133Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 989 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 7C6 6.44772 6.44772 6 7 6H17C17.5523 6 18 6.44772 18 7C18 7.55228 17.5523 8 17 8H7C6.44772 8 6 7.55228 6 7ZM6 12C6 11.4477 6.44772 11 7 11H17C17.5523 11 18 11.4477 18 12C18 12.5523 17.5523 13 17 13H7C6.44772 13 6 12.5523 6 12ZM7 16C6.44772 16 6 16.4477 6 17C6 17.5523 6.44772 18 7 18H13C13.5523 18 14 17.5523 14 17C14 16.4477 13.5523 16 13 16H7Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 517 B |
|
@ -1 +0,0 @@
|
|||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m12 22c-5.52295 0-10-4.4772-10-10 0-5.52283 4.47705-10 10-10 5.5229 0 10 4.47717 10 10 0 5.5228-4.4771 10-10 10zm0-2c4.4182 0 8-3.5817 8-8 0-4.41833-3.5818-8-8-8-4.41821 0-8 3.58167-8 8 0 4.4183 3.58179 8 8 8zm4-10h-3v6h-2v-6h-3v-2h8z" fill="#000" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 399 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.577 11.5411C12.1013 11.5976 12.6256 11.6541 13.2702 11.617C15.017 11.5162 16.0751 10.5877 16 9.20014C15.9236 7.78838 14.5158 6.91873 13.1073 7C10.812 7.13261 9.12408 9.21894 8.93371 11.6039C9.24541 11.5297 9.56306 11.4833 9.88292 11.4654C10.5279 11.4281 11.0524 11.4846 11.577 11.5411Z" fill="black"/>
|
||||
<path d="M7.03262 14.9308C7.10585 16.2519 8.45434 17.0661 9.8037 16.9898C12.0027 16.8659 13.6196 14.9133 13.8016 12.6813C13.5029 12.7507 13.1986 12.7941 12.8924 12.8109C12.2746 12.8458 11.7722 12.7929 11.2697 12.74C10.7674 12.6872 10.2652 12.6343 9.6477 12.6691C7.97436 12.7634 6.9606 13.6322 7.03262 14.9308Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5228 22 12 22C9.66667 22 7.33333 22 5 22C3.34315 22 2 20.6569 2 19V12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM20 12C20 16.4183 16.4183 20 12 20H5C4.44772 20 4 19.5523 4 19L4 12C4 7.58172 7.58172 4 12 4C16.4183 4 20 7.58172 20 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.2918 12.3191L18.6221 9.99999H10.9956C10.4458 9.99999 10 9.55614 10 8.99999C10 8.44774 10.4448 7.99999 10.9956 7.99999H18.6248L16.2918 5.67809C15.9048 5.29308 15.9014 4.67235 16.29 4.28576C16.6758 3.90172 17.3071 3.90722 17.689 4.28747L21.7083 8.28734C21.9321 8.51 22.0276 8.81151 21.9932 9.10094C21.9732 9.32409 21.8777 9.54137 21.7083 9.70983L17.689 13.7097C17.3023 14.0947 16.6785 14.0981 16.29 13.7114C15.9041 13.3274 15.9097 12.6992 16.2918 12.3191Z" fill="black"/>
|
||||
<path d="M7.70826 18.3191L5.37794 16H13.0044C13.5542 16 14 15.5561 14 15C14 14.4477 13.5552 14 13.0044 14H5.37525L7.70826 11.6781C8.09522 11.2931 8.09864 10.6724 7.70997 10.2858C7.32423 9.90172 6.69288 9.90722 6.31105 10.2875L2.29176 14.2873C2.06788 14.51 1.97242 14.8115 2.00685 15.1009C2.02687 15.3241 2.12232 15.5414 2.29176 15.7098L6.31105 19.7097C6.69776 20.0947 7.32154 20.0981 7.70997 19.7114C8.09596 19.3274 8.09034 18.6992 7.70826 18.3191Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.991 3C16.968 3 21 7.032 21 12C21 16.968 16.968 21 11.991 21C7.023 21 3 16.968 3 12C3 7.032 7.023 3 11.991 3ZM12 19.2C15.978 19.2 19.2 15.978 19.2 12C19.2 8.02205 15.978 4.80005 12 4.80005C8.02205 4.80005 4.80005 8.02205 4.80005 12C4.80005 15.978 8.02205 19.2 12 19.2ZM15.15 11.1C14.403 11.1 13.8 10.497 13.8 9.75002C13.8 9.00302 14.403 8.40002 15.15 8.40002C15.897 8.40002 16.5 9.00302 16.5 9.75002C16.5 10.497 15.897 11.1 15.15 11.1ZM8.85 11.1C8.103 11.1 7.5 10.497 7.5 9.75002C7.5 9.00302 8.103 8.40002 8.85 8.40002C9.597 8.40002 10.2 9.00302 10.2 9.75002C10.2 10.497 9.597 11.1 8.85 11.1ZM15.4688 14.5657C15.4688 14.5657 13.9637 16.7127 12 16.7127C10.0364 16.7127 8.53121 14.5657 8.53121 14.5657C7.89687 13.8749 8.16595 13.2764 9.10954 13.2764H14.8905C15.8306 13.2764 16.093 13.8536 15.4688 14.5657Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 975 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.0225 2.00003C9.62047 1.99462 7.29677 2.85399 5.47628 4.42099C3.65579 5.988 2.46016 8.15793 2.10802 10.534C1.75588 12.9101 2.27076 15.3335 3.55852 17.3611C4.84627 19.3888 6.82085 20.8852 9.12118 21.5767C11.1617 22.1901 13.3376 22.1337 15.3333 21.4281C15.854 21.244 16.1269 20.6726 15.9428 20.1519C15.7587 19.6312 15.1873 19.3584 14.6666 19.5425C13.0701 20.107 11.3293 20.152 9.69694 19.6613C7.85667 19.1081 6.27701 17.911 5.24681 16.2889C4.21661 14.6668 3.8047 12.728 4.08641 10.8272C4.36812 8.92634 5.32462 7.1904 6.78102 5.93679C8.23741 4.68319 10.0964 3.9957 12.018 4.00002C13.9396 4.00434 15.7954 4.7002 17.2462 5.96035C18.6969 7.22049 19.6456 8.96072 19.9187 10.8628C20.1548 12.5068 19.8737 14.0623 19.1111 15.5419C18.5956 16.5419 17.9807 16.6415 17.7349 16.5866C17.5194 16.5384 17 16.2269 17 15L17 8C17 7.44771 16.5522 7 16 7C15.4477 7 15 7.44772 15 8V8.25C14 7 12.8411 6.5 11.5 6.5C8.46452 6.5 5.99995 8.94558 5.99995 12C5.99995 15.3541 8.50365 17.5 11.5 17.5C12.8883 17.5 14.5108 16.5866 15 15.5C15.1 17.15 16.15 18.2854 17.2987 18.5384C18.7307 18.8585 20.1158 17.9581 20.8889 16.4581C21.8337 14.6249 22.1961 12.6512 21.8984 10.5785C21.557 8.2009 20.3711 6.02561 18.5577 4.45043C16.7443 2.87525 14.4245 2.00543 12.0225 2.00003ZM7.99995 12C7.99995 10.0544 9.56482 8.5 11.5 8.5C13.4351 8.5 15 10.0544 15 12C15 13.9456 13.4351 15.5 11.5 15.5C9.5257 15.5 7.99995 14.1688 7.99995 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.5 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.00684 4C4.34741 4 3 5.34229 3 7.00244V16.9976C3 18.651 4.34839 20 6.00684 20H17.9932C19.6526 20 21 18.6577 21 16.9976V7.00244C21 5.349 19.6516 4 17.9932 4H6.00684ZM5 16.9976V10H19V16.9976C19 17.5511 18.55 18 17.9932 18H6.00684C5.45068 18 5 17.5442 5 16.9976ZM19 8H5V7.00244C5 6.44885 5.44995 6 6.00684 6H17.9932C18.5493 6 19 6.45581 19 7.00244V8ZM16 12C15.4438 12 15 12.4519 15 13.0094V14.9906C15 15.5566 15.4478 16 16 16C16.5562 16 17 15.5481 17 14.9906V13.0094C17 12.4434 16.5522 12 16 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 663 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11 8.04871C11 7.49646 11.4478 7.04871 12 7.04871C12.5522 7.04871 13 7.49646 13 8.04871V12.9696C13 12.9696 13 14 12 14C11.1655 14 11 13.1157 11 12.9696V8.04871Z" fill="black"/>
|
||||
<path d="M11 16C11 15.4478 11.4478 15 12 15C12.5522 15 13 15.4478 13 16C13 16.5522 12.5522 17 12 17C11.4478 17 11 16.5522 11 16Z" fill="black"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 6.47717 17.5229 2 12 2C6.47705 2 2 6.47717 2 12C2 17.5228 6.47705 22 12 22C17.5229 22 22 17.5228 22 12ZM4 12C4 7.58167 7.58179 4 12 4C16.4182 4 20 7.58167 20 12C20 16.4183 16.4182 20 12 20C7.58179 20 4 16.4183 4 12Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 725 B |
|
@ -1 +0,0 @@
|
|||
<svg fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path clip-rule="evenodd" d="m17.4225 9.99594c.9999.85526 1.7523 1.81106 2.2288 2.50406-.4765.693-1.2289 1.6488-2.2288 2.5041-1.3258 1.1339-2.97 1.9959-4.9225 1.9959-1.9526 0-3.5967-.862-4.9225-1.9959-.99999-.8553-1.75231-1.8111-2.22881-2.5041.4765-.693 1.22882-1.6488 2.22881-2.50406 1.3258-1.1339 2.9699-1.99594 4.9225-1.99594 1.9525 0 3.5967.86204 4.9225 1.99594zm4.3215 2.05736c.1681.2771.1681.6163 0 .8934-.8908 1.4684-4.0855 6.0533-9.244 6.0533-5.15858 0-8.35319-4.5849-9.24406-6.0533-.16808-.2771-.16808-.6163.00001-.8934.89086-1.4684 4.08547-6.0533 9.24405-6.0533 5.1585 0 8.3532 4.5849 9.244 6.0533zm-9.244 2.9467c1.3807 0 2.5-1.1193 2.5-2.5s-1.1193-2.5-2.5-2.5-2.5 1.1193-2.5 2.5 1.1193 2.5 2.5 2.5z" fill="#000" fill-rule="evenodd"/></svg>
|
Before Width: | Height: | Size: 845 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14 28C21.732 28 28 21.732 28 14C28 6.26801 21.732 0 14 0C6.26801 0 0 6.26801 0 14C0 21.732 6.26801 28 14 28ZM14 7C14 6.44772 13.5523 6 13 6C12.4477 6 12 6.44772 12 7V13.1716C12 13.9672 12.3161 14.7303 12.8787 15.2929L17.2929 19.7071C17.6834 20.0976 18.3166 20.0976 18.7071 19.7071C19.0976 19.3166 19.0976 18.6834 18.7071 18.2929L14.2929 13.8787C14.1054 13.6911 14 13.4368 14 13.1716V7Z" fill=""/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 555 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M32 57C43.9849 57 54 48.5666 56.4348 37.3104C56.8707 35.2954 54.898 33.7413 52.8441 33.9201C52.2364 33.973 51.6213 34 51 34C39.402 34 30 24.598 30 13C30 12.3787 30.027 11.7636 30.0799 11.1558C30.2587 9.10201 28.7046 7.1293 26.6896 7.56516C15.4334 9.99996 7 20.0151 7 32C7 45.8071 18.1929 57 32 57ZM51 32C52.6564 32 54.2622 31.7883 55.7923 31.3907C56.2883 31.2619 56.5268 30.712 56.2604 30.2743C55.6851 29.3292 54.8263 28.2039 53.7315 26.9266C51.5421 24.3722 48.603 21.4314 45.5858 18.4142C42.5686 15.397 39.6278 12.4579 37.0734 10.2685C35.7961 9.1737 34.6708 8.31492 33.7257 7.73965C33.288 7.4732 32.7381 7.71168 32.6093 8.20766C32.2117 9.73781 32 11.3436 32 13C32 23.4934 40.5066 32 51 32ZM32 59C46.9117 59 59 46.9117 59 32C59 29 53 23 47 17C41 11 35 5 32 5C17.0883 5 5 17.0883 5 32C5 46.9117 17.0883 59 32 59ZM22.6947 47.7193C25.0714 45.4242 28.3594 44 32 44C35.6406 44 38.9286 45.4242 41.3053 47.7193C41.7026 48.103 42.3357 48.0919 42.7193 47.6946C43.103 47.2974 43.0919 46.6643 42.6947 46.2806C39.9529 43.633 36.1699 42 32 42C27.8302 42 24.0471 43.633 21.3053 46.2807C20.9081 46.6643 20.897 47.2974 21.2807 47.6947C21.6643 48.0919 22.2974 48.103 22.6947 47.7193Z" fill="#939BA1"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.875 3C8.875 2.51675 8.48325 2.125 8 2.125C7.51675 2.125 7.125 2.51675 7.125 3V11.0976L5.06946 9.33567C4.70255 9.02117 4.15016 9.06366 3.83567 9.43057C3.52117 9.79748 3.56366 10.3499 3.93057 10.6644L7.42712 13.6614C7.57031 13.7855 7.75421 13.8639 7.95611 13.8739C7.98615 13.8754 8.01625 13.8754 8.04628 13.8738C8.23907 13.8638 8.41535 13.7913 8.55528 13.6763C8.56004 13.6724 8.56476 13.6684 8.56946 13.6644L12.0695 10.6644C12.4364 10.3499 12.4789 9.79748 12.1644 9.43057C11.8499 9.06366 11.2975 9.02117 10.9306 9.33567L8.875 11.0976V3Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 666 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.76413 9.69006L12.3248 4.27888C12.7068 3.90717 13.3248 3.90591 13.7111 4.28187C14.0948 4.65523 14.0968 5.25861 13.7142 5.63093L7.45575 11.7211C7.26582 11.906 7.01753 11.9992 6.76838 12C6.51183 11.9981 6.26284 11.9063 6.07584 11.7244L3.28423 9.0078C2.9041 8.63789 2.90429 8.03795 3.29064 7.66199C3.67431 7.28863 4.29863 7.29084 4.67363 7.65576L6.76413 9.69006Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 530 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.5 5.75C4.08579 5.75 3.75 6.08579 3.75 6.5V11.5C3.75 11.9142 4.08579 12.25 4.5 12.25H9.5C9.91421 12.25 10.25 11.9142 10.25 11.5V8.70711C10.25 8.5745 10.3027 8.44732 10.3964 8.35355L11.3232 7.42678C11.4807 7.26929 11.75 7.38083 11.75 7.60355V11.5C11.75 12.7426 10.7426 13.75 9.5 13.75H4.5C3.25736 13.75 2.25 12.7426 2.25 11.5V6.5C2.25 5.25736 3.25736 4.25 4.5 4.25H8.39645C8.61917 4.25 8.73071 4.51929 8.57322 4.67678L7.64645 5.60355C7.55268 5.69732 7.4255 5.75 7.29289 5.75H4.5Z" fill="black"/>
|
||||
<path d="M14.75 2C14.75 1.80811 14.6768 1.61621 14.5303 1.46973C14.3838 1.32324 14.1919 1.25 14 1.25H9C8.58569 1.25 8.25 1.58582 8.25 2C8.25 2.41418 8.58569 2.75 9 2.75H11.7066C11.8848 2.75 11.974 2.96543 11.848 3.09142L6.46973 8.46973C6.17676 8.76257 6.17676 9.23743 6.46973 9.53027C6.76245 9.82324 7.23755 9.82324 7.53027 9.53027L12.9086 4.15197C13.0346 4.02598 13.25 4.11521 13.25 4.29339V7C13.25 7.41418 13.5859 7.75 14 7.75C14.4141 7.75 14.75 7.41418 14.75 7V2Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.79808 8.99924C3.30984 8.99924 2.01172 9.84928 1.34683 11.101C1.11734 11.5331 1.47549 11.9989 1.9647 11.9989H5.02946C5.44351 11.9989 5.7734 11.6615 5.83386 11.2519C5.90556 10.7662 6.04582 10.3034 6.24425 9.87395C6.3671 9.6081 6.27341 9.27924 5.99496 9.18851C5.61764 9.06555 5.21547 8.99924 4.79808 8.99924ZM4.8345 7.99937C3.72993 7.99937 2.8345 7.10405 2.8345 5.99962C2.8345 4.89519 3.72993 3.99988 4.8345 3.99988C5.93907 3.99988 6.8345 4.89519 6.8345 5.99962C6.8345 7.10405 5.93907 7.99937 4.8345 7.99937ZM11.1143 6.99949C10.0097 6.99949 9.11427 6.10418 9.11427 4.99975C9.11427 3.89532 10.0097 3 11.1143 3C12.2188 3 13.1143 3.89532 13.1143 4.99975C13.1143 6.10418 12.2188 6.99949 11.1143 6.99949ZM8.15292 11.9989C7.60042 11.9989 7.13994 11.5441 7.27438 11.0082C7.70833 9.2784 9.24895 7.99939 11.0762 7.99939C12.9071 7.99939 14.4452 9.27832 14.8782 11.0081C15.0124 11.5441 14.5519 11.9989 13.9994 11.9989H8.15292Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M5 8V6.25641C5 4.47326 6.32593 3 8 3C9.67407 3 11 4.47326 11 6.25641V8H11.5C12.3284 8 13 8.67157 13 9.5V12.5C13 13.3284 12.3284 14 11.5 14H4.5C3.67157 14 3 13.3284 3 12.5V9.5C3 8.67157 3.67157 8 4.5 8H5ZM6.38462 8H9.61538V6.25641C9.61538 5.20733 8.87494 4.38462 8 4.38462C7.12506 4.38462 6.38462 5.20733 6.38462 6.25641V8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 491 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 3C6.40689 3 5.12907 4.3342 5.00919 6H6.3996C6.50856 5.07633 7.19774 4.38462 8 4.38462C8.87494 4.38462 9.61538 5.20733 9.61538 6.25641V8H7H6.38462H5H4.5C3.67157 8 3 8.67157 3 9.5V12.5C3 13.3284 3.67157 14 4.5 14H11.5C12.3284 14 13 13.3284 13 12.5V9.5C13 8.67157 12.3284 8 11.5 8H11V6.25641C11 4.47326 9.67407 3 8 3Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 486 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.99996 7C9.10453 7 9.99996 6.10457 9.99996 5C9.99996 3.89543 9.10453 3 7.99996 3C6.89539 3 5.99996 3.89543 5.99996 5C5.99996 6.10457 6.89539 7 7.99996 7ZM4.12339 11.0101C4.5639 9.27976 6.13248 8 7.99996 8C9.86744 8 11.436 9.27976 11.8765 11.0101C12.0128 11.5453 11.5522 12 11 12H4.99996C4.44767 12 3.98713 11.5453 4.12339 11.0101Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 501 B |
|
@ -1,5 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="3.5" cy="8" r="1.5" fill="black"/>
|
||||
<circle opacity="0.2" cx="12.5" cy="8" r="1.5" fill="black"/>
|
||||
<circle opacity="0.6" cx="8" cy="8" r="1.5" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 271 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.1667 3C11.7033 3 11.3334 3.35631 11.3334 3.79585V10.1995C11.3334 10.631 11.7065 10.9953 12.1667 10.9953C12.6302 10.9953 13.0001 10.639 13.0001 10.1995V3.79585C13.0001 3.36432 12.627 3 12.1667 3ZM3 6.16622C3 5.92077 3.19813 5.67629 3.45222 5.61794L9.95519 4.12462C10.2049 4.06726 10.4074 4.21886 10.4074 4.46825V9.52683C10.4074 9.77397 10.2093 9.92882 9.95519 9.87047L3.45222 8.37715C3.20246 8.3198 3 8.07309 3 7.82886V6.16622ZM5.12974 9.76193V10.3334C5.12974 11.0728 5.74984 11.6674 6.51863 11.6674C7.26084 11.6674 7.86969 11.1115 7.90512 10.4046V10.4039L9.25291 10.7157C9.16736 11.9185 8.04964 13 6.51863 13C4.98451 13 3.74086 11.8104 3.74086 10.3334V9.44065L5.12974 9.76193Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 849 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 5.08946V3.62446C8 3.00346 8.373 2.81246 8.824 3.20246L12.828 6.64746C13.055 6.84246 13.054 7.15746 12.827 7.35146L8.822 10.7975C8.373 11.1855 8 10.9955 8 10.3745V8.99946C5.498 8.99946 4.183 10.8865 3.524 12.5315C3.421 12.7885 3.271 12.7885 3.2 12.5205C3.071 12.0355 3 11.5255 3 10.9995C3 8.02646 5.164 5.56546 8 5.08946Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 452 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.7803 3C10.9365 3.00015 11.0809 3.07955 11.159 3.20833L13.9414 7.79167C14.0196 7.92058 14.0196 8.07942 13.9414 8.20833L11.159 12.7917C11.0809 12.9205 10.9365 12.9998 10.7803 13H5.2198C5.06354 12.9998 4.91921 12.9205 4.84108 12.7917L2.05866 8.20833C1.98045 8.07942 1.98045 7.92058 2.05866 7.79167L4.84108 3.20833C4.91921 3.07955 5.06354 3.00015 5.2198 3H10.7803ZM6 8C6 9.10457 6.89543 10 8 10C8.53043 10 9.03914 9.78929 9.41421 9.41421C9.78929 9.03914 10 8.53043 10 8C10 6.89543 9.10457 6 8 6C6.89543 6 6 6.89543 6 8Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 688 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C4.68629 2 2 4.68629 2 8V12C2 13.1046 2.89543 14 4 14H8C11.3137 14 14 11.3137 14 8C14 4.68629 11.3137 2 8 2ZM7.63838 7.63711L7.63837 7.63711C7.21874 7.5919 6.7991 7.54669 6.28312 7.57649C6.02723 7.59086 5.77312 7.62795 5.52376 7.68732C5.67605 5.77935 7.02638 4.11029 8.8626 4.00419C9.98943 3.93917 11.1157 4.63489 11.1768 5.76431C11.2369 6.87437 10.3903 7.61715 8.99295 7.69776C8.47727 7.72748 8.05782 7.68229 7.63838 7.63711ZM6.21975 11.9961C5.14026 12.057 4.06146 11.4057 4.00288 10.3489C3.94527 9.30994 4.75627 8.61492 6.09495 8.53946C6.58891 8.51162 6.99073 8.55392 7.39253 8.59622L7.39254 8.59622L7.39256 8.59622C7.79454 8.63853 8.19649 8.68085 8.69067 8.65293C8.93568 8.6395 9.17906 8.60479 9.4181 8.5492C9.27247 10.3348 7.97892 11.8969 6.21975 11.9961Z" fill="black"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 932 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="16" height="8" viewBox="0 0 16 8">
|
||||
<path fill="" d="M0,0 L15.969209,0.0223819541 L9.39011025,6.60148066 C8.60906167,7.38252924 7.34273171,7.38252924 6.56168312,6.60148066 L6.55741249,6.59719708 L0,0 Z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 227 B |
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 696 B |