0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 03:21:26 -05:00

Major icons page refactor.

With the ability to upload icons by the user.
This commit is contained in:
Andrey Antukh 2016-10-19 17:43:17 +02:00
parent 2143bb6e04
commit c8846f7cbf
24 changed files with 1444 additions and 571 deletions

View file

@ -2,48 +2,39 @@
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
;; Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
;; Copyright (c) 2016 Andrey Antukh <niwi@niwi.nz>
(ns uxbox.main.data.icons
(:require [cuerdas.core :as str]
[beicon.core :as rx]
[uxbox.util.data :refer (jscoll->vec)]
[uxbox.util.uuid :as uuid]
[uxbox.util.rstore :as rs]
[uxbox.util.router :as r]
[uxbox.util.dom.files :as files]
[uxbox.main.state :as st]
[uxbox.main.repo :as rp]))
;; --- Initialize
(declare fetch-icons)
(declare fetch-collections)
(declare collections-fetched?)
(defrecord Initialize [type id]
rs/UpdateEvent
(-apply-update [_ state]
(let [type (or type :builtin)
(let [type (or type :own)
id (or id (if (= type :builtin) 1 nil))
data {:type type :id id :selected #{}}]
(-> state
(assoc-in [:dashboard :icons] data)
(assoc-in [:dashboard :section] :dashboard/icons)))))
(assoc-in [:dashboard :section] :dashboard/icons))))
;; rs/EffectEvent
;; (-apply-effect [_ state]
;; (when (nil? (:icon-colls-by-id state))
;; (reset! st/loader true)))
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (if (nil? (:icon-colls-by-id state))
;; (rx/merge
;; (rx/of (fetch-collections))
;; (->> (rx/filter collections-fetched? s)
;; (rx/take 1)
;; (rx/do #(reset! st/loader false))
;; (rx/ignore)))
;; (rx/empty))))
rs/WatchEvent
(-apply-watch [_ state s]
(rx/merge (rx/of (fetch-collections))
(rx/of (fetch-icons id)))))
(defn initialize
[type id]
@ -64,234 +55,258 @@
{:pre [(keyword? type)]}
(SelectCollection. type id)))
;; --- Color Collections Fetched
;; --- Collections Fetched
;; (defrecord CollectionsFetched [items]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (reduce (fn [state item]
;; (let [id (:id item)
;; item (assoc item :type :own)]
;; (assoc-in state [:icon-colls-by-id id] item)))
;; state
;; items)))
(defrecord CollectionsFetched [items]
rs/UpdateEvent
(-apply-update [_ state]
(reduce (fn [state item]
(let [id (:id item)
item (assoc item :type :own)]
(assoc-in state [:icon-colls-by-id id] item)))
state
items)))
;; (defn collections-fetched
;; [items]
;; (CollectionsFetched. items))
(defn collections-fetched
[items]
(CollectionsFetched. items))
;; --- Fetch Color Collections
;; --- Fetch Collections
;; (defrecord FetchCollections []
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (->> (rp/req :fetch/icon-collections)
;; (rx/map :payload)
;; (rx/map collections-fetched))))
(defrecord FetchCollections []
rs/WatchEvent
(-apply-watch [_ state s]
(->> (rp/req :fetch/icon-collections)
(rx/map :payload)
(rx/map collections-fetched))))
;; (defn fetch-collections
;; []
;; (FetchCollections.))
(defn fetch-collections
[]
(FetchCollections.))
;; --- Collection Created
;; (defrecord CollectionCreated [item]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (let [item (assoc item :type :own)]
;; (-> state
;; (assoc-in [:icon-colls-by-id (:id item)] item)
;; (assoc-in [:dashboard :collection-id] (:id item))
;; (assoc-in [:dashboard :collection-type] :own)))))
(defrecord CollectionCreated [item]
rs/UpdateEvent
(-apply-update [_ state]
(let [item (assoc item :type :own)]
(-> state
(assoc-in [:icon-colls-by-id (:id item)] item)
(assoc-in [:dashboard :collection-id] (:id item))
(assoc-in [:dashboard :collection-type] :own)))))
;; (defn collection-created
;; [item]
;; (CollectionCreated. item))
(defn collection-created
[item]
(CollectionCreated. item))
;; --- Create Collection
;; (defrecord CreateCollection []
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (let [coll {:name "Unnamed collection"
;; :id (uuid/random)}]
;; (->> (rp/req :create/icon-collection coll)
;; (rx/map :payload)
;; (rx/map collection-created)))))
(defrecord CreateCollection []
rs/WatchEvent
(-apply-watch [_ state s]
(let [coll {:name "Unnamed collection"
:id (uuid/random)}]
(->> (rp/req :create/icon-collection coll)
(rx/map :payload)
(rx/map collection-created)))))
;; (defn create-collection
;; []
;; (CreateCollection.))
(defn create-collection
[]
(CreateCollection.))
;; (defn collections-fetched?
;; [v]
;; (instance? CollectionsFetched v))
(defn collections-fetched?
[v]
(instance? CollectionsFetched v))
;; --- Collection Updated
;; (defrecord CollectionUpdated [item]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (update-in state [:icon-colls-by-id (:id item)] merge item)))
(defrecord CollectionUpdated [item]
rs/UpdateEvent
(-apply-update [_ state]
(update-in state [:icon-colls-by-id (:id item)] merge item)))
;; (defn collection-updated
;; [item]
;; (CollectionUpdated. item))
(defn collection-updated
[item]
(CollectionUpdated. item))
;; --- Update Collection
;; (defrecord UpdateCollection [id]
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (let [item (get-in state [:icon-colls-by-id id])]
;; (->> (rp/req :update/icon-collection item)
;; (rx/map :payload)
;; (rx/map collection-updated)))))
(defrecord UpdateCollection [id]
rs/WatchEvent
(-apply-watch [_ state s]
(let [item (get-in state [:icon-colls-by-id id])]
(->> (rp/req :update/icon-collection item)
(rx/map :payload)
(rx/map collection-updated)))))
;; (defn update-collection
;; [id]
;; (UpdateCollection. id))
(defn update-collection
[id]
(UpdateCollection. id))
;; --- Rename Collection
;; (defrecord RenameCollection [id name]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (assoc-in state [:icon-colls-by-id id :name] name))
(defrecord RenameCollection [id name]
rs/UpdateEvent
(-apply-update [_ state]
(assoc-in state [:icon-colls-by-id id :name] name))
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (rx/of (update-collection id))))
rs/WatchEvent
(-apply-watch [_ state s]
(rx/of (update-collection id))))
;; (defn rename-collection
;; [item name]
;; (RenameCollection. item name))
(defn rename-collection
[id name]
(RenameCollection. id name))
;; --- Delete Collection
;; (defrecord DeleteCollection [id]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (update state :icon-colls-by-id dissoc id))
(defrecord DeleteCollection [id]
rs/UpdateEvent
(-apply-update [_ state]
(update state :icon-colls-by-id dissoc id))
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (->> (rp/req :delete/icon-collection id)
;; (rx/ignore))))
rs/WatchEvent
(-apply-watch [_ state s]
(->> (rp/req :delete/icon-collection id)
(rx/ignore))))
;; (defn delete-collection
;; [id]
;; (DeleteCollection. id))
(defn delete-collection
[id]
(DeleteCollection. id))
;; --- Icon Created
;; (defrecord IconCreated [item]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (update-in state [:icon-colls-by-id (:collection item) :icons]
;; #(conj % item))))
(defrecord IconCreated [item]
rs/UpdateEvent
(-apply-update [_ state]
(let [{:keys [id] :as item} (assoc item :type :icon-raw)]
(update state :icons-by-id assoc id item))))
;; (defn icon-created
;; [item]
;; (IconCreated. item))
(defn icon-created
[item]
(IconCreated. item))
;; --- Create Icon
;; (defrecord CreateIcons [coll-id files]
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (let [files-to-array (fn [js-col]
;; (-> (clj->js [])
;; (.-slice)
;; (.call js-col)
;; (js->clj)))
;; icons-data (map (fn [file] {:coll coll-id
;; :id (uuid/random)
;; :file file}) (files-to-array files))]
;; (->> (rx/from-coll icons-data)
;; (rx/flat-map #(rp/req :create/icon %))
;; (rx/map :payload)
;; (rx/map icon-created)))))
(defn- parse-svg
[data]
{:pre [(string? data)]}
(let [valid-tags #{"defs" "path" "circle" "rect" "metadata" "g"}
div (js/document.createElement "div")
gc (js/document.createElement "div")
g (js/document.createElementNS "http://www.w3.org/2000/svg" "g")]
(set! (.-innerHTML div) data)
(loop [child (.. div -firstChild -firstChild)]
(if child
(let [tagname (.-tagName child)]
(if (contains? valid-tags tagname)
(.appendChild g child)
(.appendChild gc child))
(recur (.. div -firstChild -firstChild)))
(let [svg (.-firstChild div)
width (.. svg -width -baseVal -value)
header (.. svg -height -baseVal -value)
view-box [(.. svg -viewBox -baseVal -x)
(.. svg -viewBox -baseVal -y)
(.. svg -viewBox -baseVal -width)
(.. svg -viewBox -baseVal -height)]
props {:width width
:mimetype "image/svg+xml"
:height header
:view-box view-box}]
[(.-outerHTML g) props])))))
;; (defn create-icons
;; [coll-id files]
;; (CreateIcons. coll-id files))
(defrecord CreateIcons [id files]
rs/WatchEvent
(-apply-watch [_ state s]
(letfn [(parse [file]
(->> (files/read-as-text file)
(rx/map parse-svg)))
(allowed? [file]
(= (.-type file) "image/svg+xml"))
(prepare [[content metadata]]
{:collection id
:content content
:name (str "Icon " (gensym "i"))
:metadata metadata})]
(->> (rx/from-coll (jscoll->vec files))
(rx/filter allowed?)
(rx/flat-map parse)
(rx/map prepare)
(rx/flat-map #(rp/req :create/icon %))
(rx/map :payload)
(rx/map icon-created)))))
(defn create-icons
[id files]
{:pre [(or (uuid? id) (nil? id))]}
(CreateIcons. id files))
;; --- Icons Fetched
;; (defrecord IconsFetched [coll-id items]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (assoc-in state [:icon-colls-by-id coll-id :icons] (set items))))
(defrecord IconsFetched [items]
rs/UpdateEvent
(-apply-update [_ state]
(reduce (fn [state {:keys [id] :as icon}]
(let [icon (assoc icon :type :icon-raw)]
(assoc-in state [:icons-by-id id] icon)))
state
items)))
;; (defn icons-fetched
;; [coll-id items]
;; (IconsFetched. coll-id items))
(defn icons-fetched
[items]
(IconsFetched. items))
;; --- Load Icons
;; (defrecord FetchIcons [coll-id]
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (let [params {:coll coll-id}]
;; (->> (rp/req :fetch/icons params)
;; (rx/map :payload)
;; (rx/map #(icons-fetched coll-id %))))))
(defrecord FetchIcons [id]
rs/WatchEvent
(-apply-watch [_ state s]
(let [params {:coll id}]
(->> (rp/req :fetch/icons params)
(rx/map :payload)
(rx/map icons-fetched)))))
;; (defn fetch-icons
;; [coll-id]
;; (FetchIcons. coll-id))
(defn fetch-icons
[id]
{:pre [(or (uuid? id) (nil? id))]}
(FetchIcons. id))
;; --- Delete Icons
;; (defrecord DeleteIcon [coll-id icon]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; (update-in state [:icon-colls-by-id coll-id :icons] disj icon))
(defrecord DeleteIcon [id]
rs/UpdateEvent
(-apply-update [_ state]
(-> state
(update :icons-by-id dissoc id)
(update-in [:dashboard :icons :selected] disj id)))
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (->> (rp/req :delete/icon (:id icon))
;; (rx/ignore))))
;; (defn delete-icon
;; [coll-id icon]
;; (DeleteIcon. coll-id icon))
;; --- Remove Icon
;; (defrecord RemoveIcons [id icons]
;; rs/UpdateEvent
;; (-apply-update [_ state]
;; #_(update-in state [:icon-colls-by-id id :data]
;; #(set/difference % icons)))
;; rs/WatchEvent
;; (-apply-watch [_ state s]
;; (rx/of (update-collection id))))
;; (defn remove-icons
;; "Remove icon in a collection."
;; [id icons]
;; (RemoveIcons. id icons))
rs/WatchEvent
(-apply-watch [_ state s]
(->> (rp/req :delete/icon id)
(rx/ignore))))
(defn delete-icon
[id]
{:pre [(uuid? id)]}
(DeleteIcon. id))
;; --- Select icon
(defrecord SelectIcon [id]
rs/UpdateEvent
(-apply-update [_ state]
(update-in state [:dashboard :selected] conj id)))
(update-in state [:dashboard :icons :selected] conj id)))
(defrecord DeselectIcon [id]
rs/UpdateEvent
(-apply-update [_ state]
(update-in state [:dashboard :selected] disj id)))
(update-in state [:dashboard :icons :selected] disj id)))
(defrecord ToggleIconSelection [id]
rs/WatchEvent
(-apply-watch [_ state stream]
(let [selected (get-in state [:dashboard :selected])]
(let [selected (get-in state [:dashboard :icons :selected])]
(rx/of
(if (selected id)
(DeselectIcon. id)
@ -303,16 +318,16 @@
;; --- Delete Selected
;; (defrecord DeleteSelected []
;; rs/WatchEvent
;; (-apply-watch [_ state stream]
;; (let [{:keys [id selected]} (get state :dashboard)]
;; (rx/of (remove-icons id selected)
;; #(assoc-in % [:dashboard :selected] #{})))))
(defrecord DeleteSelected []
rs/WatchEvent
(-apply-watch [_ state stream]
(let [selected (get-in state [:dashboard :icons :selected])]
(->> (rx/from-coll selected)
(rx/map delete-icon)))))
;; (defn delete-selected
;; []
;; (DeleteSelected.))
(defn delete-selected
[]
(DeleteSelected.))
;; --- Update Opts (Filtering & Ordering)

View file

@ -21,9 +21,14 @@
;; --- Icons
(def +icon-collections+ icons/+collections+)
(def +icons+ icons/+icons+)
(def +icon-collections-by-id+
(index-by-id icons/+collections+))
(def +icons-by-id+
(index-by-id icons/+icons+))
;; --- Images
(def +image-collections+ images/+collections+)

View file

@ -23,64 +23,66 @@
[uxbox.main.library.icons.material.toggle :as md-toggle]
))
(def +icons+
(vec (concat md-actions/+icons+
md-alerts/+icons+
md-av/+icons+
md-comm/+icons+
md-content/+icons+
md-device/+icons+
md-editor/+icons+
md-file/+icons+
md-hardware/+icons+
md-image/+icons+
md-maps/+icons+
md-nav/+icons+
md-not/+icons+
md-social/+icons+
md-toggle/+icons+)))
(def +collections+
[{:name "Material design (actions)"
:type :builtin
:id 1
:icons md-actions/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"}
{:name "Material design (alerts)"
:type :builtin
:id 2
:icons md-alerts/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728401"}
{:name "Material design (Av)"
:type :builtin
:id 3
:icons md-av/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"}
{:name "Material design (Communication)"
:type :builtin
:id 4
:icons md-comm/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"}
{:name "Material design (Content)"
:type :builtin
:id 5
:icons md-content/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"}
{:name "Material design (Device)"
:type :builtin
:id 6
:icons md-device/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"}
{:name "Material design (Editor)"
:type :builtin
:id 7
:icons md-editor/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"}
{:name "Material design (File)"
:type :builtin
:id 8
:icons md-file/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"}
{:name "Material design (Hardware)"
:type :builtin
:id 9
:icons md-hardware/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"}
{:name "Material design (Image)"
:type :builtin
:id 10
:icons md-image/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"}
{:name "Material design (Maps)"
:type :builtin
:id 11
:icons md-maps/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"}
{:name "Material design (Navigation)"
:type :builtin
:id 12
:icons md-nav/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"}
{:name "Material design (Notifications)"
:type :builtin
:id 13
:icons md-not/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"}
{:name "Material design (Social)"
:type :builtin
:id 14
:icons md-social/+icons+}
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"}
{:name "Material design (Toggle)"
:type :builtin
:id 15
:icons md-toggle/+icons+}])
:id #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"}])

View file

@ -8,216 +8,259 @@
[{:name "Attachment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M15 36c-6.08 0-11-4.93-11-11s4.92-11 11-11h21c4.42 0 8 3.58 8 8s-3.58 8-8 8h-17c-2.76 0-5-2.24-5-5s2.24-5 5-5h15v3h-15c-1.1 0-2 .89-2 2s.9 2 2 2h17c2.76 0 5-2.24 5-5s-2.24-5-5-5h-21c-4.42 0-8 3.58-8 8s3.58 8 8 8h19v3h-19z"}]}
{:name "Cloud"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38.71 20.07c-1.36-6.88-7.43-12.07-14.71-12.07-5.78 0-10.79 3.28-13.3 8.07-6.01.65-10.7 5.74-10.7 11.93 0 6.63 5.37 12 12 12h26c5.52 0 10-4.48 10-10 0-5.28-4.11-9.56-9.29-9.93z"}]}
{:name "3d rotation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M15.03 42.97c-6.53-3.1-11.22-9.45-11.93-16.97h-3c1.02 12.32 11.32 22 23.9 22 .45 0 .88-.04 1.32-.07l-7.62-7.63-2.67 2.67zm1.78-13.05c-.38 0-.73-.05-1.05-.17-.31-.11-.58-.27-.8-.47-.22-.2-.39-.45-.51-.73-.12-.29-.18-.6-.18-.94h-2.6c0 .72.14 1.35.42 1.9.28.55.65 1.01 1.12 1.37.47.37 1.01.64 1.63.83.62.2 1.26.29 1.94.29.74 0 1.43-.1 2.07-.3.64-.2 1.19-.5 1.66-.89s.83-.87 1.1-1.44c.26-.57.4-1.22.4-1.95 0-.39-.05-.76-.14-1.12-.1-.36-.25-.7-.45-1.02-.21-.32-.48-.6-.81-.86-.33-.25-.74-.46-1.21-.63.4-.18.75-.4 1.05-.66.3-.26.55-.54.75-.83.2-.3.35-.6.45-.92.1-.32.15-.64.15-.95 0-.73-.12-1.37-.36-1.92-.24-.55-.58-1.01-1.02-1.38-.44-.37-.96-.65-1.58-.84-.64-.2-1.32-.29-2.06-.29-.72 0-1.39.11-2 .32-.61.21-1.13.51-1.57.89-.44.38-.78.83-1.03 1.35-.25.52-.37 1.09-.37 1.7h2.6c0-.34.06-.64.18-.9.12-.27.29-.5.5-.68.21-.19.47-.34.76-.44.29-.1.61-.16.95-.16.8 0 1.39.21 1.78.62.39.41.58.99.58 1.73 0 .36-.05.68-.16.97-.11.29-.27.54-.49.75-.22.21-.5.37-.82.49-.33.12-.72.18-1.16.18h-1.54v2.05h1.54c.44 0 .84.05 1.19.15.35.1.65.25.9.47.25.21.44.48.58.8.13.32.2.7.2 1.14 0 .81-.23 1.43-.7 1.86-.45.42-1.08.63-1.89.63zm17.12-11.85c-.63-.66-1.39-1.17-2.27-1.53-.89-.36-1.86-.54-2.93-.54h-4.73v16h4.59c1.11 0 2.11-.18 3.02-.54.91-.36 1.68-.87 2.32-1.53.64-.66 1.14-1.46 1.48-2.39.35-.93.52-1.98.52-3.14v-.79c0-1.16-.18-2.2-.53-3.14-.35-.94-.84-1.74-1.47-2.4zm-.79 6.34c0 .83-.09 1.59-.29 2.25-.19.67-.47 1.23-.85 1.69-.38.46-.85.81-1.42 1.06-.57.24-1.23.37-1.99.37h-1.81v-11.54h1.95c1.44 0 2.53.46 3.29 1.37.75.92 1.13 2.24 1.13 3.98v.82zm-9.14-24.41c-.45 0-.88.04-1.32.07l7.62 7.63 2.66-2.66c6.54 3.09 11.23 9.44 11.94 16.96h3c-1.02-12.32-11.32-22-23.9-22z" :style {:stroke nil}}]}
{:name "accesiblity"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm18 14h-12v26h-4v-12h-4v12h-4v-26h-12v-4h36v4z" :style {:stroke nil}}]}
{:name "Account Balance"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 20v14h6v-14h-6zm12 0v14h6v-14h-6zm-16 24h38v-6h-38v6zm28-24v14h6v-14h-6zm-9-18l-19 10v4h38v-4l-19-10z" :style {:stroke nil}}]}
{:name "Account Balance Wallet"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42 36v2c0 2.21-1.79 4-4 4h-28c-2.21 0-4-1.79-4-4v-28c0-2.21 1.79-4 4-4h28c2.21 0 4 1.79 4 4v2h-18c-2.21 0-4 1.79-4 4v16c0 2.21 1.79 4 4 4h18zm-18-4h20v-16h-20v16zm8-5c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" :style {:stroke nil}}]}
{:name "Account Box"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M6 10v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4h-28c-2.21 0-4 1.79-4 4zm24 8c0 3.32-2.69 6-6 6s-6-2.68-6-6c0-3.31 2.69-6 6-6s6 2.69 6 6zm-18 16c0-4 8-6.2 12-6.2s12 2.2 12 6.2v2h-24v-2z" :style {:stroke nil}}]}
{:name "Account Child"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M33 24c2.76 0 4.98-2.24 4.98-5s-2.22-5-4.98-5c-2.76 0-5 2.24-5 5s2.24 5 5 5zm-15-2c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm15 6c-3.67 0-11 1.84-11 5.5v4.5h22v-4.5c0-3.66-7.33-5.5-11-5.5zm-15-2c-4.67 0-14 2.34-14 7v5h14v-4.5c0-1.7.67-4.67 4.74-6.94-1.74-.37-3.43-.56-4.74-.56z" :style {:stroke nil}}]}
{:name "Account Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 6c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6s-6-2.68-6-6c0-3.31 2.69-6 6-6zm0 28.4c-5.01 0-9.41-2.56-12-6.44.05-3.97 8.01-6.16 12-6.16s11.94 2.19 12 6.16c-2.59 3.88-6.99 6.44-12 6.44z" :style {:stroke nil}}]}
{:name "Add Shopping Cart"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M22 18h4v-6h6v-4h-6v-6h-4v6h-6v4h6v6zm-8 18c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4zm20 0c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4zm-19.65-6.5c0-.09.02-.17.06-.24l1.8-3.26h14.9c1.5 0 2.81-.83 3.5-2.06l7.72-14.02-3.5-1.92h-.01l-2.21 4-5.51 10h-14.03l-.26-.54-4.49-9.46-1.9-4-1.89-4h-6.53v4h4l7.2 15.17-2.71 4.9c-.31.58-.49 1.23-.49 1.93 0 2.21 1.79 4 4 4h24v-4h-23.15c-.28 0-.5-.22-.5-.5z" :style {:stroke nil}}]}
{:name "Alarm"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M44 11.44l-9.19-7.71-2.57 3.06 9.19 7.71 2.57-3.06zm-28.24-4.66l-2.57-3.06-9.19 7.71 2.57 3.06 9.19-7.71zm9.24 9.22h-3v12l9.49 5.71 1.51-2.47-8-4.74v-10.5zm-1.01-8c-9.95 0-17.99 8.06-17.99 18s8.04 18 17.99 18 18.01-8.06 18.01-18-8.06-18-18.01-18zm.01 32c-7.73 0-14-6.27-14-14s6.27-14 14-14 14 6.27 14 14-6.26 14-14 14z" :style {:stroke nil}}]}
{:name "Alarm Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M15.76 6.78l-2.57-3.06-9.19 7.71 2.57 3.06 9.19-7.71zm28.24 4.66l-9.19-7.71-2.57 3.06 9.19 7.71 2.57-3.06zm-20.01-3.44c-9.95 0-17.99 8.06-17.99 18s8.04 18 17.99 18 18.01-8.06 18.01-18-8.06-18-18.01-18zm.01 32c-7.73 0-14-6.27-14-14s6.27-14 14-14 14 6.27 14 14-6.26 14-14 14zm2-22h-4v6h-6v4h6v6h4v-6h6v-4h-6v-6z" :style {:stroke nil}}]}
{:name "Alarm Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 12c7.73 0 14 6.27 14 14 0 1.69-.31 3.3-.86 4.8l3.04 3.04c1.16-2.37 1.82-5.03 1.82-7.84 0-9.94-8.06-18-18.01-18-2.81 0-5.46.66-7.84 1.81l3.05 3.05c1.5-.55 3.11-.86 4.8-.86zm20-.56l-9.19-7.71-2.57 3.06 9.19 7.71 2.57-3.06zm-38.16-6.85l-2.55 2.54 2.66 2.66-2.22 1.86 2.84 2.84 2.22-1.86 1.6 1.6c-2.73 3.16-4.39 7.27-4.39 11.77 0 9.94 8.04 18 17.99 18 4.51 0 8.62-1.67 11.77-4.4l4.4 4.4 2.54-2.55-34.91-34.91-1.95-1.95zm27.1 32.19c-2.43 2.01-5.54 3.22-8.94 3.22-7.73 0-14-6.27-14-14 0-3.4 1.21-6.51 3.22-8.94l19.72 19.72zm-16.91-30.23l-2.84-2.84-1.7 1.43 2.84 2.84 1.7-1.43z" :style {:stroke nil}}]}
{:name "Alarm Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M44 11.44l-9.19-7.71-2.57 3.06 9.19 7.71 2.57-3.06zm-28.24-4.66l-2.57-3.06-9.19 7.71 2.57 3.06 9.19-7.71zm8.23 1.22c-9.95 0-17.99 8.06-17.99 18s8.04 18 17.99 18 18.01-8.06 18.01-18-8.06-18-18.01-18zm.01 32c-7.73 0-14-6.27-14-14s6.27-14 14-14 14 6.27 14 14-6.26 14-14 14zm-2.93-10.95l-4.24-4.24-2.12 2.12 6.36 6.36 12.01-12.01-2.12-2.12-9.89 9.89z" :style {:stroke nil}}]}
{:name "Android"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M12 36c0 1.1.9 2 2 2h2v7c0 1.66 1.34 3 3 3s3-1.34 3-3v-7h4v7c0 1.66 1.34 3 3 3s3-1.34 3-3v-7h2c1.1 0 2-.9 2-2v-20h-24v20zm-5-20c-1.66 0-3 1.34-3 3v14c0 1.66 1.34 3 3 3s3-1.34 3-3v-14c0-1.66-1.34-3-3-3zm34 0c-1.66 0-3 1.34-3 3v14c0 1.66 1.34 3 3 3s3-1.34 3-3v-14c0-1.66-1.34-3-3-3zm-9.94-11.68l2.61-2.61c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0l-2.96 2.95c-1.6-.79-3.39-1.25-5.3-1.25-1.92 0-3.72.46-5.33 1.26l-2.97-2.97c-.39-.39-1.02-.39-1.41 0-.39.39-.39 1.02 0 1.41l2.62 2.62c-2.97 2.19-4.91 5.71-4.91 9.68h24c0-3.98-1.95-7.5-4.94-9.68zm-11.06 5.68h-2v-2h2v2zm10 0h-2v-2h2v2z" :style {:stroke nil}}]}
{:name "Announcement"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 4h-32c-2.21 0-3.98 1.79-3.98 4l-.02 36 8-8h28c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm-14 18h-4v-12h4v12zm0 8h-4v-4h4v4z" :style {:stroke nil}}]}
{:name "Aspect Ratio"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 24h-4v6h-6v4h10v-10zm-24-6h6v-4h-10v10h4v-6zm28-12h-36c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32.03h-36v-28.06h36v28.06z" :style {:stroke nil}}]}
{:name "Assesment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-28c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-20 28h-4v-14h4v14zm8 0h-4v-20h4v20zm8 0h-4v-8h4v8z" :style {:stroke nil}}]}
{:name "Assignment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-8.37c-.82-2.32-3.02-4-5.63-4s-4.81 1.68-5.63 4h-8.37c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-14 0c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm4 28h-14v-4h14v4zm6-8h-20v-4h20v4zm0-8h-20v-4h20v4z" :style {:stroke nil}}]}
{:name "Assignment Ind"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-8.37c-.82-2.32-3.02-4-5.63-4s-4.81 1.68-5.63 4h-8.37c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-14 0c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 8c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6s-6-2.68-6-6c0-3.31 2.69-6 6-6zm12 24h-24v-2.8c0-4 8-6.2 12-6.2s12 2.2 12 6.2v2.8z" :style {:stroke nil}}]}
{:name "Assignment Late"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-8.37c-.82-2.32-3.02-4-5.63-4s-4.81 1.68-5.63 4h-8.37c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-12 30h-4v-4h4v4zm0-8h-4v-12h4v12zm-2-18c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2z" :style {:stroke nil}}]}
{:name "Assignment Return"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-8.37c-.82-2.32-3.02-4-5.63-4s-4.81 1.68-5.63 4h-8.37c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-14 0c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm8 24h-8v6l-10-10 10-10v6h8v8z" :style {:stroke nil}}]}
{:name "Assignment Returned"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-8.37c-.82-2.32-3.02-4-5.63-4s-4.81 1.68-5.63 4h-8.37c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-14 0c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 30l-10-10h6v-8h8v8h6l-10 10z" :style {:stroke nil}}]}
{:name "Autorenew"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 12v6l8-8-8-8v6c-8.84 0-16 7.16-16 16 0 3.14.92 6.05 2.48 8.52l2.92-2.92c-.89-1.67-1.4-3.57-1.4-5.6 0-6.63 5.37-12 12-12zm13.52 3.48l-2.92 2.92c.89 1.67 1.4 3.57 1.4 5.6 0 6.63-5.37 12-12 12v-6l-8 8 8 8v-6c8.84 0 16-7.16 16-16 0-3.14-.92-6.05-2.48-8.52z" :style {:stroke nil}}]}
{:name "Backup"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38.71 20.07c-1.36-6.88-7.43-12.07-14.71-12.07-5.78 0-10.79 3.28-13.3 8.07-6.01.65-10.7 5.74-10.7 11.93 0 6.63 5.37 12 12 12h26c5.52 0 10-4.48 10-10 0-5.28-4.11-9.56-9.29-9.93zm-10.71 5.93v8h-8v-8h-6l10-10 10 10h-6z" :style {:stroke nil}}]}
{:name "Book"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 4h-24c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-4-4-4zm-24 4h10v16l-5-3-5 3v-16z" :style {:stroke nil}}]}
{:name "Bookmark"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34 6h-20c-2.21 0-3.98 1.79-3.98 4l-.02 32 14-6 14 6v-32c0-2.21-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Bookmark Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34 6h-20c-2.21 0-3.98 1.79-3.98 4l-.02 32 14-6 14 6v-32c0-2.21-1.79-4-4-4zm0 30l-10-4.35-10 4.35v-26h20v26z" :style {:stroke nil}}]}
{:name "Bug Report"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 16h-5.62c-.9-1.56-2.14-2.91-3.63-3.92l3.25-3.25-2.83-2.83-4.35 4.35c-.9-.22-1.85-.35-2.82-.35-.97 0-1.92.13-2.82.35l-4.35-4.35-2.83 2.83 3.25 3.25c-1.49 1.01-2.73 2.36-3.63 3.92h-5.62v4h4.18c-.11.65-.18 1.32-.18 2v2h-4v4h4v2c0 .68.07 1.35.18 2h-4.18v4h5.62c2.07 3.58 5.94 6 10.38 6s8.31-2.42 10.38-6h5.62v-4h-4.18c.11-.65.18-1.32.18-2v-2h4v-4h-4v-2c0-.68-.07-1.35-.18-2h4.18v-4zm-12 16h-8v-4h8v4zm0-8h-8v-4h8v4z" :style {:stroke nil}}]}
{:name "Cached"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 16l-8 8h6c0 6.63-5.37 12-12 12-2.03 0-3.93-.51-5.61-1.39l-2.92 2.92c2.48 1.55 5.39 2.47 8.53 2.47 8.84 0 16-7.16 16-16h6l-8-8zm-26 8c0-6.63 5.37-12 12-12 2.03 0 3.93.51 5.61 1.39l2.92-2.92c-2.48-1.55-5.39-2.47-8.53-2.47-8.84 0-16 7.16-16 16h-6l8 8 8-8h-6z" :style {:stroke nil}}]}
{:name "Class"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 4h-24c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-4-4-4zm-24 4h10v16l-5-3-5 3v-16z" :style {:stroke nil}}]}
{:name "Credit Card"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 8h-32c-2.21 0-3.98 1.79-3.98 4l-.02 24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm0 28h-32v-12h32v12zm0-20h-32v-4h32v4z" :style {:stroke nil}}]}
{:name "Dashboard"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M6 26h16v-20h-16v20zm0 16h16v-12h-16v12zm20 0h16v-20h-16v20zm0-36v12h16v-12h-16z" :style {:stroke nil}}]}
{:name "Delete"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M12 38c0 2.21 1.79 4 4 4h16c2.21 0 4-1.79 4-4v-24h-24v24zm26-30h-7l-2-2h-10l-2 2h-7v4h28v-4z" :style {:stroke nil}}]}
{:name "Description"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M28 4h-16c-2.21 0-3.98 1.79-3.98 4l-.02 32c0 2.21 1.77 4 3.98 4h24.02c2.21 0 4-1.79 4-4v-24l-12-12zm4 32h-16v-4h16v4zm0-8h-16v-4h16v4zm-6-10v-11l11 11h-11z" :style {:stroke nil}}]}
{:name "DNS"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 26h-32c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h32c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zm-26 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm26-32h-32c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h32c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zm-26 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" :style {:stroke nil}}]}
{:name "Done"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M18 32.34l-8.34-8.34-2.83 2.83 11.17 11.17 24-24-2.83-2.83z" :style {:stroke nil}}]}
{:name "Done All"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 14l-2.83-2.83-12.68 12.69 2.83 2.83 12.68-12.69zm8.49-2.83l-21.18 21.17-8.34-8.34-2.83 2.83 11.17 11.17 24-24-2.82-2.83zm-43.66 15.66l11.17 11.17 2.83-2.83-11.17-11.17-2.83 2.83z" :style {:stroke nil}}]}
{:name "Event"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34 24h-10v10h10v-10zm-2-22v4h-16v-4h-4v4h-2c-2.21 0-3.98 1.79-3.98 4l-.02 28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4h-2v-4h-4zm6 36h-28v-22h28v22z" :style {:stroke nil}}]}
{:name "Exit To App"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M20.17 31.17l2.83 2.83 10-10-10-10-2.83 2.83 5.17 5.17h-19.34v4h19.34l-5.17 5.17zm17.83-25.17h-28c-2.21 0-4 1.79-4 4v8h4v-8h28v28h-28v-8h-4v8c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Explore"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 21.8c-1.21 0-2.2.99-2.2 2.2s.99 2.2 2.2 2.2c1.22 0 2.2-.99 2.2-2.2s-.98-2.2-2.2-2.2zm0-17.8c-11.05 0-20 8.95-20 20 0 11.04 8.95 20 20 20s20-8.96 20-20c0-11.05-8.95-20-20-20zm4.38 24.38l-16.38 7.62 7.62-16.38 16.38-7.62-7.62 16.38z" :style {:stroke nil}}]}
{:name "Explore"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M41 22h-3v-8c0-2.21-1.79-4-4-4h-8v-3c0-2.76-2.24-5-5-5s-5 2.24-5 5v3h-8c-2.21 0-3.98 1.79-3.98 4l-.01 7.6h2.99c2.98 0 5.4 2.42 5.4 5.4s-2.42 5.4-5.4 5.4h-2.99l-.01 7.6c0 2.21 1.79 4 4 4h7.6v-3c0-2.98 2.42-5.4 5.4-5.4 2.98 0 5.4 2.42 5.4 5.4v3h7.6c2.21 0 4-1.79 4-4v-8h3c2.76 0 5-2.24 5-5s-2.24-5-5-5z" :style {:stroke nil}}]}
{:name "Face Unlock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:g
[:path {:d "M29.39 34.21c-1.49 1.15-3.4 1.79-5.39 1.79s-3.9-.64-5.39-1.79c-.43-.34-1.06-.26-1.4.18-.34.44-.26 1.06.18 1.4 1.83 1.42 4.18 2.21 6.61 2.21s4.78-.79 6.61-2.21c.44-.34.52-.97.18-1.4-.34-.44-.97-.52-1.4-.18z" :style {:stroke nil}}]
@ -227,271 +270,325 @@
{:name "Favorite"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 42.7l-2.9-2.63c-10.3-9.35-17.1-15.52-17.1-23.07 0-6.17 4.83-11 11-11 3.48 0 6.82 1.62 9 4.17 2.18-2.55 5.52-4.17 9-4.17 6.17 0 11 4.83 11 11 0 7.55-6.8 13.72-17.1 23.07l-2.9 2.63z" :style {:stroke nil}}]}
{:name "Favorite Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M33 6c-3.48 0-6.82 1.62-9 4.17-2.18-2.55-5.52-4.17-9-4.17-6.17 0-11 4.83-11 11 0 7.55 6.8 13.72 17.1 23.07l2.9 2.63 2.9-2.63c10.3-9.35 17.1-15.52 17.1-23.07 0-6.17-4.83-11-11-11zm-8.79 31.11l-.21.19-.21-.19c-9.51-8.63-15.79-14.33-15.79-20.11 0-3.99 3.01-7 7-7 3.08 0 6.08 1.99 7.13 4.72h3.73c1.06-2.73 4.06-4.72 7.14-4.72 3.99 0 7 3.01 7 7 0 5.78-6.28 11.48-15.79 20.11z" :style {:stroke nil}}]}
{:name "Find In Page"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 39.17v-23.17l-12-12h-16c-2.21 0-3.98 1.79-3.98 4l-.02 32c0 2.21 1.77 4 3.98 4h24.02c.89 0 1.71-.3 2.37-.8l-8.87-8.87c-1.57 1.05-3.46 1.67-5.5 1.67-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10c0 2.04-.62 3.93-1.66 5.51l7.66 7.66zm-22-13.17c0 3.31 2.69 6 6 6s6-2.69 6-6-2.69-6-6-6-6 2.69-6 6z" :style {:stroke nil}}]}
{:name "Find Replace"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M22 12c2.76 0 5.26 1.12 7.07 2.93l-5.07 5.07h12v-12l-4.1 4.1c-2.53-2.53-6.03-4.1-9.9-4.1-7.05 0-12.87 5.22-13.84 12h4.04c.93-4.56 4.96-8 9.8-8zm11.28 18.27c1.33-1.81 2.23-3.95 2.56-6.27h-4.04c-.93 4.56-4.96 8-9.8 8-2.76 0-5.26-1.12-7.07-2.93l5.07-5.07h-12v12l4.1-4.1c2.53 2.53 6.03 4.1 9.9 4.1 3.1 0 5.96-1.02 8.28-2.73l9.72 9.71 2.98-2.98-9.7-9.73z" :style {:stroke nil}}]}
{:name "Flip To Back"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M18 14h-4v4h4v-4zm0 8h-4v4h4v-4zm0-16c-2.21 0-4 1.79-4 4h4v-4zm8 24h-4v4h4v-4zm12-24v4h4c0-2.21-1.79-4-4-4zm-12 0h-4v4h4v-4zm-8 28v-4h-4c0 2.21 1.79 4 4 4zm20-8h4v-4h-4v4zm0-8h4v-4h-4v4zm0 16c2.21 0 4-1.79 4-4h-4v4zm-28-20h-4v24c0 2.21 1.79 4 4 4h24v-4h-24v-24zm20-4h4v-4h-4v4zm0 24h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Flip To Front"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M6 26h4v-4h-4v4zm0 8h4v-4h-4v4zm4 8v-4h-4c0 2.21 1.79 4 4 4zm-4-24h4v-4h-4v4zm24 24h4v-4h-4v4zm8-36h-20c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h20c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm0 24h-20v-20h20v20zm-16 12h4v-4h-4v4zm-8 0h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Get App"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 18h-8v-12h-12v12h-8l14 14 14-14zm-28 18v4h28v-4h-28z" :style {:stroke nil}}]}
{:name "Grade"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 34.54l12.36 7.46-3.27-14.06 10.91-9.45-14.38-1.24-5.62-13.25-5.62 13.25-14.38 1.24 10.91 9.45-3.27 14.06z" :style {:stroke nil}}]}
{:name "Group Work"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-11.05 0-20 8.95-20 20 0 11.04 8.95 20 20 20s20-8.96 20-20c0-11.05-8.95-20-20-20zm-8 31c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm3-19c0-2.76 2.24-5 5-5s5 2.24 5 5-2.24 5-5 5-5-2.24-5-5zm13 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" :style {:stroke nil}}]}
{:name "Help"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm2 34h-4v-4h4v4zm4.13-15.49l-1.79 1.84c-1.44 1.44-2.34 2.65-2.34 5.65h-4v-1c0-2.21.9-4.21 2.34-5.66l2.49-2.52c.72-.72 1.17-1.72 1.17-2.82 0-2.21-1.79-4-4-4s-4 1.79-4 4h-4c0-4.42 3.58-8 8-8s8 3.58 8 8c0 1.76-.71 3.35-1.87 4.51z" :style {:stroke nil}}]}
{:name "Highlight Remove"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M29.17 16l-5.17 5.17-5.17-5.17-2.83 2.83 5.17 5.17-5.17 5.17 2.83 2.83 5.17-5.17 5.17 5.17 2.83-2.83-5.17-5.17 5.17-5.17-2.83-2.83zm-5.17-12c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 36c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z" :style {:stroke nil}}]}
{:name "History"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:opacity ".9" :d "M25.99 6c-9.95 0-17.99 8.06-17.99 18h-6l7.79 7.79.14.29 8.07-8.08h-6c0-7.73 6.27-14 14-14s14 6.27 14 14-6.27 14-14 14c-3.87 0-7.36-1.58-9.89-4.11l-2.83 2.83c3.25 3.26 7.74 5.28 12.71 5.28 9.95 0 18.01-8.06 18.01-18s-8.06-18-18.01-18zm-1.99 10v10l8.56 5.08 1.44-2.43-7-4.15v-8.5h-3z" :style {:stroke nil}}]}
{:name "Home"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M20 40v-12h8v12h10v-16h6l-20-18-20 18h6v16z" :style {:stroke nil}}]}
{:name "Https"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 16h-2v-4c0-5.52-4.48-10-10-10s-10 4.48-10 10v4h-2c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm-12 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm6.2-18h-12.4v-4c0-3.42 2.78-6.2 6.2-6.2 3.42 0 6.2 2.78 6.2 6.2v4z" :style {:stroke nil}}]}
{:name "Info"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm2 30h-4v-12h4v12zm0-16h-4v-4h4v4z" :style {:stroke nil}}]}
{:name "Info Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M22 34h4v-12h-4v12zm2-30c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 36c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16zm-2-22h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Input"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42 6.02h-36c-2.21 0-4 1.79-4 4v7.98h4v-8.02h36v28.06h-36v-8.04h-4v8.02c0 2.21 1.79 3.96 4 3.96h36c2.21 0 4-1.76 4-3.96v-28c0-2.21-1.79-4-4-4zm-20 25.98l8-8-8-8v6h-20v4h20v6z" :style {:stroke nil}}]}
{:name "Invert Colors"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M35.31 15.86l-11.31-11.32-11.31 11.32c-6.25 6.25-6.25 16.38 0 22.63 3.12 3.12 7.22 4.69 11.31 4.69s8.19-1.56 11.31-4.69c6.25-6.25 6.25-16.38 0-22.63zm-11.31 23.31c-3.21 0-6.22-1.25-8.48-3.52-2.27-2.26-3.52-5.27-3.52-8.48s1.25-6.22 3.52-8.49l8.48-8.48v28.97z" :style {:stroke nil}}]}
{:name "Label"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M35.27 11.69c-.73-1.02-1.92-1.69-3.27-1.69l-22 .02c-2.21 0-4 1.77-4 3.98v20c0 2.21 1.79 3.98 4 3.98l22 .02c1.35 0 2.54-.67 3.27-1.69l8.73-12.31-8.73-12.31z" :style {:stroke nil}}]}
{:name "Label Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M35.27 11.69c-.73-1.02-1.92-1.69-3.27-1.69l-22 .02c-2.21 0-4 1.77-4 3.98v20c0 2.21 1.79 3.98 4 3.98l22 .02c1.35 0 2.54-.67 3.27-1.69l8.73-12.31-8.73-12.31zm-3.27 22.31h-22v-20h22l7.09 10-7.09 10z" :style {:stroke nil}}]}
{:name "Language"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M23.99 4c-11.05 0-19.99 8.95-19.99 20s8.94 20 19.99 20c11.05 0 20.01-8.95 20.01-20s-8.96-20-20.01-20zm13.85 12h-5.9c-.65-2.5-1.56-4.9-2.76-7.12 3.68 1.26 6.74 3.81 8.66 7.12zm-13.84-7.93c1.67 2.4 2.97 5.07 3.82 7.93h-7.64c.85-2.86 2.15-5.53 3.82-7.93zm-15.48 19.93c-.33-1.28-.52-2.62-.52-4s.19-2.72.52-4h6.75c-.16 1.31-.27 2.64-.27 4 0 1.36.11 2.69.28 4h-6.76zm1.63 4h5.9c.65 2.5 1.56 4.9 2.76 7.13-3.68-1.26-6.74-3.82-8.66-7.13zm5.9-16h-5.9c1.92-3.31 4.98-5.87 8.66-7.13-1.2 2.23-2.11 4.63-2.76 7.13zm7.95 23.93c-1.66-2.4-2.96-5.07-3.82-7.93h7.64c-.86 2.86-2.16 5.53-3.82 7.93zm4.68-11.93h-9.36c-.19-1.31-.32-2.64-.32-4 0-1.36.13-2.69.32-4h9.36c.19 1.31.32 2.64.32 4 0 1.36-.13 2.69-.32 4zm.51 11.12c1.2-2.23 2.11-4.62 2.76-7.12h5.9c-1.93 3.31-4.99 5.86-8.66 7.12zm3.53-11.12c.16-1.31.28-2.64.28-4 0-1.36-.11-2.69-.28-4h6.75c.33 1.28.53 2.62.53 4s-.19 2.72-.53 4h-6.75z" :style {:stroke nil}}]}
{:name "Launch"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 38h-28v-28h14v-4h-14c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-14h-4v14zm-10-32v4h7.17l-19.66 19.66 2.83 2.83 19.66-19.66v7.17h4v-14h-14z" :style {:stroke nil}}]}
{:name "List"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M6 26h4v-4h-4v4zm0 8h4v-4h-4v4zm0-16h4v-4h-4v4zm8 8h28v-4h-28v4zm0 8h28v-4h-28v4zm0-20v4h28v-4h-28z" :style {:stroke nil}}]}
{:name "Lock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 16h-2v-4c0-5.52-4.48-10-10-10s-10 4.48-10 10v4h-2c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm-12 18c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm6.2-18h-12.4v-4c0-3.42 2.78-6.2 6.2-6.2 3.42 0 6.2 2.78 6.2 6.2v4z" :style {:stroke nil}}]}
{:name "Lock Open"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 34c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm12-18h-2v-4c0-5.52-4.48-10-10-10s-10 4.48-10 10h3.8c0-3.42 2.78-6.2 6.2-6.2 3.42 0 6.2 2.78 6.2 6.2v4h-18.2c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm0 24h-24v-20h24v20z" :style {:stroke nil}}]}
{:name "Lock Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 16h-2v-4c0-5.52-4.48-10-10-10s-10 4.48-10 10v4h-2c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm-12-10.2c3.42 0 6.2 2.78 6.2 6.2v4h-12.2v-4h-.2c0-3.42 2.78-6.2 6.2-6.2zm12 34.2h-24v-20h24v20zm-12-6c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z" :style {:stroke nil}}]}
{:name "Loyalty"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42.82 23.16l-17.99-17.99c-.72-.72-1.72-1.17-2.83-1.17h-14c-2.21 0-4 1.79-4 4v14c0 1.11.45 2.11 1.18 2.83l18 18c.72.72 1.72 1.17 2.82 1.17 1.11 0 2.11-.45 2.83-1.17l14-14c.72-.73 1.17-1.73 1.17-2.83 0-1.11-.45-2.11-1.18-2.84zm-31.82-9.16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm23.54 16.54l-8.54 8.54-8.54-8.54c-.9-.91-1.46-2.16-1.46-3.54 0-2.76 2.24-5 5-5 1.38 0 2.64.56 3.54 1.47l1.46 1.46 1.46-1.46c.91-.91 2.16-1.47 3.54-1.47 2.76 0 5 2.24 5 5 0 1.38-.56 2.63-1.46 3.54z" :style {:stroke nil}}]}
{:name "Markunread mailbox"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 12h-20v12h-4v-16h12v-8h-16v12h-4c-2.2 0-4 1.8-4 4v24c0 2.2 1.8 4 4 4h32c2.2 0 4-1.8 4-4v-24c0-2.2-1.8-4-4-4z" :style {:stroke nil}}]}
{:name "Note Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M28 4h-16c-2.21 0-3.98 1.79-3.98 4l-.02 32c0 2.21 1.77 4 3.98 4h24.02c2.21 0 4-1.79 4-4v-24l-12-12zm4 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4zm-6-14v-11l11 11h-11z" :style {:stroke nil}}]}
{:name "Open In Browser"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 8h-28c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h8v-4h-8v-20h28v20h-8v4h8c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm-14 12l-8 8h6v12h4v-12h6l-8-8z" :style {:stroke nil}}]}
{:name "Open In New"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 38h-28v-28h14v-4h-14c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-14h-4v14zm-10-32v4h7.17l-19.66 19.66 2.83 2.83 19.66-19.66v7.17h4v-14h-14z" :style {:stroke nil}}]}
{:name "Open With"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M20 18h8v-6h6l-10-10-10 10h6v6zm-2 2h-6v-6l-10 10 10 10v-6h6v-8zm28 4l-10-10v6h-6v8h6v6l10-10zm-18 6h-8v6h-6l10 10 10-10h-6v-6z" :style {:stroke nil}}]}
{:name "Pageview"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M22 16c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm16-10h-28c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-2.83 32l-7.66-7.66c-1.58 1.04-3.47 1.66-5.51 1.66-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10c0 2.04-.62 3.93-1.66 5.51l7.66 7.66-2.83 2.83z" :style {:stroke nil}}]}
{:name "Payment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 8h-32c-2.21 0-3.98 1.79-3.98 4l-.02 24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm0 28h-32v-12h32v12zm0-20h-32v-4h32v4z" :style {:stroke nil}}]}
{:name "Perm Camera Mic"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 10h-6.34l-3.66-4h-12l-3.66 4h-6.34c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h14v-4.18c-5.67-.96-10-5.89-10-11.82h4c0 4.41 3.59 8 8 8s8-3.59 8-8h4c0 5.93-4.33 10.86-10 11.82v4.18h14c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm-12 16c0 2.21-1.79 4-4 4s-4-1.79-4-4v-8c0-2.21 1.79-4 4-4s4 1.79 4 4v8z" :style {:stroke nil}}]}
{:name "Perm Contact Cal"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-2v-4h-4v4h-16v-4h-4v4h-2c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-14 6c3.31 0 6 2.69 6 6 0 3.32-2.69 6-6 6s-6-2.68-6-6c0-3.31 2.69-6 6-6zm12 24h-24v-2c0-4 8-6.2 12-6.2s12 2.2 12 6.2v2z" :style {:stroke nil}}]}
{:name "Perm Data Setting"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M37.98 23c.68 0 1.36.06 2.02.15v-23.15l-40 40h23.13c-.09-.66-.15-1.32-.15-2 0-8.28 6.72-15 15-15zm7.43 15.98c.04-.32.07-.64.07-.98 0-.33-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.3-.61-.22l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.37-2.65c-.04-.24-.25-.42-.5-.42h-4c-.25 0-.46.18-.49.42l-.37 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.23-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.13.22.39.3.61.22l2.49-1c.52.4 1.08.73 1.69.98l.37 2.65c.04.24.25.42.49.42h4c.25 0 .45-.18.49-.42l.37-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.23.09.49 0 .61-.22l2-3.46c.13-.22.07-.49-.12-.64l-2.1-1.65zm-7.43 2.02c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" :style {:stroke nil}}]}
{:name "Perm Device Info"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M26 14h-4v4h4v-4zm0 8h-4v12h4v-12zm8-19.98l-20-.02c-2.21 0-4 1.79-4 4v36c0 2.21 1.79 4 4 4h20c2.21 0 4-1.79 4-4v-36c0-2.21-1.79-3.98-4-3.98zm0 35.98h-20v-28h20v28z" :style {:stroke nil}}]}
{:name "Perm Identity"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 11.8c2.32 0 4.2 1.88 4.2 4.2s-1.88 4.2-4.2 4.2-4.2-1.88-4.2-4.2 1.88-4.2 4.2-4.2m0 18c5.95 0 12.2 2.91 12.2 4.2v2.2h-24.4v-2.2c0-1.29 6.25-4.2 12.2-4.2m0-21.8c-4.42 0-8 3.58-8 8 0 4.41 3.58 8 8 8s8-3.59 8-8c0-4.42-3.58-8-8-8zm0 18c-5.33 0-16 2.67-16 8v6h32v-6c0-5.33-10.67-8-16-8z" :style {:stroke nil}}]}
{:name "Perm Media"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M4 12h-4v10h.02l-.02 18c0 2.21 1.79 4 4 4h36v-4h-36v-28zm40-4h-16l-4-4h-12c-2.21 0-3.98 1.79-3.98 4l-.02 24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4zm-30 22l9-12 7 9.01 5-6.01 7 9h-28z" :style {:stroke nil}}]}
{:name "Perm Phone Msg"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 31c-2.49 0-4.9-.4-7.14-1.14-.69-.22-1.48-.06-2.03.49l-4.4 4.41c-5.67-2.88-10.29-7.51-13.18-13.17l4.4-4.42c.55-.55.71-1.34.49-2.03-.74-2.24-1.14-4.65-1.14-7.14 0-1.11-.89-2-2-2h-7c-1.1 0-2 .89-2 2 0 18.78 15.22 34 34 34 1.11 0 2-.89 2-2v-7c0-1.11-.89-2-2-2zm-16-25v20l6-6h12v-14h-18z" :style {:stroke nil}}]}
{:name "Perm Scan Wifi"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 6c-10.09 0-17.71 3.7-24 8.47l24 29.53 24-29.5c-6.29-4.76-13.91-8.5-24-8.5zm2 26h-4v-12h4v12zm-4-16v-4h4v4h-4z" :style {:stroke nil}}]}
{:name "Picture In Picture"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 14h-16v12h16v-12zm4-8h-36c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 3.96 4 3.96h36c2.21 0 4-1.76 4-3.96v-28c0-2.21-1.79-4-4-4zm0 32.03h-36v-28.06h36v28.06z" :style {:stroke nil}}]}
{:name "Polymer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 8h-8l-15.79 25.26-5.21-9.26 9-16h-8l-9 16 9 16h8l15.79-25.26 5.21 9.26-9 16h8l9-16z" :style {:stroke nil}}]}
{:name "Print"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 16h-28c-3.31 0-6 2.69-6 6v12h8v8h24v-8h8v-12c0-3.31-2.69-6-6-6zm-6 22h-16v-10h16v10zm6-14c-1.11 0-2-.89-2-2s.89-2 2-2c1.11 0 2 .89 2 2s-.89 2-2 2zm-2-18h-24v8h24v-8z" :style {:stroke nil}}]}
{:name "Query Builder"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M23.99 4c-11.05 0-19.99 8.95-19.99 20s8.94 20 19.99 20c11.05 0 20.01-8.95 20.01-20s-8.96-20-20.01-20zm.01 36c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z" :style {:stroke nil}}]}
{:name "Question Answer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42 12h-4v18h-26v4c0 1.1.9 2 2 2h22l8 8v-30c0-1.1-.9-2-2-2zm-8 12v-18c0-1.1-.9-2-2-2h-26c-1.1 0-2 .9-2 2v28l8-8h20c1.1 0 2-.9 2-2z" :style {:stroke nil}}]}
{:name "Receipt"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 34h-24v-4h24v4zm0-8h-24v-4h24v4zm0-8h-24v-4h24v4zm-30 26l3-3 3 3 3-3 3 3 3-3 3 3 3-3 3 3 3-3 3 3 3-3 3 3v-40l-3 3-3-3-3 3-3-3-3 3-3-3-3 3-3-3-3 3-3-3-3 3-3-3v40z" :style {:stroke nil}}]}
{:name "Redeem"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 12h-4.37c.22-.63.37-1.29.37-2 0-3.31-2.69-6-6-6-2.09 0-3.93 1.07-5 2.69l-1 1.36-1-1.36c-1.07-1.62-2.91-2.69-5-2.69-3.31 0-6 2.69-6 6 0 .71.14 1.37.37 2h-4.37c-2.21 0-3.98 1.79-3.98 4l-.02 22c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-22c0-2.21-1.79-4-4-4zm-10-4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-12 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm22 30h-32v-4h32v4zm0-10h-32v-12h10.16l-4.16 5.67 3.25 2.33 4.75-6.47 2-2.72 2 2.72 4.75 6.47 3.25-2.33-4.16-5.67h10.16v12z" :style {:stroke nil}}]}
{:name "Reorder"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M3,15h18v-2H3V15z M3,19h18v-2H3V19z M3,11h18V9H3V11z M3,5v2h18V5H3z" :style {:stroke nil}}]}
{:name "Report Problem"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M2 42h44l-22-38-22 38zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z" :style {:stroke nil}}]}
{:name "Restore"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M25.99 6c-9.95 0-17.99 8.06-17.99 18h-6l7.79 7.79.14.29 8.07-8.08h-6c0-7.73 6.27-14 14-14s14 6.27 14 14-6.27 14-14 14c-3.87 0-7.36-1.58-9.89-4.11l-2.83 2.83c3.25 3.26 7.74 5.28 12.71 5.28 9.95 0 18.01-8.06 18.01-18s-8.06-18-18.01-18zm-1.99 10v10l8.56 5.08 1.44-2.43-7-4.15v-8.5h-3z" :style {:stroke nil}}]}
{:name "Room"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" :style {:stroke nil}}]}
{:name "Schedule"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:g
[:path {:fill-opacity ".9" :d "M23.99 4c-11.05 0-19.99 8.95-19.99 20s8.94 20 19.99 20c11.05 0 20.01-8.95 20.01-20s-8.96-20-20.01-20zm.01 36c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z" :style {:stroke nil}}]
@ -499,311 +596,373 @@
{:name "Search"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M31 28h-1.59l-.55-.55c1.96-2.27 3.14-5.22 3.14-8.45 0-7.18-5.82-13-13-13s-13 5.82-13 13 5.82 13 13 13c3.23 0 6.18-1.18 8.45-3.13l.55.55v1.58l10 9.98 2.98-2.98-9.98-10zm-12 0c-4.97 0-9-4.03-9-9s4.03-9 9-9 9 4.03 9 9-4.03 9-9 9z" :style {:stroke nil}}]}
{:name "Settings"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38.86 25.95c.08-.64.14-1.29.14-1.95s-.06-1.31-.14-1.95l4.23-3.31c.38-.3.49-.84.24-1.28l-4-6.93c-.25-.43-.77-.61-1.22-.43l-4.98 2.01c-1.03-.79-2.16-1.46-3.38-1.97l-.75-5.3c-.09-.47-.5-.84-1-.84h-8c-.5 0-.91.37-.99.84l-.75 5.3c-1.22.51-2.35 1.17-3.38 1.97l-4.98-2.01c-.45-.17-.97 0-1.22.43l-4 6.93c-.25.43-.14.97.24 1.28l4.22 3.31c-.08.64-.14 1.29-.14 1.95s.06 1.31.14 1.95l-4.22 3.31c-.38.3-.49.84-.24 1.28l4 6.93c.25.43.77.61 1.22.43l4.98-2.01c1.03.79 2.16 1.46 3.38 1.97l.75 5.3c.08.47.49.84.99.84h8c.5 0 .91-.37.99-.84l.75-5.3c1.22-.51 2.35-1.17 3.38-1.97l4.98 2.01c.45.17.97 0 1.22-.43l4-6.93c.25-.43.14-.97-.24-1.28l-4.22-3.31zm-14.86 5.05c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" :style {:stroke nil}}]}
{:name "Settings Applications"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 20c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm14-14h-28c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm-3.5 18c0 .46-.04.92-.1 1.37l2.96 2.32c.26.21.34.59.16.89l-2.8 4.85c-.17.3-.54.42-.86.3l-3.49-1.41c-.72.56-1.51 1.02-2.37 1.38l-.52 3.71c-.04.33-.33.59-.68.59h-5.6c-.35 0-.64-.26-.69-.59l-.52-3.71c-.85-.35-1.64-.82-2.37-1.38l-3.48 1.4c-.32.12-.68 0-.86-.3l-2.8-4.85c-.18-.3-.1-.68.16-.89l2.96-2.31c-.06-.45-.1-.9-.1-1.37 0-.46.04-.92.1-1.37l-2.96-2.31c-.26-.21-.34-.59-.16-.89l2.8-4.85c.18-.3.54-.42.86-.3l3.48 1.4c.72-.55 1.51-1.02 2.37-1.38l.52-3.71c.05-.33.34-.59.69-.59h5.6c.35 0 .64.26.69.59l.52 3.71c.85.35 1.64.82 2.37 1.38l3.48-1.4c.32-.12.68 0 .86.3l2.8 4.85c.18.3.1.68-.16.89l-2.96 2.32c.06.44.1.9.1 1.36z" :style {:stroke nil}}]}
{:name "Settings Backup Restore"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M28 24c0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4 4-1.79 4-4zm-4-18c-9.94 0-18 8.06-18 18h-6l8 8 8-8h-6c0-7.73 6.27-14 14-14s14 6.27 14 14-6.27 14-14 14c-3.03 0-5.82-.97-8.12-2.61l-2.83 2.87c3.04 2.34 6.83 3.74 10.95 3.74 9.94 0 18-8.06 18-18s-8.06-18-18-18z" :style {:stroke nil}}]}
{:name "Settings Bluetooth"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M22 48h4v-4h-4v4zm-8 0h4v-4h-4v4zm16 0h4v-4h-4v4zm5.41-36.59l-11.41-11.41h-2v15.17l-9.17-9.17-2.83 2.83 11.17 11.17-11.17 11.17 2.83 2.83 9.17-9.17v15.17h2l11.41-11.41-8.58-8.59 8.58-8.59zm-9.41-3.75l3.76 3.76-3.76 3.75v-7.51zm3.76 20.93l-3.76 3.75v-7.51l3.76 3.76z" :style {:stroke nil}}]}
{:name "Settings Cell"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M14 48h4v-4h-4v4zm8 0h4v-4h-4v4zm8 0h4v-4h-4v4zm2-47.98l-16-.02c-2.21 0-4 1.79-4 4v32c0 2.21 1.79 4 4 4h16c2.21 0 4-1.79 4-4v-32c0-2.21-1.79-3.98-4-3.98zm0 31.98h-16v-24h16v24z" :style {:stroke nil}}]}
{:name "Settings Display"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42 6h-36c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32.03h-36v-28.06h36v28.06zm-26-6.03h5l3 3 3-3h5v-5l3-3-3-3v-5h-5l-3-3-3 3h-5v5l-3 3 3 3v5zm8-14c3.31 0 6 2.69 6 6s-2.69 6-6 6v-12z" :style {:stroke nil}}]}
{:name "Settings Ethernet"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M15.54 13.52l-3.08-2.55-10.82 13.03 10.82 13.04 3.08-2.55-8.7-10.49 8.7-10.48zm-1.54 12.48h4v-4h-4v4zm20-4h-4v4h4v-4zm-12 4h4v-4h-4v4zm13.54-15.04l-3.08 2.55 8.7 10.49-8.7 10.48 3.08 2.55 10.82-13.03-10.82-13.04z" :style {:stroke nil}}]}
{:name "Settings Input Antenna"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 10c-7.73 0-14 6.27-14 14h4c0-5.52 4.48-10 10-10s10 4.48 10 10h4c0-7.73-6.27-14-14-14zm2 18.58c1.76-.77 3-2.53 3-4.58 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.05 1.24 3.81 3 4.58v6.59l-6.83 6.83 2.83 2.83 6-6 6 6 2.83-2.83-6.83-6.83v-6.59zm-2-26.58c-12.15 0-22 9.85-22 22h4c0-9.94 8.06-18 18-18s18 8.06 18 18h4c0-12.15-9.85-22-22-22z" :style {:stroke nil}}]}
{:name "Settings Input Component"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M10 4c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4v-8zm8 28c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4zm-16 0c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4zm40-20v-8c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4zm-16-8c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4v-8zm8 28c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4z" :style {:stroke nil}}]}
{:name "Settings Input Composite"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M10 4c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4v-8zm8 28c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4zm-16 0c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4zm40-20v-8c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4zm-16-8c0-1.1-.89-2-2-2s-2 .9-2 2v8h-4v12h12v-12h-4v-8zm8 28c0 2.61 1.68 4.81 4 5.63v8.37h4v-8.37c2.32-.83 4-3.02 4-5.63v-4h-12v4z" :style {:stroke nil}}]}
{:name "Settings Input HDMI"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 14v-6c0-2.21-1.79-4-4-4h-16c-2.21 0-4 1.79-4 4v6h-2v12l6 12v6h16v-6l6-12v-12h-2zm-20-6h16v6h-4v-4h-2v4h-4v-4h-2v4h-4v-6z" :style {:stroke nil}}]}
{:name "Settings Input svideo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M16 23c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm14-10c0-1.66-1.34-3-3-3h-6c-1.66 0-3 1.34-3 3s1.34 3 3 3h6c1.66 0 3-1.34 3-3zm-13 17c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm7-28c-12.13 0-22 9.87-22 22s9.87 22 22 22 22-9.87 22-22-9.87-22-22-22zm0 40c-9.93 0-18-8.08-18-18s8.07-18 18-18 18 8.08 18 18-8.07 18-18 18zm11-22c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-4 10c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" :style {:stroke nil}}]}
{:name "Settings Overscan"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24.01 11l-4.01 5h8l-3.99-5zm11.99 9v8l5-3.99-5-4.01zm-24 0l-5 4.01 5 3.99v-8zm16 12h-8l4.01 5 3.99-5zm14-26h-36c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32.03h-36v-28.06h36v28.06z" :style {:stroke nil}}]}
{:name "Settings Phone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M26 18h-4v4h4v-4zm8 0h-4v4h4v-4zm6 13c-2.49 0-4.89-.4-7.14-1.14-.69-.22-1.48-.06-2.03.49l-4.4 4.41c-5.67-2.88-10.29-7.51-13.18-13.17l4.4-4.41c.55-.55.71-1.34.49-2.03-.74-2.25-1.14-4.66-1.14-7.15 0-1.11-.89-2-2-2h-7c-1.11 0-2 .89-2 2 0 18.78 15.22 34 34 34 1.11 0 2-.89 2-2v-7c0-1.11-.89-2-2-2zm-2-13v4h4v-4h-4z" :style {:stroke nil}}]}
{:name "Settings Power"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M14 48h4v-4h-4v4zm8 0h4v-4h-4v4zm4-44h-4v20h4v-20zm7.13 4.87l-2.89 2.89c3.45 2.11 5.76 5.9 5.76 10.24 0 6.63-5.37 12-12 12s-12-5.37-12-12c0-4.34 2.31-8.13 5.76-10.24l-2.89-2.89c-4.15 2.89-6.87 7.69-6.87 13.13 0 8.84 7.16 16 16 16s16-7.16 16-16c0-5.44-2.72-10.24-6.87-13.13zm-3.13 39.13h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Settings Remote"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M30 18h-12c-1.11 0-2 .9-2 2v24c0 1.1.89 2 2 2h12c1.11 0 2-.9 2-2v-24c0-1.1-.89-2-2-2zm-6 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm-9.9-17.9l2.83 2.83c1.81-1.81 4.31-2.93 7.07-2.93s5.26 1.12 7.07 2.93l2.83-2.83c-2.53-2.53-6.03-4.1-9.9-4.1s-7.37 1.57-9.9 4.1zm9.9-12.1c-6.07 0-11.57 2.46-15.56 6.44l2.83 2.83c3.26-3.26 7.76-5.27 12.73-5.27s9.47 2.01 12.73 5.27l2.83-2.83c-3.99-3.98-9.49-6.44-15.56-6.44z" :style {:stroke nil}}]}
{:name "Settings Voice"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M14 48h4v-4h-4v4zm10-22c3.31 0 5.98-2.69 5.98-6l.02-12c0-3.32-2.68-6-6-6-3.31 0-6 2.68-6 6v12c0 3.31 2.69 6 6 6zm-2 22h4v-4h-4v4zm8 0h4v-4h-4v4zm8-28h-3.4c0 6-5.07 10.2-10.6 10.2-5.52 0-10.6-4.2-10.6-10.2h-3.4c0 6.83 5.44 12.47 12 13.44v6.56h4v-6.56c6.56-.97 12-6.61 12-13.44z" :style {:stroke nil}}]}
{:name "Shop Two"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 10v-4c0-2.21-1.79-4-4-4h-8c-2.21 0-4 1.79-4 4v4h-10v22c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-22h-10zm-12-4h8v4h-8v-4zm0 24v-14l11 6-11 8zm-18-12h-4v22c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4h-32v-22z" :style {:stroke nil}}]}
{:name "Shopping Basket"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34.42 18l-8.76-13.11c-.38-.58-1.02-.85-1.66-.85-.64 0-1.28.28-1.66.85l-8.76 13.11h-9.58c-1.1 0-2 .9-2 2 0 .19.03.37.07.54l5.07 18.54c.47 1.68 2.02 2.92 3.86 2.92h26c1.84 0 3.39-1.24 3.85-2.93l5.07-18.54c.05-.16.08-.34.08-.53 0-1.1-.9-2-2-2h-9.58zm-16.42 0l6-8.8 6 8.8h-12zm6 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" :style {:stroke nil}}]}
{:name "Shopping Cart"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M14 36c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4zm-12-32v4h4l7.19 15.17-2.7 4.9c-.31.58-.49 1.23-.49 1.93 0 2.21 1.79 4 4 4h24v-4h-23.15c-.28 0-.5-.22-.5-.5 0-.09.02-.17.06-.24l1.79-3.26h14.9c1.5 0 2.81-.83 3.5-2.06l7.15-12.98c.16-.28.25-.61.25-.96 0-1.11-.9-2-2-2h-29.57l-1.9-4h-6.53zm32 32c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Speaker Notes"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 4h-32c-2.21 0-3.98 1.79-3.98 4l-.02 36 8-8h28c2.21 0 4-1.79 4-4v-24c0-2.21-1.79-4-4-4zm-24 24h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4v-4h4v4zm14 12h-10v-4h10v4zm6-6h-16v-4h16v4zm0-6h-16v-4h16v4z" :style {:stroke nil}}]}
{:name "Spellcheck"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24.89 32h4.18l-10.21-26h-3.71l-10.22 26h4.18l2.25-6h11.29l2.24 6zm-12.03-10l4.14-11.05 4.14 11.05h-8.28zm30.31 1.17l-16.17 16.17-7.34-7.34-2.83 2.83 10.17 10.17 19-19-2.83-2.83z" :style {:stroke nil}}]}
{:name "Star Rate"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 28.6l7.42 5.4-2.84-8.72 7.42-5.28h-9.1l-2.9-9-2.9 9h-9.1l7.42 5.28-2.83 8.72z" :style {:stroke nil}}]}
{:name "Stars"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M23.99 4c-11.05 0-19.99 8.95-19.99 20s8.94 20 19.99 20c11.05 0 20.01-8.95 20.01-20s-8.96-20-20.01-20zm8.47 32l-8.46-5.1-8.46 5.1 2.24-9.62-7.46-6.47 9.84-.84 3.84-9.07 3.84 9.07 9.84.84-7.46 6.47 2.24 9.62z" :style {:stroke nil}}]}
{:name "Store"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 8h-32v4h32v-4zm2 20v-4l-2-10h-32l-2 10v4h2v12h20v-12h8v12h4v-12h2zm-18 8h-12v-8h12v8z" :style {:stroke nil}}]}
{:name "Subject"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M28 34h-20v4h20v-4zm12-16h-32v4h32v-4zm-32 12h32v-4h-32v4zm0-20v4h32v-4h-32z" :style {:stroke nil}}]}
{:name "Supervisor Account"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 2.5c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25-2.25-1.01-2.25-2.25 1.01-2.25 2.25-2.25zm5 10.56v2.5c-.45.41-.96.77-1.5 1.05v-.68c0-.34-.17-.65-.46-.92-.65-.62-1.89-1.02-3.04-1.02-.96 0-1.96.28-2.65.73l-.17.12-.21.17c.78.47 1.63.72 2.54.82l1.33.15c.37.04.66.36.66.75 0 .29-.16.53-.4.66-.28.15-.64.09-.95.09-.35 0-.69-.01-1.03-.05-.5-.06-.99-.17-1.46-.33-.49-.16-.97-.38-1.42-.64-.22-.13-.44-.27-.65-.43l-.31-.24c-.04-.02-.28-.18-.28-.23v-4.28c0-1.58 2.63-2.78 5-2.78s5 1.2 5 2.78v1.78z" :style {:stroke nil}}]}
{:name "Swap Horiz"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M13.98 22l-7.98 8 7.98 8v-6h14.02v-4h-14.02v-6zm28.02-4l-7.98-8v6h-14.02v4h14.02v6l7.98-8z" :style {:stroke nil}}]}
{:name "Swap Vert Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 4c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm-11 14l7-7 7 7h-5v8h-4v-8h-5zm22 12l-7 7-7-7h5v-8h4v8h5z" :style {:stroke nil}}]}
{:name "System Update Tv"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 32.5l8-8h-6v-18h-4v18h-6l8 8zm18-26h-12v3.97h12v28.06h-36v-28.06h12v-3.97h-12c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Tab"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M42 6h-36c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h36c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-36v-28h20v8h16v20z" :style {:stroke nil}}]}
{:name "Tab Unselected"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M2 18h4v-4h-4v4zm0 8h4v-4h-4v4zm0-16h4v-4c-2.21 0-4 1.79-4 4zm16 32h4v-4h-4v4zm-16-8h4v-4h-4v4zm4 8v-4h-4c0 2.21 1.79 4 4 4zm36-36h-16v12h20v-8c0-2.21-1.79-4-4-4zm0 28h4v-4h-4v4zm-24-24h4v-4h-4v4zm-8 32h4v-4h-4v4zm0-32h4v-4h-4v4zm32 32c2.21 0 4-1.79 4-4h-4v4zm0-16h4v-4h-4v4zm-16 16h4v-4h-4v4zm8 0h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Theaters"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M36 6v4h-4v-4h-16v4h-4v-4h-4v36h4v-4h4v4h16v-4h4v4h4v-36h-4zm-20 28h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm20 16h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4z" :style {:stroke nil}}]}
{:name "Thumb Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M30 6h-18c-1.66 0-3.08 1.01-3.68 2.44l-6.03 14.1c-.18.46-.29.95-.29 1.46v3.83l.02.02-.02.15c0 2.21 1.79 4 4 4h12.63l-1.91 9.14c-.04.2-.07.41-.07.63 0 .83.34 1.58.88 2.12l2.13 2.11 13.17-13.17c.72-.73 1.17-1.73 1.17-2.83v-20c0-2.21-1.79-4-4-4zm8 0v24h8v-24h-8z" :style {:stroke nil}}]}
{:name "Thumbs Up Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 12c0-1.1-.9-2-2-2h-10.37l1.33-6.35c.03-.15.05-.31.05-.47 0-.62-.25-1.18-.66-1.59l-1.59-1.59-9.88 9.88c-.54.54-.88 1.29-.88 2.12v13c0 1.66 1.34 3 3 3h13.5c1.24 0 2.31-.75 2.76-1.83l4.53-10.58c.13-.34.21-.7.21-1.09v-2.5zm21 8h-13.5c-1.24 0-2.31.75-2.76 1.83l-4.53 10.58c-.13.34-.21.7-.21 1.09v2.5c0 1.1.9 2 2 2h10.37l-1.33 6.35c-.03.15-.05.31-.05.47 0 .62.25 1.18.66 1.59l1.59 1.59 9.88-9.88c.54-.54.88-1.29.88-2.12v-13c0-1.66-1.34-3-3-3z" :style {:stroke nil}}]}
{:name "Toc"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M6 18h28v-4h-28v4zm0 8h28v-4h-28v4zm0 8h28v-4h-28v4zm32 0h4v-4h-4v4zm0-20v4h4v-4h-4zm0 12h4v-4h-4v4z" :style {:stroke nil}}]}
{:name "Today"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M38 6h-2v-4h-4v4h-16v-4h-4v4h-2c-2.21 0-3.98 1.79-3.98 4l-.02 28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-28v-22h28v22zm-24-18h10v10h-10z" :style {:stroke nil}}]}
{:name "Track Changes"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:fill "#231F20" :d "M38.14 9.86l-2.83 2.83c2.9 2.89 4.69 6.89 4.69 11.31 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-8.16 6.11-14.88 14-15.86v4.04c-5.67.95-10 5.88-10 11.82 0 6.63 5.37 12 12 12s12-5.37 12-12c0-3.31-1.34-6.31-3.51-8.49l-2.83 2.83c1.44 1.45 2.34 3.45 2.34 5.66 0 4.42-3.58 8-8 8s-8-3.58-8-8c0-3.72 2.56-6.83 6-7.72v4.27c-1.19.69-2 1.97-2 3.45 0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.48-.81-2.75-2-3.45v-16.55h-2c-11.05 0-20 8.95-20 20 0 11.04 8.95 20 20 20 11.04 0 20-8.96 20-20 0-5.52-2.24-10.52-5.86-14.14z" :style {:stroke nil}}]}
{:name "Translate"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M25.74 30.15l-5.08-5.02.06-.06c3.48-3.88 5.96-8.34 7.42-13.06h5.86v-4.01h-14v-4h-4v4h-14v3.98h22.34c-1.35 3.86-3.46 7.52-6.34 10.72-1.86-2.07-3.4-4.32-4.62-6.7h-4c1.46 3.26 3.46 6.34 5.96 9.12l-10.17 10.05 2.83 2.83 10-10 6.22 6.22 1.52-4.07zm11.26-10.15h-4l-9 24h4l2.25-6h9.5l2.25 6h4l-9-24zm-5.25 14l3.25-8.67 3.25 8.67h-6.5z" :style {:stroke nil}}]}
{:name "Trending Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M32 36l4.59-4.59-9.76-9.75-8 8-14.83-14.83 2.83-2.83 12 12 8-8 12.58 12.59 4.59-4.59v12z" :style {:stroke nil}}]}
{:name "Trending Neutral"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M44 24l-8-8v6h-30v4h30v6z" :style {:stroke nil}}]}
{:name "Trending Up"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M32 12l4.59 4.59-9.76 9.75-8-8-14.83 14.83 2.83 2.83 12-12 8 8 12.58-12.59 4.59 4.59v-12z" :style {:stroke nil}}]}
{:name "Turned In"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34 6h-20c-2.21 0-3.98 1.79-3.98 4l-.02 32 14-6 14 6v-32c0-2.21-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Turned In Not"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M34 6h-20c-2.21 0-3.98 1.79-3.98 4l-.02 32 14-6 14 6v-32c0-2.21-1.79-4-4-4zm0 30l-10-4.35-10 4.35v-26h20v26z" :style {:stroke nil}}]}
{:name "Verified User"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 2l-18 8v12c0 11.11 7.67 21.47 18 24 10.33-2.53 18-12.89 18-24v-12l-18-8zm-4 32l-8-8 2.83-2.83 5.17 5.17 13.17-13.17 2.83 2.83-16 16z" :style {:stroke nil}}]}
{:name "View Agenda"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 26h-34c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h34c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zm0-20h-34c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h34c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2z" :style {:stroke nil}}]}
{:name "View Array"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 36h6v-26h-6v26zm28-26v26h6v-26h-6zm-20 26h18v-26h-18v26z" :style {:stroke nil}}]}
{:name "View Column"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M20 36h10v-26h-10v26zm-12 0h10v-26h-10v26zm24-26v26h10v-26h-10z" :style {:stroke nil}}]}
{:name "View Day"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M4 42h38v-6h-38v6zm36-26h-34c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h34c1.1 0 2-.9 2-2v-12c0-1.1-.9-2-2-2zm-36-10v6h38v-6h-38z" :style {:stroke nil}}]}
{:name "View Headline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 30h34v-4h-34v4zm0 8h34v-4h-34v4zm0-16h34v-4h-34v4zm0-12v4h34v-4h-34z" :style {:stroke nil}}]}
{:name "View List"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 28h8v-8h-8v8zm0 10h8v-8h-8v8zm0-20h8v-8h-8v8zm10 10h24v-8h-24v8zm0 10h24v-8h-24v8zm0-28v8h24v-8h-24z" :style {:stroke nil}}]}
{:name "View Module"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 22h10v-12h-10v12zm0 14h10v-12h-10v12zm12 0h10v-12h-10v12zm12 0h10v-12h-10v12zm-12-14h10v-12h-10v12zm12-12v12h10v-12h-10z" :style {:stroke nil}}]}
{:name "View Quilt"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M20 36h10v-12h-10v12zm-12 0h10v-26h-10v26zm24 0h10v-12h-10v12zm-12-26v12h22v-12h-22z" :style {:stroke nil}}]}
{:name "View Stream"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M8 36h34v-12h-34v12zm0-26v12h34v-12h-34z" :style {:stroke nil}}]}
{:name "View Week"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M12 10h-6c-1.1 0-2 .9-2 2v24c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-24c0-1.1-.9-2-2-2zm28 0h-6c-1.1 0-2 .9-2 2v24c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-24c0-1.1-.9-2-2-2zm-14 0h-6c-1.1 0-2 .9-2 2v24c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-24c0-1.1-.9-2-2-2z" :style {:stroke nil}}]}
{:name "Visibility"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 9c-10 0-18.54 6.22-22 15 3.46 8.78 12 15 22 15 10.01 0 18.54-6.22 22-15-3.46-8.78-11.99-15-22-15zm0 25c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10zm0-16c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" :style {:stroke nil}}]}
{:name "Visibility Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M24 14c5.52 0 10 4.48 10 10 0 1.29-.26 2.52-.71 3.65l5.85 5.85c3.02-2.52 5.4-5.78 6.87-9.5-3.47-8.78-12-15-22.01-15-2.8 0-5.48.5-7.97 1.4l4.32 4.31c1.13-.44 2.36-.71 3.65-.71zm-20-5.45l4.56 4.56.91.91c-3.3 2.58-5.91 6.01-7.47 9.98 3.46 8.78 12 15 22 15 3.1 0 6.06-.6 8.77-1.69l.85.85 5.83 5.84 2.55-2.54-35.45-35.46-2.55 2.55zm11.06 11.05l3.09 3.09c-.09.43-.15.86-.15 1.31 0 3.31 2.69 6 6 6 .45 0 .88-.06 1.3-.15l3.09 3.09c-1.33.66-2.81 1.06-4.39 1.06-5.52 0-10-4.48-10-10 0-1.58.4-3.06 1.06-4.4zm8.61-1.57l6.3 6.3.03-.33c0-3.31-2.69-6-6-6l-.33.03z" :style {:stroke nil}}]}
{:name "Wallet Giftcard"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 12h-4.37c.22-.63.37-1.3.37-2 0-3.31-2.69-6-6-6-2.09 0-3.93 1.07-5 2.69l-1 1.36-1-1.36c-1.07-1.62-2.91-2.69-5-2.69-3.31 0-6 2.69-6 6 0 .7.14 1.37.37 2h-4.37c-2.21 0-3.98 1.79-3.98 4l-.02 22c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-22c0-2.21-1.79-4-4-4zm-10-4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-12 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm22 30h-32v-4h32v4zm0-10h-32v-12h10.16l-4.16 5.67 3.25 2.33 4.75-6.47 2-2.72 2 2.72 4.75 6.47 3.25-2.33-4.16-5.67h10.16v12z" :style {:stroke nil}}]}
{:name "Wallet Membership"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 4h-32c-2.21 0-4 1.79-4 4v22c0 2.21 1.79 4 4 4h8v10l8-4 8 4v-10h8c2.21 0 4-1.79 4-4v-22c0-2.21-1.79-4-4-4zm0 26h-32v-4h32v4zm0-10h-32v-12h32v12z" :style {:stroke nil}}]}
{:name "Wallet Travel"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 12h-6v-4c0-2.21-1.79-4-4-4h-12c-2.21 0-4 1.79-4 4v4h-6c-2.21 0-4 1.79-4 4v22c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-22c0-2.21-1.79-4-4-4zm-22-4h12v4h-12v-4zm22 30h-32v-4h32v4zm0-10h-32v-12h6v4h4v-4h12v4h4v-4h6v12z" :style {:stroke nil}}]}
{:name "Work"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728400"
:view-box [0 0 48 48]
:data [:path {:d "M40 12h-8v-4c0-2.21-1.79-4-4-4h-8c-2.21 0-4 1.79-4 4v4h-8c-2.21 0-3.98 1.79-3.98 4l-.02 22c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-22c0-2.21-1.79-4-4-4zm-12 0h-8v-4h8v4z" :style {:stroke nil}}]}
])

View file

@ -8,6 +8,7 @@
[{:name "Error"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728401"
:view-box [0 0 48 48]
:data [:path {:xmlns "http://www.w3.org/2000/svg"
:d "M24 4c-11.04 0-20 8.95-20 20s8.96 20 20 20 20-8.95 20-20-8.96-20-20-20zm2 30h-4v-4h4v4zm0-8h-4v-12h4v12z"
@ -15,6 +16,7 @@
{:name "Warning"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728401"
:view-box [0 0 48 48]
:data [:path {:xmlns "http://www.w3.org/2000/svg"
:d "M2 42h44l-22-38-22 38zm24-6h-4v-4h4v4zm0-8h-4v-8h4v8z"

View file

@ -8,6 +8,7 @@
[{:name "Album"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "AV Timer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Closed Caption"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "Equalizer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -43,6 +47,7 @@
{:name "Explicit"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -52,6 +57,7 @@
{:name "Fast Forward"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -60,6 +66,7 @@
{:name "Fast Rewind"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -68,6 +75,7 @@
{:name "Games"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -77,6 +85,7 @@
{:name "Hearing"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -86,6 +95,7 @@
{:name "High Quality"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -95,6 +105,7 @@
{:name "Loop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -104,6 +115,7 @@
{:name "Mic"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -113,6 +125,7 @@
{:name "Mic None"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -122,6 +135,7 @@
{:name "Mic Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -131,6 +145,7 @@
{:name "Movie"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -140,6 +155,7 @@
{:name "My Library Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -149,6 +165,7 @@
{:name "My Library Books"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -158,6 +175,7 @@
{:name "My Library Music"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -167,6 +185,7 @@
{:name "New Releases"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -176,6 +195,7 @@
{:name "Not Interested"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -185,6 +205,7 @@
{:name "Pause"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -193,6 +214,7 @@
{:name "Pause Circle Fill"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -202,6 +224,7 @@
{:name "Pause Circle Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -211,12 +234,14 @@
{:name "Play"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil} :d "M16 10v28l22-14z"}]}
{:name "Play Circle Fill"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -226,6 +251,7 @@
{:name "Play Circle Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -235,6 +261,7 @@
{:name "Play Shopping Bag"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -244,6 +271,7 @@
{:name "Playlist Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -253,6 +281,7 @@
{:name "Queue"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -262,6 +291,7 @@
{:name "Queue Music"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -271,6 +301,7 @@
{:name "Radio"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -280,6 +311,7 @@
{:name "Recent Actors"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -289,6 +321,7 @@
{:name "Repeat"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -298,6 +331,7 @@
{:name "Repeat One"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -307,6 +341,7 @@
{:name "Replay"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -316,6 +351,7 @@
{:name "Shuffle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -325,6 +361,7 @@
{:name "Skip Next"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -333,6 +370,7 @@
{:name "Skip Previous"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil} :d "M12 12h4v24h-4zm7 12l17 12V12z"}]}
@ -340,6 +378,7 @@
{:name "Snooze"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -349,12 +388,14 @@
{:name "Stop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil} :d "M12 12h24v24H12z"}]}
{:name "Subtitles"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -364,6 +405,7 @@
{:name "Surround Sound"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -373,6 +415,7 @@
{:name "Video Collection"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -382,6 +425,7 @@
{:name "Videocam"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -391,6 +435,7 @@
{:name "Videocam Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -400,6 +445,7 @@
{:name "Volume Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -409,12 +455,14 @@
{:name "Volume Mute"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil} :d "M14 18v12h8l10 10V8L22 18h-8z"}]}
{:name "Volume Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -424,6 +472,7 @@
{:name "Volume Up"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -433,6 +482,7 @@
{:name "Web"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -444,6 +494,7 @@
{:name "Business"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -453,6 +504,7 @@
{:name "Call"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -462,6 +514,7 @@
{:name "Call End"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -471,6 +524,7 @@
{:name "Call Made"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -480,6 +534,7 @@
{:name "Call Merge"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -489,6 +544,7 @@
{:name "Call Missed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -498,6 +554,7 @@
{:name "Call Received"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -507,6 +564,7 @@
{:name "Call Split"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -516,6 +574,7 @@
{:name "Chat"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -525,6 +584,7 @@
{:name "Contacts"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -534,6 +594,7 @@
{:name "Dialer Sip"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -543,6 +604,7 @@
{:name "Dialpad"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -552,6 +614,7 @@
{:name "Dnd On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -561,6 +624,7 @@
{:name "Email"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -570,6 +634,7 @@
{:name "Forum"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -579,6 +644,7 @@
{:name "Import Export"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -588,6 +654,7 @@
{:name "Invert Colors Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -597,6 +664,7 @@
{:name "Invert Colors On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -606,6 +674,7 @@
{:name "Live Help"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -615,6 +684,7 @@
{:name "Location Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -624,6 +694,7 @@
{:name "Location On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -633,6 +704,7 @@
{:name "Message"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -642,6 +714,7 @@
{:name "Messenger"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -651,6 +724,7 @@
{:name "No Sim"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -660,6 +734,7 @@
{:name "Phone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -669,6 +744,7 @@
{:name "Portable Wifi off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -678,6 +754,7 @@
{:name "Quick Contacts Dialer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -687,6 +764,7 @@
{:name "Ring Volume"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -696,6 +774,7 @@
{:name "Stay Current Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -705,6 +784,7 @@
{:name "Stay Current Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -714,6 +794,7 @@
{:name "Stay Primary Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -723,6 +804,7 @@
{:name "Stay Primary Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -732,6 +814,7 @@
{:name "Swap Calls"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -741,6 +824,7 @@
{:name "Textsms"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -750,6 +834,7 @@
{:name "Voicemail"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -759,6 +844,7 @@
{:name "VPN Key"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728402"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Business"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Call"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Call End"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "Call Made"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -44,6 +48,7 @@
{:name "Call Merge"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +58,7 @@
{:name "Call Missed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -62,6 +68,7 @@
{:name "Call Received"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -71,6 +78,7 @@
{:name "Call Split"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -80,6 +88,7 @@
{:name "Chat"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -89,6 +98,7 @@
{:name "Contacts"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -98,6 +108,7 @@
{:name "Dialer Sip"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -107,6 +118,7 @@
{:name "Dialpad"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -116,6 +128,7 @@
{:name "Dnd On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -125,6 +138,7 @@
{:name "Email"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -134,6 +148,7 @@
{:name "Forum"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -143,6 +158,7 @@
{:name "Import Export"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -152,6 +168,7 @@
{:name "Invert Colors Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -161,6 +178,7 @@
{:name "Invert Colors On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -170,6 +188,7 @@
{:name "Live Help"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -179,6 +198,7 @@
{:name "Location Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -188,6 +208,7 @@
{:name "Location On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -197,6 +218,7 @@
{:name "Message"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -206,6 +228,7 @@
{:name "Messenger"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -215,6 +238,7 @@
{:name "No Sim"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -224,6 +248,7 @@
{:name "Phone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -233,6 +258,7 @@
{:name "Portable Wifi off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -242,6 +268,7 @@
{:name "Quick Contacts Dialer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -251,6 +278,7 @@
{:name "Ring Volume"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -260,6 +288,7 @@
{:name "Stay Current Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -269,6 +298,7 @@
{:name "Stay Current Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -278,6 +308,7 @@
{:name "Stay Primary Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -287,6 +318,7 @@
{:name "Stay Primary Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -296,6 +328,7 @@
{:name "Swap Calls"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -305,6 +338,7 @@
{:name "Textsms"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -314,6 +348,7 @@
{:name "Voicemail"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -323,6 +358,7 @@
{:name "VPN Key"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728403"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -16,6 +17,7 @@
{:name "Add Box"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -25,6 +27,7 @@
{:name "Add Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -34,6 +37,7 @@
{:name "Add Circle Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -43,6 +47,7 @@
{:name "Archive"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -52,6 +57,7 @@
{:name "Archive"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -61,6 +67,7 @@
{:name "Block"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -70,6 +77,7 @@
{:name "Clear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -79,6 +87,7 @@
{:name "Content Copy"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -88,6 +97,7 @@
{:name "Content Cut"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -97,6 +107,7 @@
{:name "Content Paste"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -106,6 +117,7 @@
{:name "Create"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -115,6 +127,7 @@
{:name "Drafts"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -124,6 +137,7 @@
{:name "Filter List"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -132,6 +146,7 @@
{:name "Flag"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -140,6 +155,7 @@
{:name "Forward"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -148,6 +164,7 @@
{:name "Gesture"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -157,6 +174,7 @@
{:name "Inbox"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -166,6 +184,7 @@
{:name "Link"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -175,6 +194,7 @@
{:name "Mail"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -184,6 +204,7 @@
{:name "Redo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -193,6 +214,7 @@
{:name "Remove"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil}
:d "M38 26h-28v-4h28v4z"}]}
@ -200,6 +222,7 @@
{:name "Remove Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -209,6 +232,7 @@
{:name "Remove Outline Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -218,6 +242,7 @@
{:name "Reply"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -227,6 +252,7 @@
{:name "Reply All"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -236,6 +262,7 @@
{:name "Report"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -245,6 +272,7 @@
{:name "Save"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -254,6 +282,7 @@
{:name "Select All"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -263,6 +292,7 @@
{:name "Send"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -271,6 +301,7 @@
{:name "Sort"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -279,6 +310,7 @@
{:name "Text Format"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -288,6 +320,7 @@
{:name "Undo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728404"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -9,6 +9,7 @@
[{:name "Access Alarm"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -18,6 +19,7 @@
{:name "Access Alarms"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -27,6 +29,7 @@
{:name "Access Times"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g {}
[:path
@ -44,6 +47,7 @@
{:name "Add Alarm"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +57,7 @@
{:name "Airplanemode Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -62,6 +67,7 @@
{:name "Airplanemode On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -71,6 +77,7 @@
{:name "Battery 20"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g [:path
{:style {:stroke nil}
@ -85,6 +92,7 @@
{:name "Battery 30"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -100,6 +108,7 @@
{:name "Battery 50"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -115,6 +124,7 @@
{:name "Battery 60"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -130,6 +140,7 @@
{:name "Battery 80"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -145,6 +156,7 @@
{:name "Battery 90"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -160,6 +172,7 @@
{:name "Battery Alert"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -169,6 +182,7 @@
{:name "Battery Charging 20"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -184,6 +198,7 @@
{:name "Battery Charging 30"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -199,6 +214,7 @@
{:name "Battery Charging 50"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -214,6 +230,7 @@
{:name "Battery Charging 60"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -229,6 +246,7 @@
{:name "Battery Charging 80"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -244,6 +262,7 @@
{:name "Battery Charging 90"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -259,6 +278,7 @@
{:name "Battery Charging Full"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -268,6 +288,7 @@
{:name "Battery Full"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -277,6 +298,7 @@
{:name "Battery Std"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -286,6 +308,7 @@
{:name "Battery Unknown"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -295,6 +318,7 @@
{:name "Bluetooth"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -304,6 +328,7 @@
{:name "Bluetooth Connected"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -313,6 +338,7 @@
{:name "Bluetooth Disabled"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -322,6 +348,7 @@
{:name "Bluetooth Searching"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -331,6 +358,7 @@
{:name "Brightness Auto"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -340,6 +368,7 @@
{:name "Brightness High"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -349,6 +378,7 @@
{:name "Brightness Low"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -358,6 +388,7 @@
{:name "Brightness Medium"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -367,6 +398,7 @@
{:name "Data Usage"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -376,6 +408,7 @@
{:name "Developer Mode"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -385,6 +418,7 @@
{:name "Devices"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -394,6 +428,7 @@
{:name "DVR"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -403,6 +438,7 @@
{:name "GPS Fixed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -412,6 +448,7 @@
{:name "GPS Not Fixed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -421,6 +458,7 @@
{:name "GPS Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -430,6 +468,7 @@
{:name "Location Disabled"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -439,6 +478,7 @@
{:name "Location Searching"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -448,6 +488,7 @@
{:name "Multitrack Audio"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -457,6 +498,7 @@
{:name "Network Cell"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path {:style {:stroke nil}
@ -468,6 +510,7 @@
{:name "Network Wifi"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -483,6 +526,7 @@
{:name "NFC"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -492,6 +536,7 @@
{:name "Now Wallpaper"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -501,6 +546,7 @@
{:name "Now Widgets"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -510,6 +556,7 @@
{:name "Screen Lock Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -519,6 +566,7 @@
{:name "Screen Lock Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -528,6 +576,7 @@
{:name "Screen Lock Rotation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -537,6 +586,7 @@
{:name "Screen Rotation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -546,6 +596,7 @@
{:name "SD Storage"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -555,6 +606,7 @@
{:name "System Settings Daydream"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -564,6 +616,7 @@
{:name "Signal Cellular 0 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -573,6 +626,7 @@
{:name "Signal Cellular 1 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path {:style {:stroke nil}
@ -584,6 +638,7 @@
{:name "Signal Cellular 2 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path {:style {:stroke nil}
@ -595,6 +650,7 @@
{:name "Signal Cellular 3 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path {:style {:stroke nil}
@ -606,6 +662,7 @@
{:name "Signal Cellular 4 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil}
:d "M4 44h40v-40z"}]}
@ -613,6 +670,7 @@
{:name "Signal Cellular Connected No Internet 0 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path {:style {:stroke nil}
@ -625,6 +683,7 @@
{:name "Signal Cellular Connected No Internet 1 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -638,6 +697,7 @@
{:name "Signal Cellular Connected No Internet 2 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -651,6 +711,7 @@
{:name "Signal Cellular Connected No Internet 3 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -664,6 +725,7 @@
{:name "Signal Cellular No Sim"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -673,6 +735,7 @@
{:name "Signal Cellular Null"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -681,6 +744,7 @@
{:name "Signal Cellular Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -690,6 +754,7 @@
{:name "Signal Wifi 0 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -700,6 +765,7 @@
{:name "Signal Wifi 1 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -715,6 +781,7 @@
{:name "Signal Wifi 2 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -730,6 +797,7 @@
{:name "Signal Wifi 3 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -745,6 +813,7 @@
{:name "Signal Wifi 4 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -754,6 +823,7 @@
{:name "Signal Wifi Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -763,6 +833,7 @@
{:name "Signal Wifi Statusbar 0 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -773,6 +844,7 @@
{:name "Signal Wifi Statusbar 1 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -788,6 +860,7 @@
{:name "Signal Wifi Statusbar 2 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -803,6 +876,7 @@
{:name "Signal Wifi Statusbar 3 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:g
[:path
@ -818,6 +892,7 @@
{:name "Signal Wifi Statusbar 4 Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -827,6 +902,7 @@
{:name "Signal Wifi Statusbar Null"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -836,6 +912,7 @@
{:name "Storage"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -845,6 +922,7 @@
{:name "Usb"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -854,6 +932,7 @@
{:name "Wifi Lock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -863,6 +942,7 @@
{:name "Wifi Tethering"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728405"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Attach File"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Attach Money"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Border All"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "Border Bottom"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -44,6 +48,7 @@
{:name "Border Clear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +58,7 @@
{:name "Border Color"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:g
[:path
@ -67,6 +73,7 @@
{:name "Border Horizontal"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -76,6 +83,7 @@
{:name "Border Inner"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -85,6 +93,7 @@
{:name "Border Left"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -94,6 +103,7 @@
{:name "Border Outer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -103,6 +113,7 @@
{:name "Border Right"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -112,6 +123,7 @@
{:name "Border Style"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -121,6 +133,7 @@
{:name "Border Top"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -130,6 +143,7 @@
{:name "Border Vertical"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -139,6 +153,7 @@
{:name "Format Align Center"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -148,6 +163,7 @@
{:name "Format Align Justify"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -157,6 +173,7 @@
{:name "Format Align Left"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -166,6 +183,7 @@
{:name "Format Align Right"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -175,6 +193,7 @@
{:name "Format Bold"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -184,6 +203,7 @@
{:name "Format Clear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -193,6 +213,7 @@
{:name "Format Color Fill"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -202,6 +223,7 @@
{:name "Format Color Reset"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -211,6 +233,7 @@
{:name "Format Color Text"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -220,6 +243,7 @@
{:name "Format Indent Decrease"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -229,6 +253,7 @@
{:name "Format Italic"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -238,6 +263,7 @@
{:name "Format Line Spacing"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -247,6 +273,7 @@
{:name "Format List Bulleted"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -256,6 +283,7 @@
{:name "Format List Numbered"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -265,6 +293,7 @@
{:name "Format Paint"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -274,6 +303,7 @@
{:name "Format Quote"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -282,6 +312,7 @@
{:name "Format Size"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -291,6 +322,7 @@
{:name "Format Strikethrough"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -300,6 +332,7 @@
{:name "Format Text Direction l To r"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -308,6 +341,7 @@
{:name "Format Underline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -317,6 +351,7 @@
{:name "Functions"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -326,6 +361,7 @@
{:name "Insert Chart"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -335,6 +371,7 @@
{:name "Insert Comment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -344,6 +381,7 @@
{:name "Insert Drive File"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -353,6 +391,7 @@
{:name "Insert Emoticon"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -362,6 +401,7 @@
{:name "Insert Invitation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -371,6 +411,7 @@
{:name "Insert Link"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -380,6 +421,7 @@
{:name "Insert Photo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -389,6 +431,7 @@
{:name "Merge Type"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -398,6 +441,7 @@
{:name "Mode Comment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -407,6 +451,7 @@
{:name "Publish"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -415,6 +460,7 @@
{:name "Vertical Align Bottom"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -423,6 +469,7 @@
{:name "Vertical Align Center"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -432,6 +479,7 @@
{:name "Vertical Align Top"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -440,6 +488,7 @@
{:name "Wrap Text"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728406"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Attachment"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:d
@ -16,6 +17,7 @@
{:name "Cloud"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:d
@ -24,6 +26,7 @@
{:name "Cloud Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:d
@ -32,6 +35,7 @@
{:name "Cloud Done"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:d
@ -40,6 +44,7 @@
{:name "Cloud Download"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:d
@ -48,6 +53,7 @@
{:name "Cloud Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -57,6 +63,7 @@
{:name "Cloud Queue"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -66,6 +73,7 @@
{:name "Cloud Upload"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -75,6 +83,7 @@
{:name "File Download"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -83,6 +92,7 @@
{:name "File Upload"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -91,6 +101,7 @@
{:name "Folder"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -100,6 +111,7 @@
{:name "Folder Open"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -109,6 +121,7 @@
{:name "Folder Shared"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728407"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Cast"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Cast Connected"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Computer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "Desktop Mac"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -44,6 +48,7 @@
{:name "Desktop Windows"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +58,7 @@
{:name "Dock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -62,6 +68,7 @@
{:name "Gamepad"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -71,6 +78,7 @@
{:name "Headset"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -80,6 +88,7 @@
{:name "Headset Mic"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -89,6 +98,7 @@
{:name "Keyboard"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -98,6 +108,7 @@
{:name "Keyboard Alt"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -107,6 +118,7 @@
{:name "Keyboard Arrow Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -115,6 +127,7 @@
{:name "Keyboard Arrow Left"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -123,6 +136,7 @@
{:name "Keyboard Arrow Right"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -131,6 +145,7 @@
{:name "Keyboard Arrow Up"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -139,6 +154,7 @@
{:name "Keyboard Capslock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -148,6 +164,7 @@
{:name "Keyboard Control"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -157,6 +174,7 @@
{:name "Keyboard Hide"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -166,6 +184,7 @@
{:name "Keyboard Return"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -175,6 +194,7 @@
{:name "Keyboard Tab"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -184,6 +204,7 @@
{:name "Keyboard Voice"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -193,6 +214,7 @@
{:name "Laptop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -202,6 +224,7 @@
{:name "Laptop Chromebook"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -211,6 +234,7 @@
{:name "Laptop Mac"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -220,6 +244,7 @@
{:name "Laptop Windows"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -229,6 +254,7 @@
{:name "Memory"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -238,6 +264,7 @@
{:name "Mouse"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -247,6 +274,7 @@
{:name "Phone android"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -256,6 +284,7 @@
{:name "Phone iPhone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -265,6 +294,7 @@
{:name "Phonelink"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -274,6 +304,7 @@
{:name "Phonelink Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -283,6 +314,7 @@
{:name "Security"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -292,6 +324,7 @@
{:name "Sim Card"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -301,6 +334,7 @@
{:name "Smartphone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -310,6 +344,7 @@
{:name "Speaker"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -319,6 +354,7 @@
{:name "Tablet"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -328,6 +364,7 @@
{:name "Tablet Android"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -337,6 +374,7 @@
{:name "Tablet Mac"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -346,6 +384,7 @@
{:name "TV"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -355,6 +394,7 @@
{:name "Clock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728408"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "Add To photos"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Adjust"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Assistant Photo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -34,6 +37,7 @@
{:name "Audiotrack"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -43,6 +47,7 @@
{:name "Blur Circular"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -52,6 +57,7 @@
{:name "Blur Linear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -61,6 +67,7 @@
{:name "Blur Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -70,6 +77,7 @@
{:name "Blur On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -79,6 +87,7 @@
{:name "Brightness"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:circle {:style {:stroke nil}
:r "20"
@ -88,6 +97,7 @@
{:name "Brightness 2"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -97,6 +107,7 @@
{:name "Brightness 3"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -106,6 +117,7 @@
{:name "Brightness 4"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -115,6 +127,7 @@
{:name "Brightness 5"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -124,6 +137,7 @@
{:name "Brightness 6"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -133,6 +147,7 @@
{:name "Brightness 7"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -142,6 +157,7 @@
{:name "Brush"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -151,6 +167,7 @@
{:name "Camera"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -160,6 +177,7 @@
{:name "Camera Alt"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -169,6 +187,7 @@
{:name "Camera Front"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -178,6 +197,7 @@
{:name "Camera Rear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -187,6 +207,7 @@
{:name "Camera Roll"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -196,6 +217,7 @@
{:name "Center Focus Strong"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -205,6 +227,7 @@
{:name "Center Focus Weak"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -214,6 +237,7 @@
{:name "Collections"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -223,6 +247,7 @@
{:name "Color Lens"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -232,6 +257,7 @@
{:name "Colorize"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -241,6 +267,7 @@
{:name "Compare"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -250,6 +277,7 @@
{:name "Control Point"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -259,6 +287,7 @@
{:name "Control Point Duplicate"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -268,6 +297,7 @@
{:name "Crop 16:9"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -277,6 +307,7 @@
{:name "Crop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -286,6 +317,7 @@
{:name "Crop 3:2"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -295,6 +327,7 @@
{:name "Crop 5:4"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -304,6 +337,7 @@
{:name "Crop 7:5"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -313,6 +347,7 @@
{:name "Crop Din"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -322,6 +357,7 @@
{:name "Crop Free"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -331,6 +367,7 @@
{:name "Crop Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -340,6 +377,7 @@
{:name "Crop Original"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -349,6 +387,7 @@
{:name "Crop Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -358,6 +397,7 @@
{:name "Crop Square"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -367,6 +407,7 @@
{:name "Dehaze"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -375,6 +416,7 @@
{:name "Details"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -383,6 +425,7 @@
{:name "Edit"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -392,6 +435,7 @@
{:name "Exposure"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -401,6 +445,7 @@
{:name "Exposure Minus 1"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -410,6 +455,7 @@
{:name "Exposure Minus 2"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -419,6 +465,7 @@
{:name "Exposure Plus 1"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -428,6 +475,7 @@
{:name "Exposure Plus 2"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -437,6 +485,7 @@
{:name "Exposure Zero"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -446,6 +495,7 @@
{:name "Filter 1"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -455,6 +505,7 @@
{:name "Filter 2"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -464,6 +515,7 @@
{:name "Filter 3"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -473,6 +525,7 @@
{:name "Filter 4"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -482,6 +535,7 @@
{:name "Filter 5"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -491,6 +545,7 @@
{:name "Filter 6"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -500,6 +555,7 @@
{:name "Filter 7"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -509,6 +565,7 @@
{:name "Filter 8"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -518,6 +575,7 @@
{:name "Filter b and w"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -527,6 +585,7 @@
{:name "Filter Center Focus"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -536,6 +595,7 @@
{:name "Filter Drama"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -545,6 +605,7 @@
{:name "Filter Frames"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -554,6 +615,7 @@
{:name "Filter HDR"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -563,6 +625,7 @@
{:name "Filter None"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -572,6 +635,7 @@
{:name "Filter Tilt Shift"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -581,6 +645,7 @@
{:name "Filter Vintage"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -590,6 +655,7 @@
{:name "Flare"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -599,6 +665,7 @@
{:name "Flash Auto"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -608,6 +675,7 @@
{:name "Flash Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -617,6 +685,7 @@
{:name "Flash On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil}
:d "M14 4v22h6v18l14-24h-8l8-16z"}]}
@ -624,6 +693,7 @@
{:name "Flip"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -633,6 +703,7 @@
{:name "Gradient"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -642,6 +713,7 @@
{:name "Grain"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -651,6 +723,7 @@
{:name "Grid Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -660,6 +733,7 @@
{:name "Grid On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -669,6 +743,7 @@
{:name "HDR Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -678,6 +753,7 @@
{:name "HDR On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -687,6 +763,7 @@
{:name "HDR Strong"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -696,6 +773,7 @@
{:name "HDR Weak"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -705,6 +783,7 @@
{:name "Healing"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -714,6 +793,7 @@
{:name "Image"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -723,6 +803,7 @@
{:name "Image Aspect Ratio"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -732,6 +813,7 @@
{:name "Iso"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -741,6 +823,7 @@
{:name "Landscape"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -750,6 +833,7 @@
{:name "Leak Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -759,6 +843,7 @@
{:name "Leak Remove"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -768,6 +853,7 @@
{:name "Lens"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -777,6 +863,7 @@
{:name "Looks 3"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -786,6 +873,7 @@
{:name "Looks 4"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -795,6 +883,7 @@
{:name "Looks 5"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -804,6 +893,7 @@
{:name "Looks 6"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -813,6 +903,7 @@
{:name "Looks"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -822,6 +913,7 @@
{:name "Looks One"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -831,6 +923,7 @@
{:name "Looks Two"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -840,6 +933,7 @@
{:name "Loupe"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -849,6 +943,7 @@
{:name "Movie Creation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -858,6 +953,7 @@
{:name "Nature"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -867,6 +963,7 @@
{:name "Navigate Before"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -875,6 +972,7 @@
{:name "Navigate Next"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -883,6 +981,7 @@
{:name "Palette"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -892,6 +991,7 @@
{:name "Panorama"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -901,6 +1001,7 @@
{:name "Panorama Fisheye"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -910,6 +1011,7 @@
{:name "Panorama Horizontal"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -919,6 +1021,7 @@
{:name "Panorama Vertical"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -928,6 +1031,7 @@
{:name "Panorama Wide Angle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -937,6 +1041,7 @@
{:name "Photo"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -946,6 +1051,7 @@
{:name "Photo Album"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -955,6 +1061,7 @@
{:name "Photo Camera"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:g
[:circle {:r "6.4"
@ -968,6 +1075,7 @@
{:name "Photo Library"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -977,6 +1085,7 @@
{:name "Portrait"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -986,6 +1095,7 @@
{:name "Remove Red Eye"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -995,6 +1105,7 @@
{:name "Rotate Left"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1004,6 +1115,7 @@
{:name "Rotate Right"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1013,6 +1125,7 @@
{:name "Slideshow"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1022,6 +1135,7 @@
{:name "Straighten"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1031,6 +1145,7 @@
{:name "Style"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1040,6 +1155,7 @@
{:name "Switch Camera"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1049,6 +1165,7 @@
{:name "Switch Video"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1058,6 +1175,7 @@
{:name "Tag Faces"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1067,6 +1185,7 @@
{:name "Texture"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1076,6 +1195,7 @@
{:name "Timelapse"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1085,6 +1205,7 @@
{:name "Timer 3"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1094,6 +1215,7 @@
{:name "Timer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1103,6 +1225,7 @@
{:name "Timer Auto"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1112,6 +1235,7 @@
{:name "Timer Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1121,6 +1245,7 @@
{:name "Tonality"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1130,6 +1255,7 @@
{:name "Transform"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1139,6 +1265,7 @@
{:name "Tune"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1148,6 +1275,7 @@
{:name "WB Auto"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1157,6 +1285,7 @@
{:name "WB Cloudy"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1166,6 +1295,7 @@
{:name "WB Incandescent"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1175,6 +1305,7 @@
{:name "WB Irradescent"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -1184,6 +1315,7 @@
{:name "WB Sunny"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728409"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,499 +8,554 @@
[{:name "Been Here"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 2H10C7.79 2 6.02 3.79 6.02 6L6 31.87c0 1.38.7 2.6 1.76 3.32L23.99 46l16.23-10.81c1.06-.72 1.76-1.94 1.76-3.32L42 6c0-2.21-1.79-4-4-4zM20 32L10 22l2.83-2.83L20 26.34l15.17-15.17L38 14 20 32z"}]}
{:style {:stroke nil}
:d
"M38 2H10C7.79 2 6.02 3.79 6.02 6L6 31.87c0 1.38.7 2.6 1.76 3.32L23.99 46l16.23-10.81c1.06-.72 1.76-1.94 1.76-3.32L42 6c0-2.21-1.79-4-4-4zM20 32L10 22l2.83-2.83L20 26.34l15.17-15.17L38 14 20 32z"}]}
{:name "Direction"
{:name "Direction"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M43.41 22.59l-18-18c-.78-.78-2.05-.78-2.82 0l-18 18c-.78.78-.78 2.05 0 2.83l18 17.99v.01c.78.78 2.05.78 2.83 0l18-18c.78-.79.78-2.05-.01-2.83zM28 29v-5h-8v6h-4v-8c0-1.11.89-2 2-2h10v-5l7 7-7 7z"}]}
{:style {:stroke nil}
:d
"M43.41 22.59l-18-18c-.78-.78-2.05-.78-2.82 0l-18 18c-.78.78-.78 2.05 0 2.83l18 17.99v.01c.78.78 2.05.78 2.83 0l18-18c.78-.79.78-2.05-.01-2.83zM28 29v-5h-8v6h-4v-8c0-1.11.89-2 2-2h10v-5l7 7-7 7z"}]}
{:name "Direction Bike"
{:name "Direction Bike"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M32 9.6c1.98 0 3.6-1.61 3.6-3.6S33.98 2.4 32 2.4c-1.99 0-3.6 1.61-3.6 3.6s1.61 3.6 3.6 3.6zM38 24c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 17c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-8.4-21H38v-3.6h-6.4l-3.87-6.53c-.59-1-1.68-1.67-2.93-1.67-.94 0-1.79.38-2.4 1L15 16.59c-.62.62-1 1.47-1 2.41 0 1.26.67 2.32 1.7 2.94L22.4 26v10H26V23.04l-4.5-3.34 4.64-4.66L29.6 20zM10 24C4.48 24 0 28.48 0 34s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 17c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"}]}
{:style {:stroke nil}
:d
"M32 9.6c1.98 0 3.6-1.61 3.6-3.6S33.98 2.4 32 2.4c-1.99 0-3.6 1.61-3.6 3.6s1.61 3.6 3.6 3.6zM38 24c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 17c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-8.4-21H38v-3.6h-6.4l-3.87-6.53c-.59-1-1.68-1.67-2.93-1.67-.94 0-1.79.38-2.4 1L15 16.59c-.62.62-1 1.47-1 2.41 0 1.26.67 2.32 1.7 2.94L22.4 26v10H26V23.04l-4.5-3.34 4.64-4.66L29.6 20zM10 24C4.48 24 0 28.48 0 34s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 17c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z"}]}
{:name "Direction Bus"
{:name "Direction Bus"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M8 32c0 1.77.78 3.34 2 4.44V40c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h16v2c0 1.1.89 2 2 2h2c1.1 0 2-.9 2-2v-3.56c1.22-1.1 2-2.67 2-4.44V12c0-7-7.16-8-16-8S8 5 8 12v20zm7 2c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm18 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H12V12h24v10z"}]}
{:style {:stroke nil}
:d
"M8 32c0 1.77.78 3.34 2 4.44V40c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h16v2c0 1.1.89 2 2 2h2c1.1 0 2-.9 2-2v-3.56c1.22-1.1 2-2.67 2-4.44V12c0-7-7.16-8-16-8S8 5 8 12v20zm7 2c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm18 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H12V12h24v10z"}]}
{:name "Direction Car"
{:name "Direction Car"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M37.84 12.02C37.43 10.84 36.31 10 35 10H13c-1.31 0-2.43.84-2.84 2.02L6 24v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V24l-4.16-11.98zM13 32c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 22l3-9h22l3 9H10z"}]}
{:style {:stroke nil}
:d
"M37.84 12.02C37.43 10.84 36.31 10 35 10H13c-1.31 0-2.43.84-2.84 2.02L6 24v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V24l-4.16-11.98zM13 32c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 22l3-9h22l3 9H10z"}]}
{:name "Direction Ferry"
{:name "Direction Ferry"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 42c-2.78 0-5.56-.94-8-2.65-4.88 3.42-11.12 3.42-16 0C13.56 41.06 10.78 42 8 42H4v4h4c2.75 0 5.48-.69 8-1.99 5.04 2.59 10.96 2.59 16 0C34.52 45.3 37.25 46 40 46h4v-4h-4zM7.89 38H8c3.2 0 6.05-1.76 8-4 1.95 2.24 4.8 4 8 4s6.05-1.76 8-4c1.96 2.24 4.79 4 8 4h.11l3.79-13.37c.17-.51.12-1.07-.12-1.55-.25-.48-.68-.84-1.2-.99L40 21.24V12c0-2.21-1.79-4-4-4h-6V2H18v6h-6c-2.21 0-4 1.79-4 4v9.24l-2.57.84c-.52.16-.95.51-1.2.99s-.29 1.04-.12 1.55L7.89 38zM12 12h24v7.93L24 16l-12 3.93V12z"}]}
{:style {:stroke nil}
:d
"M40 42c-2.78 0-5.56-.94-8-2.65-4.88 3.42-11.12 3.42-16 0C13.56 41.06 10.78 42 8 42H4v4h4c2.75 0 5.48-.69 8-1.99 5.04 2.59 10.96 2.59 16 0C34.52 45.3 37.25 46 40 46h4v-4h-4zM7.89 38H8c3.2 0 6.05-1.76 8-4 1.95 2.24 4.8 4 8 4s6.05-1.76 8-4c1.96 2.24 4.79 4 8 4h.11l3.79-13.37c.17-.51.12-1.07-.12-1.55-.25-.48-.68-.84-1.2-.99L40 21.24V12c0-2.21-1.79-4-4-4h-6V2H18v6h-6c-2.21 0-4 1.79-4 4v9.24l-2.57.84c-.52.16-.95.51-1.2.99s-.29 1.04-.12 1.55L7.89 38zM12 12h24v7.93L24 16l-12 3.93V12z"}]}
{:name "Direction Subway"
{:name "Direction Subway"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 4C15.16 4 8 5 8 12v19c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V12c0-7-7.16-8-16-8zm-9 30c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm7-12H12V12h10v10zm11 12c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H26V12h10v10z"}]}
{:style {:stroke nil}
:d
"M24 4C15.16 4 8 5 8 12v19c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V12c0-7-7.16-8-16-8zm-9 30c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm7-12H12V12h10v10zm11 12c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H26V12h10v10z"}]}
{:name "Direction Train"
{:name "Direction Train"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M8 31c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V10c0-7-7.16-8-16-8S8 3 8 10v21zm16 3c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm12-14H12V10h24v10z"}]}
{:style {:stroke nil}
:d
"M8 31c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V10c0-7-7.16-8-16-8S8 3 8 10v21zm16 3c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm12-14H12V10h24v10z"}]}
{:name "Direction Transit"
{:name "Direction Transit"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 4C15.16 4 8 5 8 12v19c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V12c0-7-7.16-8-16-8zm-9 30c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm7-12H12V12h10v10zm11 12c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H26V12h10v10z"}]}
{:style {:stroke nil}
:d
"M24 4C15.16 4 8 5 8 12v19c0 3.87 3.14 7 7 7l-3 3v1h24v-1l-3-3c3.87 0 7-3.13 7-7V12c0-7-7.16-8-16-8zm-9 30c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm7-12H12V12h10v10zm11 12c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-12H26V12h10v10z"}]}
{:name "Direction Walk"
{:name "Direction Walk"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M28 7.6c1.98 0 3.6-1.61 3.6-3.6S29.98.4 28 .4c-1.99 0-3.6 1.61-3.6 3.6s1.61 3.6 3.6 3.6zm.24 12.4H38v-3.6h-7.25l-4-6.66c-.59-1-1.68-1.66-2.92-1.66-.34 0-.67.05-.98.14L12 11.6V22h3.6v-7.33l4.21-1.31L12 44h3.6l5.74-16.22L26 34v10h3.6V31.19l-4.98-9.08 1.47-5.74L28.24 20z"}]}
{:style {:stroke nil}
:d
"M28 7.6c1.98 0 3.6-1.61 3.6-3.6S29.98.4 28 .4c-1.99 0-3.6 1.61-3.6 3.6s1.61 3.6 3.6 3.6zm.24 12.4H38v-3.6h-7.25l-4-6.66c-.59-1-1.68-1.66-2.92-1.66-.34 0-.67.05-.98.14L12 11.6V22h3.6v-7.33l4.21-1.31L12 44h3.6l5.74-16.22L26 34v10h3.6V31.19l-4.98-9.08 1.47-5.74L28.24 20z"}]}
{:name "Flight"
{:name "Flight"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:g
[:path {:d "M20.36 18"}]
[:path
{:style {:stroke nil}
:d
"M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z"}]]}
[:path {:d "M20.36 18"}]
[:path
{:style {:stroke nil}
:d
"M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z"}]]}
{:name "Hotel"
{:name "Hotel"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z"}]}
{:style {:stroke nil}
:d
"M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z"}]}
{:name "Layers"
{:name "Layers"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M23.99 37.08L9.24 25.61 6 28.13l18 14 18-14-3.26-2.53-14.75 11.48zM24 32l14.73-11.45L42 18 24 4 6 18l3.26 2.53L24 32z"}]}
{:style {:stroke nil}
:d
"M23.99 37.08L9.24 25.61 6 28.13l18 14 18-14-3.26-2.53-14.75 11.48zM24 32l14.73-11.45L42 18 24 4 6 18l3.26 2.53L24 32z"}]}
{:name "Layers Clear"
{:name "Layers Clear"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M39.62 29.98L42 28.13l-2.85-2.85-2.38 1.85 2.85 2.85zm-.89-9.43L42 18 24 4l-5.83 4.53 15.75 15.75 4.81-3.73zM6.55 2L4 4.55l8.44 8.44L6 18l3.26 2.53L24 32l4.19-3.26 2.85 2.85-7.06 5.49L9.24 25.61 6 28.13l18 14 9.89-7.7L41.46 42 44 39.45 6.55 2z"}]}
{:style {:stroke nil}
:d
"M39.62 29.98L42 28.13l-2.85-2.85-2.38 1.85 2.85 2.85zm-.89-9.43L42 18 24 4l-5.83 4.53 15.75 15.75 4.81-3.73zM6.55 2L4 4.55l8.44 8.44L6 18l3.26 2.53L24 32l4.19-3.26 2.85 2.85-7.06 5.49L9.24 25.61 6 28.13l18 14 9.89-7.7L41.46 42 44 39.45 6.55 2z"}]}
{:name "Local Airport"
{:name "Local Airport"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z"}]}
{:style {:stroke nil}
:d
"M42 32v-4L26 18V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v11L4 28v4l16-5v11l-4 3v3l7-2 7 2v-3l-4-3V27l16 5z"}]}
{:name "Local ATM"
{:name "Local ATM"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M22 34h4v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-6v-2h8v-4h-4v-2h-4v2h-2c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2h-8v4h4v2zM40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H8V12h32v24z"}]}
{:style {:stroke nil}
:d
"M22 34h4v-2h2c1.1 0 2-.9 2-2v-6c0-1.1-.9-2-2-2h-6v-2h8v-4h-4v-2h-4v2h-2c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h6v2h-8v4h4v2zM40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 28H8V12h32v24z"}]}
{:name "Local Attraction"
{:name "Local Attraction"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 24c0-2.21 1.79-4 4-4v-8c0-2.21-1.79-4-4-4H8c-2.21 0-3.98 1.79-3.98 4l-.01 8C6.22 20.01 8 21.8 8 24c0 2.21-1.79 4-3.99 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-8c-2.21 0-4-1.79-4-4zm-8.84 9.6L24 29l-7.16 4.6L19 25.37l-6.58-5.38 8.49-.5L24 11.6l3.09 7.89 8.49.5L29 25.37l2.16 8.23z"}]}
{:style {:stroke nil}
:d
"M40 24c0-2.21 1.79-4 4-4v-8c0-2.21-1.79-4-4-4H8c-2.21 0-3.98 1.79-3.98 4l-.01 8C6.22 20.01 8 21.8 8 24c0 2.21-1.79 4-3.99 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-8c-2.21 0-4-1.79-4-4zm-8.84 9.6L24 29l-7.16 4.6L19 25.37l-6.58-5.38 8.49-.5L24 11.6l3.09 7.89 8.49.5L29 25.37l2.16 8.23z"}]}
{:name "Local Bar"
{:name "Local Bar"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M22 26v12H12v4h24v-4H26V26l16-16V6H6v4l16 16zm-7-12l-4-4h26l-4 4H15z"}]}
{:style {:stroke nil}
:d
"M22 26v12H12v4h24v-4H26V26l16-16V6H6v4l16 16zm-7-12l-4-4h26l-4 4H15z"}]}
{:name "Local Cafe"
{:name "Local Cafe"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 6H8v20c0 4.42 3.58 8 8 8h12c4.42 0 8-3.58 8-8v-6h4c2.21 0 4-1.79 4-4v-6c0-2.21-1.79-4-4-4zm0 10h-4v-6h4v6zM4 42h36v-4H4v4z"}]}
{:style {:stroke nil}
:d
"M40 6H8v20c0 4.42 3.58 8 8 8h12c4.42 0 8-3.58 8-8v-6h4c2.21 0 4-1.79 4-4v-6c0-2.21-1.79-4-4-4zm0 10h-4v-6h4v6zM4 42h36v-4H4v4z"}]}
{:name "Local Car Wash"
{:name "Local Car Wash"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M34 10c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S31 5 31 7c0 1.66 1.34 3 3 3zm-10 0c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S21 5 21 7c0 1.66 1.34 3 3 3zm-10 0c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S11 5 11 7c0 1.66 1.34 3 3 3zm23.84 6.02C37.43 14.84 36.31 14 35 14H13c-1.31 0-2.43.84-2.84 2.02L6 28v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V28l-4.16-11.98zM13 36c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 26l3-9h22l3 9H10z"}]}
{:style {:stroke nil}
:d
"M34 10c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S31 5 31 7c0 1.66 1.34 3 3 3zm-10 0c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S21 5 21 7c0 1.66 1.34 3 3 3zm-10 0c1.66 0 3-1.34 3-3 0-2-3-5.4-3-5.4S11 5 11 7c0 1.66 1.34 3 3 3zm23.84 6.02C37.43 14.84 36.31 14 35 14H13c-1.31 0-2.43.84-2.84 2.02L6 28v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V28l-4.16-11.98zM13 36c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 26l3-9h22l3 9H10z"}]}
{:name "Local Convenience Store"
{:name "Local Convenience Store"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 14V8H10v6H4v26h16v-8h8v8h16V14h-6zm-16 6h-4v2h4v2h-6v-6h4v-2h-4v-2h6v6zm10 4h-2v-4h-4v-6h2v4h2v-4h2v10z"}]}
{:style {:stroke nil}
:d
"M38 14V8H10v6H4v26h16v-8h8v8h16V14h-6zm-16 6h-4v2h4v2h-6v-6h4v-2h-4v-2h6v6zm10 4h-2v-4h-4v-6h2v4h2v-4h2v10z"}]}
{:name "Local Drink"
{:name "Local Drink"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M6 4l4.03 36.47C10.26 42.46 11.95 44 14 44h20c2.05 0 3.74-1.54 3.97-3.53L42 4H6zm18 34c-3.31 0-6-2.69-6-6 0-4 6-10.8 6-10.8S30 28 30 32c0 3.31-2.69 6-6 6zm12.65-22h-25.3l-.88-8h27.07l-.89 8z"}]}
{:style {:stroke nil}
:d
"M6 4l4.03 36.47C10.26 42.46 11.95 44 14 44h20c2.05 0 3.74-1.54 3.97-3.53L42 4H6zm18 34c-3.31 0-6-2.69-6-6 0-4 6-10.8 6-10.8S30 28 30 32c0 3.31-2.69 6-6 6zm12.65-22h-25.3l-.88-8h27.07l-.89 8z"}]}
{:name "Local Florist"
{:name "Local Florist"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 44c9.94 0 18-8.06 18-18-9.94 0-18 8.06-18 18zM11.21 20.5c0 2.76 2.24 5 5 5 1.05 0 2.03-.33 2.83-.88L19 25c0 2.76 2.24 5 5 5s5-2.24 5-5l-.04-.38c.81.56 1.78.88 2.83.88 2.76 0 5-2.24 5-5 0-1.99-1.17-3.7-2.86-4.5 1.68-.8 2.86-2.51 2.86-4.5 0-2.76-2.24-5-5-5-1.05 0-2.03.33-2.83.88L29 7c0-2.76-2.24-5-5-5s-5 2.24-5 5l.04.38c-.81-.56-1.78-.88-2.83-.88-2.76 0-5 2.24-5 5 0 1.99 1.17 3.7 2.86 4.5-1.69.8-2.86 2.51-2.86 4.5zM24 11c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5zM6 26c0 9.94 8.06 18 18 18 0-9.94-8.06-18-18-18z"}]}
{:style {:stroke nil}
:d
"M24 44c9.94 0 18-8.06 18-18-9.94 0-18 8.06-18 18zM11.21 20.5c0 2.76 2.24 5 5 5 1.05 0 2.03-.33 2.83-.88L19 25c0 2.76 2.24 5 5 5s5-2.24 5-5l-.04-.38c.81.56 1.78.88 2.83.88 2.76 0 5-2.24 5-5 0-1.99-1.17-3.7-2.86-4.5 1.68-.8 2.86-2.51 2.86-4.5 0-2.76-2.24-5-5-5-1.05 0-2.03.33-2.83.88L29 7c0-2.76-2.24-5-5-5s-5 2.24-5 5l.04.38c-.81-.56-1.78-.88-2.83-.88-2.76 0-5 2.24-5 5 0 1.99 1.17 3.7 2.86 4.5-1.69.8-2.86 2.51-2.86 4.5zM24 11c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5zM6 26c0 9.94 8.06 18 18 18 0-9.94-8.06-18-18-18z"}]}
{:name "Local Gas Station"
{:name "Local Gas Station"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M39.54 14.46l.03-.03L32.12 7 30 9.12l4.22 4.22C32.34 14.06 31 15.87 31 18c0 2.76 2.24 5 5 5 .71 0 1.39-.15 2-.42V37c0 1.1-.9 2-2 2s-2-.9-2-2v-9c0-2.21-1.79-4-4-4h-2V10c0-2.21-1.79-4-4-4H12c-2.21 0-4 1.79-4 4v32h20V27h3v10c0 2.76 2.24 5 5 5s5-2.24 5-5V18c0-1.38-.56-2.63-1.46-3.54zM24 20H12V10h12v10zm12 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}]}
{:style {:stroke nil}
:d
"M39.54 14.46l.03-.03L32.12 7 30 9.12l4.22 4.22C32.34 14.06 31 15.87 31 18c0 2.76 2.24 5 5 5 .71 0 1.39-.15 2-.42V37c0 1.1-.9 2-2 2s-2-.9-2-2v-9c0-2.21-1.79-4-4-4h-2V10c0-2.21-1.79-4-4-4H12c-2.21 0-4 1.79-4 4v32h20V27h3v10c0 2.76 2.24 5 5 5s5-2.24 5-5V18c0-1.38-.56-2.63-1.46-3.54zM24 20H12V10h12v10zm12 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"}]}
{:name "Local Grocery Store"
{:name "Local Grocery Store"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M14 36c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4zM2 4v4h4l7.19 15.17-2.7 4.9c-.31.58-.49 1.23-.49 1.93 0 2.21 1.79 4 4 4h24v-4H14.85c-.28 0-.5-.22-.5-.5 0-.09.02-.17.06-.24L16.2 26h14.9c1.5 0 2.81-.83 3.5-2.06l7.15-12.98c.16-.28.25-.61.25-.96 0-1.11-.9-2-2-2H10.43l-1.9-4H2zm32 32c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4z"}]}
{:style {:stroke nil}
:d
"M14 36c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4zM2 4v4h4l7.19 15.17-2.7 4.9c-.31.58-.49 1.23-.49 1.93 0 2.21 1.79 4 4 4h24v-4H14.85c-.28 0-.5-.22-.5-.5 0-.09.02-.17.06-.24L16.2 26h14.9c1.5 0 2.81-.83 3.5-2.06l7.15-12.98c.16-.28.25-.61.25-.96 0-1.11-.9-2-2-2H10.43l-1.9-4H2zm32 32c-2.21 0-3.98 1.79-3.98 4s1.77 4 3.98 4 4-1.79 4-4-1.79-4-4-4z"}]}
{:name "Local Hospital"
{:name "Local Hospital"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 6H10c-2.21 0-3.98 1.79-3.98 4L6 38c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm-2 22h-8v8h-8v-8h-8v-8h8v-8h8v8h8v8z"}]}
{:style {:stroke nil}
:d
"M38 6H10c-2.21 0-3.98 1.79-3.98 4L6 38c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zm-2 22h-8v8h-8v-8h-8v-8h8v-8h8v8h8v8z"}]}
{:name "Local Hotel"
{:name "Local Hotel"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z"}]}
{:style {:stroke nil}
:d
"M14 26c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm24-12H22v14H6V10H2v30h4v-6h36v6h4V22c0-4.42-3.58-8-8-8z"}]}
{:name "Local Laundry Service"
{:name "Local Laundry Service"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M18.34 33.66c3.12 3.12 8.19 3.12 11.31 0 3.12-3.12 3.12-8.19 0-11.31L18.34 33.66zM36 4.02L12 4C9.79 4 8 5.79 8 8v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4V8c0-2.21-1.79-3.98-4-3.98zM20 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-6 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10 32c-6.63 0-12-5.37-12-12s5.37-12 12-12 12 5.37 12 12-5.37 12-12 12z"}]}
{:style {:stroke nil}
:d
"M18.34 33.66c3.12 3.12 8.19 3.12 11.31 0 3.12-3.12 3.12-8.19 0-11.31L18.34 33.66zM36 4.02L12 4C9.79 4 8 5.79 8 8v32c0 2.21 1.79 4 4 4h24c2.21 0 4-1.79 4-4V8c0-2.21-1.79-3.98-4-3.98zM20 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-6 0c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm10 32c-6.63 0-12-5.37-12-12s5.37-12 12-12 12 5.37 12 12-5.37 12-12 12z"}]}
{:name "Local Library"
{:name "Local Library"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 23.09C19.27 18.7 12.96 16 6 16v22c6.96 0 13.27 2.7 18 7.09C28.73 40.7 35.04 38 42 38V16c-6.96 0-13.27 2.7-18 7.09zM24 16c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z"}]}
{:style {:stroke nil}
:d
"M24 23.09C19.27 18.7 12.96 16 6 16v22c6.96 0 13.27 2.7 18 7.09C28.73 40.7 35.04 38 42 38V16c-6.96 0-13.27 2.7-18 7.09zM24 16c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z"}]}
{:name "Local Mall"
{:name "Local Mall"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 12h-4c0-5.52-4.48-10-10-10S14 6.48 14 12h-4c-2.21 0-3.98 1.79-3.98 4L6 40c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V16c0-2.21-1.79-4-4-4zM24 6c3.31 0 6 2.69 6 6H18c0-3.31 2.69-6 6-6zm0 20c-5.52 0-10-4.48-10-10h4c0 3.31 2.69 6 6 6s6-2.69 6-6h4c0 5.52-4.48 10-10 10z"}]}
{:style {:stroke nil}
:d
"M38 12h-4c0-5.52-4.48-10-10-10S14 6.48 14 12h-4c-2.21 0-3.98 1.79-3.98 4L6 40c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V16c0-2.21-1.79-4-4-4zM24 6c3.31 0 6 2.69 6 6H18c0-3.31 2.69-6 6-6zm0 20c-5.52 0-10-4.48-10-10h4c0 3.31 2.69 6 6 6s6-2.69 6-6h4c0 5.52-4.48 10-10 10z"}]}
{:name "Local Movies"
{:name "Local Movies"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M36 6v4h-4V6H16v4h-4V6H8v36h4v-4h4v4h16v-4h4v4h4V6h-4zM16 34h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm20 16h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4z"}]}
{:style {:stroke nil}
:d
"M36 6v4h-4V6H16v4h-4V6H8v36h4v-4h4v4h16v-4h4v4h4V6h-4zM16 34h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm20 16h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4z"}]}
{:name "Local Offer"
{:name "Local Offer"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M42.82 23.16L24.83 5.17C24.1 4.45 23.1 4 22 4H8C5.79 4 4 5.79 4 8v14c0 1.11.45 2.11 1.18 2.83l18 18C23.9 43.55 24.9 44 26 44c1.1 0 2.11-.45 2.83-1.17l14-14C43.55 28.1 44 27.1 44 26c0-1.11-.45-2.11-1.18-2.84zM11 14c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}]}
{:style {:stroke nil}
:d
"M42.82 23.16L24.83 5.17C24.1 4.45 23.1 4 22 4H8C5.79 4 4 5.79 4 8v14c0 1.11.45 2.11 1.18 2.83l18 18C23.9 43.55 24.9 44 26 44c1.1 0 2.11-.45 2.83-1.17l14-14C43.55 28.1 44 27.1 44 26c0-1.11-.45-2.11-1.18-2.84zM11 14c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}]}
{:name "Local Parking"
{:name "Local Parking"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M26 6H12v36h8V30h6c6.63 0 12-5.37 12-12S32.63 6 26 6zm.4 16H20v-8h6.4c2.21 0 4 1.79 4 4s-1.79 4-4 4z"}]}
{:style {:stroke nil}
:d
"M26 6H12v36h8V30h6c6.63 0 12-5.37 12-12S32.63 6 26 6zm.4 16H20v-8h6.4c2.21 0 4 1.79 4 4s-1.79 4-4 4z"}]}
{:name "Local Pharmacy"
{:name "Local Pharmacy"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M42 10h-5.29L39 3.71 34.3 2l-2.91 8H6v4l4 12-4 12v4h36v-4l-4-12 4-12v-4zM32 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4z"}]}
{:style {:stroke nil}
:d
"M42 10h-5.29L39 3.71 34.3 2l-2.91 8H6v4l4 12-4 12v4h36v-4l-4-12 4-12v-4zM32 28h-6v6h-4v-6h-6v-4h6v-6h4v6h6v4z"}]}
{:name "Local Phone"
{:name "Local Phone"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M13.25 21.59c2.88 5.66 7.51 10.29 13.18 13.17l4.4-4.41c.55-.55 1.34-.71 2.03-.49C35.1 30.6 37.51 31 40 31c1.11 0 2 .89 2 2v7c0 1.11-.89 2-2 2C21.22 42 6 26.78 6 8c0-1.11.9-2 2-2h7c1.11 0 2 .89 2 2 0 2.49.4 4.9 1.14 7.14.22.69.06 1.48-.49 2.03l-4.4 4.42z"}]}
{:style {:stroke nil}
:d
"M13.25 21.59c2.88 5.66 7.51 10.29 13.18 13.17l4.4-4.41c.55-.55 1.34-.71 2.03-.49C35.1 30.6 37.51 31 40 31c1.11 0 2 .89 2 2v7c0 1.11-.89 2-2 2C21.22 42 6 26.78 6 8c0-1.11.9-2 2-2h7c1.11 0 2 .89 2 2 0 2.49.4 4.9 1.14 7.14.22.69.06 1.48-.49 2.03l-4.4 4.42z"}]}
{:name "Local Pizza"
{:name "Local Pizza"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 4c-7.13 0-13.55 3.09-17.98 8L24 44l17.99-31.99C37.56 7.09 31.14 4 24 4zM14 14c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm10 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"}]}
{:style {:stroke nil}
:d
"M24 4c-7.13 0-13.55 3.09-17.98 8L24 44l17.99-31.99C37.56 7.09 31.14 4 24 4zM14 14c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm10 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"}]}
{:name "Local Play"
{:name "Local Play"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 24c0-2.21 1.79-4 4-4v-8c0-2.21-1.79-4-4-4H8c-2.21 0-3.98 1.79-3.98 4l-.01 8C6.22 20.01 8 21.8 8 24c0 2.21-1.79 4-3.99 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-8c-2.21 0-4-1.79-4-4zm-8.84 9.6L24 29l-7.16 4.6L19 25.37l-6.58-5.38 8.49-.5L24 11.6l3.09 7.89 8.49.5L29 25.37l2.16 8.23z"}]}
{:style {:stroke nil}
:d
"M40 24c0-2.21 1.79-4 4-4v-8c0-2.21-1.79-4-4-4H8c-2.21 0-3.98 1.79-3.98 4l-.01 8C6.22 20.01 8 21.8 8 24c0 2.21-1.79 4-3.99 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4v-8c-2.21 0-4-1.79-4-4zm-8.84 9.6L24 29l-7.16 4.6L19 25.37l-6.58-5.38 8.49-.5L24 11.6l3.09 7.89 8.49.5L29 25.37l2.16 8.23z"}]}
{:name "Local Post Office"
{:name "Local Post Office"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 8L24 26 8 16v-4l16 10 16-10v4z"}]}
{:style {:stroke nil}
:d
"M40 8H8c-2.21 0-3.98 1.79-3.98 4L4 36c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm0 8L24 26 8 16v-4l16 10 16-10v4z"}]}
{:name "Local Print Shop"
{:name "Local Print Shop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 16H10c-3.31 0-6 2.69-6 6v12h8v8h24v-8h8V22c0-3.31-2.69-6-6-6zm-6 22H16V28h16v10zm6-14c-1.11 0-2-.89-2-2s.89-2 2-2c1.11 0 2 .89 2 2s-.89 2-2 2zM36 6H12v8h24V6z"}]}
{:style {:stroke nil}
:d
"M38 16H10c-3.31 0-6 2.69-6 6v12h8v8h24v-8h8V22c0-3.31-2.69-6-6-6zm-6 22H16V28h16v10zm6-14c-1.11 0-2-.89-2-2s.89-2 2-2c1.11 0 2 .89 2 2s-.89 2-2 2zM36 6H12v8h24V6z"}]}
{:name "Local Restaurant"
{:name "Local Restaurant"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M16.2 26.69l5.66-5.66L7.83 7c-3.12 3.12-3.12 8.19 0 11.31l8.37 8.38zm13.57-3.63c3.05 1.43 7.36.42 10.54-2.76 3.83-3.83 4.56-9.3 1.63-12.23C39 5.14 33.52 5.87 29.7 9.7c-3.18 3.18-4.18 7.49-2.76 10.54-4.45 4.44-19.53 19.52-19.53 19.52l2.83 2.83L24 28.83l13.76 13.76 2.83-2.83L26.83 26l2.94-2.94z"}]}
{:style {:stroke nil}
:d
"M16.2 26.69l5.66-5.66L7.83 7c-3.12 3.12-3.12 8.19 0 11.31l8.37 8.38zm13.57-3.63c3.05 1.43 7.36.42 10.54-2.76 3.83-3.83 4.56-9.3 1.63-12.23C39 5.14 33.52 5.87 29.7 9.7c-3.18 3.18-4.18 7.49-2.76 10.54-4.45 4.44-19.53 19.52-19.53 19.52l2.83 2.83L24 28.83l13.76 13.76 2.83-2.83L26.83 26l2.94-2.94z"}]}
{:name "Local See"
{:name "Local See"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:g
[:circle {:r "6.4"
:cy "24"
:cx "24"}]
[:path
{:style {:stroke nil}
:d
"M18 4l-3.66 4H8c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4h-6.34L30 4H18zm6 30c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10z"}]]}
[:circle {:r "6.4"
:cy "24"
:cx "24"}]
[:path
{:style {:stroke nil}
:d
"M18 4l-3.66 4H8c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4h-6.34L30 4H18zm6 30c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10z"}]]}
{:name "Local Shipping"
{:name "Local Shipping"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 16h-6V8H6c-2.21 0-4 1.79-4 4v22h4c0 3.31 2.69 6 6 6s6-2.69 6-6h12c0 3.31 2.69 6 6 6s6-2.69 6-6h4V24l-6-8zM12 37c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm27-18l3.93 5H34v-5h5zm-3 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}]}
{:style {:stroke nil}
:d
"M40 16h-6V8H6c-2.21 0-4 1.79-4 4v22h4c0 3.31 2.69 6 6 6s6-2.69 6-6h12c0 3.31 2.69 6 6 6s6-2.69 6-6h4V24l-6-8zM12 37c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm27-18l3.93 5H34v-5h5zm-3 18c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z"}]}
{:name "Local Taxi"
{:name "Local Taxi"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M37.84 12.02C37.43 10.84 36.31 10 35 10h-5V6H18v4h-5c-1.31 0-2.43.84-2.84 2.02L6 24v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V24l-4.16-11.98zM13 32c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 22l3-9h22l3 9H10z"}]}
{:style {:stroke nil}
:d
"M37.84 12.02C37.43 10.84 36.31 10 35 10h-5V6H18v4h-5c-1.31 0-2.43.84-2.84 2.02L6 24v16c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2v-2h24v2c0 1.1.9 2 2 2h2c1.11 0 2-.9 2-2V24l-4.16-11.98zM13 32c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm22 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM10 22l3-9h22l3 9H10z"}]}
{:name "Location History"
{:name "Location History"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 4H10C7.79 4 6 5.79 6 8v28c0 2.21 1.79 4 4 4h8l6 6 6-6h8c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm-14 6.6c2.98 0 5.4 2.42 5.4 5.4 0 2.98-2.42 5.4-5.4 5.4-2.98 0-5.4-2.42-5.4-5.4 0-2.98 2.42-5.4 5.4-5.4zM36 32H12v-1.8c0-4 8-6.2 12-6.2s12 2.2 12 6.2V32z"}]}
{:style {:stroke nil}
:d
"M38 4H10C7.79 4 6 5.79 6 8v28c0 2.21 1.79 4 4 4h8l6 6 6-6h8c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zm-14 6.6c2.98 0 5.4 2.42 5.4 5.4 0 2.98-2.42 5.4-5.4 5.4-2.98 0-5.4-2.42-5.4-5.4 0-2.98 2.42-5.4 5.4-5.4zM36 32H12v-1.8c0-4 8-6.2 12-6.2s12 2.2 12 6.2V32z"}]}
{:name "Map"
{:name "Map"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M41 6c-.11 0-.21.01-.31.05L30 10.2 18 6 6.73 9.8c-.42.14-.73.5-.73.96V41c0 .55.45 1 1 1 .11 0 .21-.01.31-.05L18 37.8 30 42l11.28-3.79c.42-.15.72-.51.72-.97V7c0-.55-.45-1-1-1zM30 38l-12-4.21V10l12 4.21V38z"}]}
{:style {:stroke nil}
:d
"M41 6c-.11 0-.21.01-.31.05L30 10.2 18 6 6.73 9.8c-.42.14-.73.5-.73.96V41c0 .55.45 1 1 1 .11 0 .21-.01.31-.05L18 37.8 30 42l11.28-3.79c.42-.15.72-.51.72-.97V7c0-.55-.45-1-1-1zM30 38l-12-4.21V10l12 4.21V38z"}]}
{:name "My Location"
{:name "My Location"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 16c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm17.88 6C40.96 13.66 34.34 7.04 26 6.12V2h-4v4.12C13.66 7.04 7.04 13.66 6.12 22H2v4h4.12c.92 8.34 7.54 14.96 15.88 15.88V46h4v-4.12c8.34-.92 14.96-7.54 15.88-15.88H46v-4h-4.12zM24 38c-7.73 0-14-6.27-14-14s6.27-14 14-14 14 6.27 14 14-6.27 14-14 14z"}]}
{:style {:stroke nil}
:d
"M24 16c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm17.88 6C40.96 13.66 34.34 7.04 26 6.12V2h-4v4.12C13.66 7.04 7.04 13.66 6.12 22H2v4h4.12c.92 8.34 7.54 14.96 15.88 15.88V46h4v-4.12c8.34-.92 14.96-7.54 15.88-15.88H46v-4h-4.12zM24 38c-7.73 0-14-6.27-14-14s6.27-14 14-14 14 6.27 14 14-6.27 14-14 14z"}]}
{:name "Navigation"
{:name "Navigation"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d "M24 4L9 40.59 10.41 42 24 36l13.59 6L39 40.59z"}]}
{:style {:stroke nil}
:d "M24 4L9 40.59 10.41 42 24 36l13.59 6L39 40.59z"}]}
{:name "Pin Drop"
{:name "Pin Drop"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M36 16c0-6.63-5.37-12-12-12S12 9.37 12 16c0 9 12 22 12 22s12-13 12-22zm-16 0c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zM10 40v4h28v-4H10z"}]}
{:style {:stroke nil}
:d
"M36 16c0-6.63-5.37-12-12-12S12 9.37 12 16c0 9 12 22 12 22s12-13 12-22zm-16 0c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zM10 40v4h28v-4H10z"}]}
{:name "Place"
{:name "Place"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"}]}
{:style {:stroke nil}
:d
"M24 4c-7.73 0-14 6.27-14 14 0 10.5 14 26 14 26s14-15.5 14-26c0-7.73-6.27-14-14-14zm0 19c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z"}]}
{:name "Rate Review"
{:name "Rate Review"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM12 28v-4.95L25.76 9.29c.39-.39 1.02-.39 1.41 0l3.54 3.54c.39.39.39 1.02 0 1.41L16.95 28H12zm24 0H21l4-4h11v4z"}]}
{:style {:stroke nil}
:d
"M40 4H8C5.79 4 4.02 5.79 4.02 8L4 44l8-8h28c2.21 0 4-1.79 4-4V8c0-2.21-1.79-4-4-4zM12 28v-4.95L25.76 9.29c.39-.39 1.02-.39 1.41 0l3.54 3.54c.39.39.39 1.02 0 1.41L16.95 28H12zm24 0H21l4-4h11v4z"}]}
{:name "Restaurant Menu"
{:name "Restaurant Menu"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M16.2 26.69l5.66-5.66L7.83 7c-3.12 3.12-3.12 8.19 0 11.31l8.37 8.38zm13.57-3.63c3.05 1.43 7.36.42 10.54-2.76 3.83-3.83 4.56-9.3 1.63-12.23C39 5.14 33.52 5.87 29.7 9.7c-3.18 3.18-4.18 7.49-2.76 10.54-4.45 4.44-19.53 19.52-19.53 19.52l2.83 2.83L24 28.83l13.76 13.76 2.83-2.83L26.83 26l2.94-2.94z"}]}
{:style {:stroke nil}
:d
"M16.2 26.69l5.66-5.66L7.83 7c-3.12 3.12-3.12 8.19 0 11.31l8.37 8.38zm13.57-3.63c3.05 1.43 7.36.42 10.54-2.76 3.83-3.83 4.56-9.3 1.63-12.23C39 5.14 33.52 5.87 29.7 9.7c-3.18 3.18-4.18 7.49-2.76 10.54-4.45 4.44-19.53 19.52-19.53 19.52l2.83 2.83L24 28.83l13.76 13.76 2.83-2.83L26.83 26l2.94-2.94z"}]}
{:name "Satellite"
{:name "Satellite"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM10 9.98h6c0 3.31-2.69 6.02-6 6.02V9.98zM10 24v-4c5.52 0 10-4.5 10-10.02h4C24 17.71 17.73 24 10 24zm0 12l7-9 5 6.01L29 24l9 12H10z"}]}
{:style {:stroke nil}
:d
"M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM10 9.98h6c0 3.31-2.69 6.02-6 6.02V9.98zM10 24v-4c5.52 0 10-4.5 10-10.02h4C24 17.71 17.73 24 10 24zm0 12l7-9 5 6.01L29 24l9 12H10z"}]}
{:name "Store Mall Directory"
{:name "Store Mall Directory"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 8H8v4h32V8zm2 20v-4l-2-10H8L6 24v4h2v12h20V28h8v12h4V28h2zm-18 8H12v-8h12v8z"}]}
{:style {:stroke nil}
:d
"M40 8H8v4h32V8zm2 20v-4l-2-10H8L6 24v4h2v12h20V28h8v12h4V28h2zm-18 8H12v-8h12v8z"}]}
{:name "Terrain"
{:name "Terrain"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M28 12l-7.5 10 5.7 7.6L23 32c-3.38-4.5-9-12-9-12L2 36h44L28 12z"}]}
{:style {:stroke nil}
:d
"M28 12l-7.5 10 5.7 7.6L23 32c-3.38-4.5-9-12-9-12L2 36h44L28 12z"}]}
{:name "Traffic"
{:name "Traffic"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728410"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
:d
"M40 20h-6v-2.28c3.45-.89 6-3.99 6-7.72h-6V8c0-1.1-.89-2-2-2H16c-1.1 0-2 .9-2 2v2H8c0 3.72 2.56 6.83 6 7.72V20H8c0 3.72 2.56 6.83 6 7.72V30H8c0 3.72 2.56 6.83 6 7.72V40c0 1.1.9 2 2 2h16c1.11 0 2-.9 2-2v-2.28c3.45-.89 6-3.99 6-7.72h-6v-2.28c3.45-.89 6-4 6-7.72zM24 38c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"}]}])
{:style {:stroke nil}
:d
"M40 20h-6v-2.28c3.45-.89 6-3.99 6-7.72h-6V8c0-1.1-.89-2-2-2H16c-1.1 0-2 .9-2 2v2H8c0 3.72 2.56 6.83 6 7.72V20H8c0 3.72 2.56 6.83 6 7.72V30H8c0 3.72 2.56 6.83 6 7.72V40c0 1.1.9 2 2 2h16c1.11 0 2-.9 2-2v-2.28c3.45-.89 6-3.99 6-7.72h-6v-2.28c3.45-.89 6-4 6-7.72zM24 38c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z"}]}])

View file

@ -8,6 +8,7 @@
[{:name "Apps"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Arrow Back"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Arrow Drop Down"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil}
:d "M14 20l10 10 10-10z"}]}
@ -33,6 +36,7 @@
{:name "Arrow Drop Down Circle"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -42,6 +46,7 @@
{:name "Arrow Drop Up"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path {:style {:stroke nil}
:d "M14 28l10-10 10 10z"}]}
@ -49,6 +54,7 @@
{:name "Arrow Forward"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -58,6 +64,7 @@
{:name "Cancel"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -67,6 +74,7 @@
{:name "Check"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -75,6 +83,7 @@
{:name "Chevron Left"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -83,6 +92,7 @@
{:name "Chevron Right"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -91,6 +101,7 @@
{:name "Close"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -100,6 +111,7 @@
{:name "Expand Less"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -108,6 +120,7 @@
{:name "Expand More"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -116,6 +129,7 @@
{:name "Fullscreen"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -125,6 +139,7 @@
{:name "Fullscreen Exit"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -134,6 +149,7 @@
{:name "Menu"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -142,6 +158,7 @@
{:name "More Horiz"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -151,6 +168,7 @@
{:name "More Vert"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -160,6 +178,7 @@
{:name "Refresh"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -169,6 +188,7 @@
{:name "Unfold Less"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -178,6 +198,7 @@
{:name "Unfold More"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728411"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,6 +8,7 @@
[{:name "ADB"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Bluetooth Audio"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Disc Full"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "DND Forwardslash"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -44,6 +48,7 @@
{:name "Do Not Disturb"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +58,7 @@
{:name "Drive ETA"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -62,6 +68,7 @@
{:name "Event Available"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -71,6 +78,7 @@
{:name "Event Busy"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -80,6 +88,7 @@
{:name "Event Note"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -89,6 +98,7 @@
{:name "Folder Special"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -98,6 +108,7 @@
{:name "MMS"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -107,6 +118,7 @@
{:name "More"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -116,6 +128,7 @@
{:name "Network Locked"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -125,6 +138,7 @@
{:name "Network Blueooth Speaker"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -134,6 +148,7 @@
{:name "Phone Forwarded"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -143,6 +158,7 @@
{:name "Phone In Talk"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -152,6 +168,7 @@
{:name "Phone Locked"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -161,6 +178,7 @@
{:name "Phone Missed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -170,6 +188,7 @@
{:name "Phone Paused"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -179,6 +198,7 @@
{:name "Play Download"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -188,6 +208,7 @@
{:name "Play Install"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -197,6 +218,7 @@
{:name "SD Card"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -206,6 +228,7 @@
{:name "Sim Card Alert"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -215,6 +238,7 @@
{:name "SMS"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -224,6 +248,7 @@
{:name "SMS Failed"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -233,6 +258,7 @@
{:name "Sync"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -242,6 +268,7 @@
{:name "Sync Disabled"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -251,6 +278,7 @@
{:name "Sync Problem"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -260,6 +288,7 @@
{:name "System Update"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -269,6 +298,7 @@
{:name "Tap And Play"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -278,6 +308,7 @@
{:name "Time To Leave"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -287,6 +318,7 @@
{:name "Vibration"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -296,6 +328,7 @@
{:name "Voice Chat"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -305,6 +338,7 @@
{:name "VPN Lock"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728412"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -8,143 +8,167 @@
[{:name "Cake"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M24 12c2.21 0 4-1.79 4-4 0-.75-.21-1.46-.57-2.06L24 0l-3.43 5.94C20.21 6.54 20 7.25 20 8c0 2.21 1.79 4 4 4zm9.19 19.97l-2.15-2.15-2.16 2.15c-2.61 2.61-7.17 2.61-9.78 0l-2.15-2.15-2.16 2.15C13.5 33.28 11.77 34 9.92 34c-1.45 0-2.8-.46-3.92-1.23V42c0 1.1.9 2 2 2h32c1.1 0 2-.9 2-2v-9.23c-1.12.77-2.46 1.23-3.92 1.23-1.85 0-3.58-.72-4.89-2.03zM36 18H26v-4h-4v4H12c-3.31 0-6 2.69-6 6v3.08C6 29.24 7.76 31 9.92 31c1.05 0 2.03-.41 2.77-1.15l4.28-4.27 4.27 4.26c1.48 1.48 4.06 1.48 5.54 0l4.28-4.26 4.27 4.26c.74.74 1.72 1.15 2.77 1.15 2.16 0 3.92-1.76 3.92-3.92V24c-.02-3.31-2.71-6-6.02-6z" :style {:stroke nil}}]}
{:name "Domain"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M24 14V6H4v36h40V14H24zM12 38H8v-4h4v4zm0-8H8v-4h4v4zm0-8H8v-4h4v4zm0-8H8v-4h4v4zm8 24h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm20 24H24v-4h4v-4h-4v-4h4v-4h-4v-4h16v20zm-4-16h-4v4h4v-4zm0 8h-4v4h4v-4z" :style {:stroke nil}}]}
{:name "Group"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M32 22c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm-16 0c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm0 4c-4.67 0-14 2.34-14 7v5h28v-5c0-4.66-9.33-7-14-7zm16 0c-.58 0-1.23.04-1.93.11C32.39 27.78 34 30.03 34 33v5h12v-5c0-4.66-9.33-7-14-7z" :style {:stroke nil}}]}
{:name "Group Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M16 20h-6v-6H6v6H0v4h6v6h4v-6h6v-4zm20 2c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-.64 0-1.25.1-1.83.29 1.13 1.62 1.81 3.59 1.81 5.71s-.68 4.09-1.81 5.71c.58.19 1.19.29 1.83.29zm-10 0c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm13.24 4.32C40.9 27.77 42 29.64 42 32v4h6v-4c0-3.08-4.75-4.97-8.76-5.68zM26 26c-4 0-12 2-12 6v4h24v-4c0-4-8-6-12-6z" :style {:stroke nil}}]}
{:name "Location City"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M30 22V10l-6-6-6 6v4H6v28h36V22H30zM14 38h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm12 16h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm0-8h-4v-4h4v4zm12 24h-4v-4h4v4zm0-8h-4v-4h4v4z" :style {:stroke nil}}]}
{:name "Mood"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M23.99 4C12.94 4 4 12.95 4 24s8.94 20 19.99 20C35.04 44 44 35.05 44 24S35.04 4 23.99 4zM24 40c-8.84 0-16-7.16-16-16S15.16 8 24 8s16 7.16 16 16-7.16 16-16 16zm7-18c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-14 0c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm7 13c4.66 0 8.61-2.91 10.21-7H13.79c1.6 4.09 5.55 7 10.21 7z" :style {:stroke nil}}]}
{:name "Notifications"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M23 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm13-12V21c0-6.15-4.27-11.28-10-12.64V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36C14.27 9.72 10 14.85 10 21v11l-4 4v2h34v-2l-4-4z" :style {:stroke nil}}]}
{:name "Notifications None"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M23 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm13-12V21c0-6.15-4.27-11.28-10-12.64V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36C14.27 9.72 10 14.85 10 21v11l-4 4v2h34v-2l-4-4zm-4 2H14V21c0-4.97 4.03-9 9-9s9 4.03 9 9v13z" :style {:stroke nil}}]}
{:name "Notifications Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M23 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm13-23c0-6.15-4.27-11.28-10-12.64V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36c-1.02.24-1.98.64-2.89 1.11L36 28.36V21zm-.54 17l4 4L42 39.45 8.55 6 6 8.55l5.84 5.84C10.68 16.32 10 18.58 10 21v11l-4 4v2h29.46z" :style {:stroke nil}}]}
{:name "Notifications On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M13.16 7.16L10.3 4.3C5.51 7.95 2.35 13.59 2.05 20h4c.31-5.3 3.04-9.94 7.11-12.84zM39.95 20h4c-.3-6.41-3.46-12.05-8.25-15.7l-2.85 2.85c4.06 2.91 6.79 7.55 7.1 12.85zM36 21c0-6.15-4.27-11.28-10-12.64V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36C14.27 9.72 10 14.85 10 21v11l-4 4v2h34v-2l-4-4V21zM23 44c.28 0 .55-.03.81-.08 1.3-.27 2.37-1.17 2.88-2.36.2-.48.31-1 .31-1.56h-8c0 2.21 1.79 4 4 4z" :style {:stroke nil}}]}
{:name "Notifications Paused"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M23 44c2.21 0 4-1.79 4-4h-8c0 2.21 1.79 4 4 4zm13-12V21c0-6.15-4.27-11.28-10-12.64V7c0-1.66-1.34-3-3-3s-3 1.34-3 3v1.36C14.27 9.72 10 14.85 10 21v11l-4 4v2h34v-2l-4-4zm-8-12.4l-5.6 6.8H28V30H18v-3.6l5.6-6.8H18V16h10v3.6z" :style {:stroke nil}}]}
{:name "Pages"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M6 10v12h10l-2-8 8 2V6H10c-2.21 0-4 1.79-4 4zm10 16H6v12c0 2.21 1.79 4 4 4h12V32l-8 2 2-8zm18 8l-8-2v10h12c2.21 0 4-1.79 4-4V26H32l2 8zm4-28H26v10l8-2-2 8h10V10c0-2.21-1.79-4-4-4z" :style {:stroke nil}}]}
{:name "Party Mode"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M40 8h-6.34L30 4H18l-3.66 4H8c-2.21 0-4 1.79-4 4v24c0 2.21 1.79 4 4 4h32c2.21 0 4-1.79 4-4V12c0-2.21-1.79-4-4-4zm-16 6c3.26 0 6.13 1.59 7.96 4H24c-3.31 0-6 2.69-6 6 0 .71.14 1.37.37 2H14.2c-.13-.65-.2-1.31-.2-2 0-5.52 4.48-10 10-10zm0 20c-3.26 0-6.13-1.58-7.95-4H24c3.31 0 6-2.69 6-6 0-.7-.14-1.37-.37-2h4.17c.13.65.2 1.31.2 2 0 5.52-4.48 10-10 10z" :style {:stroke nil}}]}
{:name "People"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M32 22c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm-16 0c3.31 0 5.98-2.69 5.98-6s-2.67-6-5.98-6c-3.31 0-6 2.69-6 6s2.69 6 6 6zm0 4c-4.67 0-14 2.34-14 7v5h28v-5c0-4.66-9.33-7-14-7zm16 0c-.58 0-1.23.04-1.93.11C32.39 27.78 34 30.03 34 33v5h12v-5c0-4.66-9.33-7-14-7z" :style {:stroke nil}}]}
{:name "People Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M33 26c-2.41 0-6.15.67-9 2.01-2.85-1.34-6.59-2.01-9-2.01-4.33 0-13 2.17-13 6.5V38h44v-5.5c0-4.33-8.67-6.5-13-6.5zm-8 9H5v-2.5c0-1.07 5.12-3.5 10-3.5s10 2.43 10 3.5V35zm18 0H28v-2.5c0-.91-.4-1.72-1.04-2.44C28.73 29.46 30.89 29 33 29c4.88 0 10 2.43 10 3.5V35zM15 24c3.87 0 7-3.14 7-7s-3.13-7-7-7c-3.86 0-7 3.14-7 7s3.14 7 7 7zm0-11c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm18 11c3.87 0 7-3.14 7-7s-3.13-7-7-7c-3.86 0-7 3.14-7 7s3.14 7 7 7zm0-11c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4z" :style {:stroke nil}}]}
{:name "Person"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M24 24c4.42 0 8-3.59 8-8 0-4.42-3.58-8-8-8s-8 3.58-8 8c0 4.41 3.58 8 8 8zm0 4c-5.33 0-16 2.67-16 8v4h32v-4c0-5.33-10.67-8-16-8z" :style {:stroke nil}}]}
{:name "Person Add"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M30 24c4.42 0 8-3.59 8-8 0-4.42-3.58-8-8-8s-8 3.58-8 8c0 4.41 3.58 8 8 8zm-18-4v-6H8v6H2v4h6v6h4v-6h6v-4h-6zm18 8c-5.33 0-16 2.67-16 8v4h32v-4c0-5.33-10.67-8-16-8z" :style {:stroke nil}}]}
{:name "Person Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M24 11.8c2.32 0 4.2 1.88 4.2 4.2s-1.88 4.2-4.2 4.2-4.2-1.88-4.2-4.2 1.88-4.2 4.2-4.2m0 18c5.95 0 12.2 2.91 12.2 4.2v2.2H11.8V34c0-1.29 6.25-4.2 12.2-4.2M24 8c-4.42 0-8 3.58-8 8 0 4.41 3.58 8 8 8s8-3.59 8-8c0-4.42-3.58-8-8-8zm0 18c-5.33 0-16 2.67-16 8v6h32v-6c0-5.33-10.67-8-16-8z" :style {:stroke nil}}]}
{:name "Plus One"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M20 16h-4v8H8v4h8v8h4v-8h8v-4h-8zm9-3.84v3.64l5-1V36h4V10z" :style {:stroke nil}}]}
{:name "Poll"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M38 6H10c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h28c2.21 0 4-1.79 4-4V10c0-2.21-1.79-4-4-4zM18 34h-4V20h4v14zm8 0h-4V14h4v20zm8 0h-4v-8h4v8z" :style {:stroke nil}}]}
{:name "Public"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M24 4C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm-2 35.86C14.11 38.88 8 32.16 8 24c0-1.23.15-2.43.42-3.58L18 30v2c0 2.21 1.79 4 4 4v3.86zm13.79-5.07C35.28 33.17 33.78 32 32 32h-2v-6c0-1.1-.9-2-2-2H16v-4h4c1.1 0 2-.9 2-2v-4h4c2.21 0 4-1.79 4-4v-.83c5.86 2.37 10 8.11 10 14.83 0 4.16-1.6 7.94-4.21 10.79z" :style {:stroke nil}}]}
{:name "School"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M10 26.36v8L24 42l14-7.64v-8L24 34l-14-7.64zM24 6L2 18l22 12 18-9.82V34h4V18L24 6z" :style {:stroke nil}}]}
{:name "Share"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M36 32.17c-1.52 0-2.89.59-3.93 1.54L17.82 25.4c.11-.45.18-.92.18-1.4s-.07-.95-.18-1.4l14.1-8.23c1.07 1 2.5 1.62 4.08 1.62 3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6c0 .48.07.95.18 1.4l-14.1 8.23c-1.07-1-2.5-1.62-4.08-1.62-3.31 0-6 2.69-6 6s2.69 6 6 6c1.58 0 3.01-.62 4.08-1.62l14.25 8.31c-.1.42-.16.86-.16 1.31 0 3.22 2.61 5.83 5.83 5.83s5.83-2.61 5.83-5.83-2.61-5.83-5.83-5.83z" :style {:stroke nil}}]}
{:name "Whats Hot"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728413"
:view-box [0 0 48 48]
:data [:path {:d "M27 1.34s1.48 5.3 1.48 9.6c0 4.12-2.7 7.47-6.83 7.47s-7.25-3.34-7.25-7.47l.05-.72C10.43 15.03 8 21.23 8 28c0 8.84 7.16 16 16 16s16-7.16 16-16c0-10.79-5.19-20.41-13-26.66zM23.42 38c-3.56 0-6.45-2.81-6.45-6.28 0-3.25 2.09-5.53 5.63-6.24s7.2-2.41 9.23-5.15c.78 2.58 1.19 5.3 1.19 8.07 0 5.29-4.3 9.6-9.6 9.6z" :style {:stroke nil}}]}])

View file

@ -8,6 +8,7 @@
[{:name "Check Box"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -17,6 +18,7 @@
{:name "Check Box Outline Blank"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -26,6 +28,7 @@
{:name "Radio Button Off"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -35,6 +38,7 @@
{:name "Radio Button On"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -44,6 +48,7 @@
{:name "Star"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -53,6 +58,7 @@
{:name "Star Half"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}
@ -62,6 +68,7 @@
{:name "Star Outline"
:id (gensym "icon")
:type :icon
:collection #uuid "3efa8416-d9d7-4d3d-b60d-a456b2728414"
:view-box [0 0 48 48]
:data [:path
{:style {:stroke nil}

View file

@ -12,6 +12,7 @@
[uxbox.main.repo.projects]
[uxbox.main.repo.pages]
[uxbox.main.repo.images]
[uxbox.main.repo.icons]
[uxbox.main.repo.colors]
[uxbox.main.repo.impl :as impl]))

View file

@ -0,0 +1,65 @@
;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) 2016 Andrey Antukh <niwi@niwi.nz>
(ns uxbox.main.repo.icons
"A main interface for access to remote resources."
(:require [beicon.core :as rx]
[uxbox.config :refer (url)]
[uxbox.main.repo.impl :refer (request send!)]
[uxbox.util.transit :as t]))
(defmethod request :fetch/icon-collections
[_]
(let [params {:url (str url "/library/icon-collections")
:method :get}]
(send! params)))
(defmethod request :delete/icon-collection
[_ id]
(let [url (str url "/library/icon-collections/" id)]
(send! {:url url :method :delete})))
(defmethod request :create/icon-collection
[_ {:keys [data] :as body}]
(let [body (assoc body :data (t/encode data))
params {:url (str url "/library/icon-collections")
:method :post
:body body}]
(send! params)))
(defmethod request :update/icon-collection
[_ {:keys [id data] :as body}]
(let [body (assoc body :data (t/encode data))
params {:url (str url "/library/icon-collections/" id)
:method :put
:body body}]
(send! params)))
(defmethod request :fetch/icons
[_ {:keys [coll]}]
(let [url (if coll
(str url "/library/icon-collections/" coll "/icons")
(str url "/library/icon-collections/icons"))
params {:url url :method :get}]
(send! params)))
(defmethod request :fetch/icon
[_ {:keys [id]}]
(let [params {:url (str url "/library/icons/" id)
:method :get}]
(send! params)))
(defmethod request :create/icon
[_ body]
(let [params {:url (str url "/library/icons")
:method :post
:body body}]
(send! params)))
(defmethod request :delete/icon
[_ id]
(let [url (str url "/library/icons/" id)]
(send! {:url url :method :delete})))

View file

@ -34,12 +34,13 @@
:undo {}
:profile nil
:workspace nil
:images-by-id library/+images-by-id+
:image-colls-by-id library/+image-collections-by-id+
:images-by-id library/+images-by-id+
:icon-colls-by-id library/+icon-collections-by-id+
:icons-by-id library/+icons-by-id+
:shapes-by-id nil
:elements-by-id nil
:colors-by-id nil
:icons-by-id nil
:projects-by-id nil
:pages-by-id nil})

View file

@ -98,13 +98,14 @@
:auth/recovery (auth/recovery-page (:token params))
:dashboard/projects (dashboard/projects-page)
:dashboard/elements (dashboard/elements-page)
:dashboard/icons (let [{:keys [id type]} params
type (when (str/alpha? type) (keyword type))
id (cond
(str/digits? id) (parse-int id)
(uuid-str? id) (uuid id)
:else nil)]
(dashboard/icons-page type id))
(dashboard/icons-page type id))
:dashboard/images (let [{:keys [id type]} params
type (when (str/alpha? type) (keyword type))

View file

@ -6,9 +6,7 @@
;; Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
(ns uxbox.main.ui.dashboard.icons
(:require [sablono.core :refer-macros [html]]
[rum.core :as rum]
[lentes.core :as l]
(:require [lentes.core :as l]
[cuerdas.core :as str]
[uxbox.main.state :as st]
[uxbox.main.library :as library]
@ -58,19 +56,18 @@
(-> (l/in [:dashboard :icons])
(l/derive st/state)))
(def ^:private collections-map-ref
(-> (comp (l/key :icon-colls-by-id)
(ul/merge library/+icon-collections-by-id+))
(def ^:private collections-ref
(-> (l/key :icon-colls-by-id)
(l/derive st/state)))
(def ^:private collections-ref
(-> (l/lens vals)
(l/derive collections-map-ref)))
(def ^:private icons-ref
(-> (l/key :icons-by-id)
(l/derive st/state)))
(defn- focus-collection
[id]
(-> (l/key id)
(l/derive collections-map-ref)))
;; (defn- focus-collection
;; [id]
;; (-> (l/key id)
;; (l/derive collections-map-ref)))
;; --- Page Title
@ -84,7 +81,7 @@
(letfn [(on-save [e]
(let [dom (mx/ref-node own "input")
name (.-innerText dom)]
#_(rs/emit! (di/rename-collection id (str/trim name)))
(rs/emit! (di/rename-collection id (str/trim name)))
(swap! local assoc :edit false)))
(on-cancel [e]
(swap! local assoc :edit false))
@ -98,9 +95,8 @@
(dom/prevent-default e)
(dom/stop-propagation e)
(on-save e))))
(delete []
#_(rs/emit! (di/delete-collection (:id coll))))
(rs/emit! (di/delete-collection id)))
(on-delete []
(udl/open! :confirm {:on-accept delete}))]
[:div.dashboard-title
@ -115,7 +111,7 @@
[:span.close {:on-click on-cancel} i/close]]
[:span.dashboard-title-field
{:on-double-click on-edit}
(:name coll)])]
(:name coll "Storage")])]
(if (and (not own?) coll)
[:div.edition
(if edit?
@ -125,35 +121,44 @@
;; --- Nav
(defn react-count-icons
[id]
(->> (mx/react icons-ref)
(vals)
(filter #(= id (:collection %)))
(count)))
(mx/defc nav-item
{:mixins [mx/static]}
[collection selected?]
{:mixins [mx/static mx/reactive]}
[{:keys [id type name] :as coll} selected?]
(letfn [(on-click [event]
(let [type (:type collection)
id (:id collection)]
(let [type (or type :own)]
(rs/emit! (di/select-collection type id))))]
(let [icons (count (:icons collection))]
(let [num-icons (react-count-icons id)]
[:li {:on-click on-click
:class-name (when selected? "current")}
[:span.element-title (:name collection)]
[:span.element-title
(if coll name "Storage")]
[:span.element-subtitle
(tr "ds.num-elements" (t/c icons))]])))
(tr "ds.num-elements" (t/c num-icons))]])))
(mx/defc nav-section
{:mixins [mx/static mx/reactive]}
[type selected]
[type selected colls]
(let [own? (= type :own)
builtin? (= type :builtin)
collections (cond->> (mx/react collections-ref)
collections (cond->> (vals colls)
own? (filter #(= :own (:type %)))
builtin? (filter #(= :builtin (:type %)))
own? (sort-by :id))]
own? (sort-by :name))]
[:ul.library-elements
(when own?
[:li
[:a.btn-primary
#_{:on-click #(rs/emit! (di/create-collection))}
"+ New library"]])
{:on-click #(rs/emit! (di/create-collection))}
"+ New collection"]])
(when own?
(nav-item nil (nil? selected)))
(for [coll collections
:let [selected? (= (:id coll) selected)
key (str (:id coll))]]
@ -162,67 +167,60 @@
(mx/defc nav
{:mixins [mx/static]}
[state]
(let [selected (:id state)
type (:type state)
own? (= type :own)
[{:keys [type id] :as state} colls]
(let [own? (= type :own)
builtin? (= type :builtin)]
(letfn [(select-tab [type]
(let [xf (filter #(= type (:type %)))
colls (sequence xf @collections-ref)]
(let [xf (comp (map second)
(filter #(= type (:type %))))
colls (->> (into [] xf colls)
(sort-by :name))]
(if-let [item (first colls)]
(rs/emit! (di/select-collection type (:id item)))
(rs/emit! (di/select-collection type)))))]
[:div.library-bar
[:div.library-bar-inside
[:ul.library-tabs
[:li {:class-name (when builtin? "current")
:on-click (partial select-tab :builtin)}
"STANDARD"]
[:li {:class-name (when own? "current")
:on-click (partial select-tab :own)}
"YOUR LIBRARIES"]]
(nav-section type selected)]])))
"YOUR ICONS"]
[:li {:class-name (when builtin? "current")
:on-click (partial select-tab :builtin)}
"ICONS STORE"]]
(nav-section type id colls)]])))
;; --- Grid
;; (defn grid-render
;; [own]
;; (let [dashboard (mx/react dashboard-ref)
;; coll-type (:collection-type dashboard)
;; coll-id (:collection-id dashboard)
;; own? (= coll-type :own)
;; coll (get library/+icon-collections-by-id+ coll-id)]
;; (when coll
;; (html
;; [:section.dashboard-grid.library
;; (page-title coll)
;; [:div.dashboard-grid-content
;; [:div.dashboard-grid-row
;; (for [icon (:icons coll)]
;; [:div.grid-item.small-item.project-th {}
;; [:span.grid-item-icon (icon/icon-svg icon)]
;; [:h3 (:name icon)]
;; #_[:div.project-th-actions
;; [:div.project-th-icon.edit i/pencil]
;; [:div.project-th-icon.delete i/trash]]])]]]))))
;; (def grid
;; (mx/component
;; {:render grid-render
;; :name "grid"
;; :mixins [mx/static mx/reactive]}))
(mx/defcs grid-form
{:mixins [mx/static]}
[own coll-id]
(letfn [(forward-click [event]
(dom/click (mx/ref-node own "file-input")))
(on-file-selected [event]
(let [files (dom/get-event-files event)]
(rs/emit! (di/create-icons coll-id files))))]
[:div.grid-item.small-item.add-project {:on-click forward-click}
[:span "+ New icon"]
[:input.upload-image-input
{:style {:display "none"}
:multiple true
:ref "file-input"
:value ""
:type "file"
:on-change on-file-selected}]]))
(mx/defc grid-options
[coll]
(let [own? (= (:type coll) :own)]
[{:keys [type] :as coll}]
(let [editable? (or (= type :own)
(nil? coll))]
(letfn [(delete []
#_(rs/emit! (di/delete-selected)))
(rs/emit! (di/delete-selected)))
(on-delete [event]
(udl/open! :confirm {:on-accept delete}))]
;; MULTISELECT OPTIONS BAR
[:div.multiselect-bar
(if own?
(if editable?
[:div.multiselect-nav
#_[:span.move-item.tooltip.tooltip-top
{:alt "Move to"}
@ -245,26 +243,35 @@
(toggle-selection event)))]
[:div.grid-item.small-item.project-th
{:on-click toggle-selection-shifted}
[:span.grid-item-image (icon/icon-svg icon)]
[:div.input-checkbox.check-primary
[:input {:type "checkbox"
:id (:id icon)
:on-click toggle-selection
:checked selected?}]
[:label {:for (:id icon)}]]
[:span.grid-item-image
(case (:type icon)
:icon (icon/icon-svg icon)
:icon-raw (icon/icon-raw-svg icon))]
[:h3 (:name icon)]
#_[:div.project-th-actions
[:div.project-th-icon.edit i/pencil]
[:div.project-th-icon.delete i/trash]]]))
(mx/defc grid
{:mixins [mx/static]}
[state selected {:keys [id type icons] :as coll}]
(let [own? (= type :own)
{:mixins [mx/static mx/reactive]}
[{:keys [selected id type] :as state}]
(let [editable? (or (= type :own) (nil? id))
ordering (:order state)
filtering (:filter state)
icons (->> icons
(remove nil?)
(filter-icons-by filtering)
(sort-icons-by ordering))]
icons (mx/react icons-ref)
icons (->> (vals icons)
(filter #(= id (:collection %)))
(filter-icons-by filtering)
(sort-icons-by ordering))]
[:div.dashboard-grid-content
[:div.dashboard-grid-row
#_(when own?
(grid-form id))
(when editable? (grid-form id))
(for [icon icons
:let [id (:id icon)
selected? (contains? selected id)]]
@ -273,25 +280,21 @@
(mx/defc content
{:mixins [mx/static]}
[state coll]
(let [selected (:selected state)
coll-type (:type coll)
own? (= coll-type :own)]
(when coll
[:section.dashboard-grid.library
(page-title coll)
(grid state selected coll)
(when (seq selected)
(grid-options coll))])))
[{:keys [selected] :as state} coll]
[:section.dashboard-grid.library
(page-title coll)
(grid state)
(when (seq selected)
(grid-options coll))])
;; --- Menu
(mx/defc menu
{:mixins [mx/static]}
[state coll]
{:mixins [mx/static mx/reactive]}
[state {:keys [id] :as coll}]
(let [ordering (:order state :name)
filtering (:filter state "")
icount (count (:icons coll))]
num-icons (react-count-icons id)]
(letfn [(on-term-change [event]
(let [term (-> (dom/get-target event)
(dom/get-value))]
@ -306,10 +309,10 @@
[:div.dashboard-info
;; Counter
[:span.dashboard-icons (tr "ds.num-icons" (t/c icount))]
[:span.dashboard-icons (tr "ds.num-icons" (t/c num-icons))]
;; Sorting
[:div
[:divi
[:span (tr "ds.project-ordering")]
[:select.input-select
{:on-change on-ordering-change
@ -352,42 +355,42 @@
:mixins [mx/static mx/reactive]}
[]
(let [state (mx/react dashboard-ref)
coll-id (:id state)
coll (mx/react (focus-collection coll-id))]
colls (mx/react collections-ref)
coll (get colls (:id state))]
[:main.dashboard-main
(header)
[:section.dashboard-content
(nav state)
(menu state coll)
(nav state colls)
(menu coll)
(content state coll)]]))
;; --- New Icon Lightbox (TODO)
(defn- new-icon-lightbox-render
[own]
(html
[:div.lightbox-body
[:h3 "New icon"]
[:div.row-flex
[:div.lightbox-big-btn
[:span.big-svg i/shapes]
[:span.text "Go to workspace"]
]
[:div.lightbox-big-btn
[:span.big-svg.upload i/exit]
[:span.text "Upload file"]
]
]
[:a.close {:href "#"
:on-click #(do (dom/prevent-default %)
(udl/close!))}
i/close]]))
;; (defn- new-icon-lightbox-render
;; [own]
;; (html
;; [:div.lightbox-body
;; [:h3 "New icon"]
;; [:div.row-flex
;; [:div.lightbox-big-btn
;; [:span.big-svg i/shapes]
;; [:span.text "Go to workspace"]
;; ]
;; [:div.lightbox-big-btn
;; [:span.big-svg.upload i/exit]
;; [:span.text "Upload file"]
;; ]
;; ]
;; [:a.close {:href "#"
;; :on-click #(do (dom/prevent-default %)
;; (udl/close!))}
;; i/close]]))
(def new-icon-lightbox
(mx/component
{:render new-icon-lightbox-render
:name "new-icon-lightbox"}))
;; (def new-icon-lightbox
;; (mx/component
;; {:render new-icon-lightbox-render
;; :name "new-icon-lightbox"}))
(defmethod lbx/render-lightbox :new-icon
[_]
(new-icon-lightbox))
;; (defmethod lbx/render-lightbox :new-icon
;; [_]
;; (new-icon-lightbox))

View file

@ -45,3 +45,12 @@
view-box (apply str (interpose " " view-box))
props {:view-box view-box :id key :key key}]
[:svg props data]))
(mx/defc icon-raw-svg
{:mixins [mx/static]}
[{:keys [content id metadata] :as shape}]
(let [view-box (apply str (interpose " " (:view-box metadata)))
id (str "icon-svg-" id)
props {:view-box view-box :id id
:dangerouslySetInnerHTML {:__html content}}]
[:svg props]))