diff --git a/resources/images/icons2/16x16/locked@2x.png b/resources/images/icons2/16x16/locked@2x.png index e584f843fa..3c3b428595 100644 Binary files a/resources/images/icons2/16x16/locked@2x.png and b/resources/images/icons2/16x16/locked@2x.png differ diff --git a/resources/images/icons2/16x16/locked@3x.png b/resources/images/icons2/16x16/locked@3x.png index bbf954d61f..e81cdb527b 100644 Binary files a/resources/images/icons2/16x16/locked@3x.png and b/resources/images/icons2/16x16/locked@3x.png differ diff --git a/resources/images/icons2/20x20/locked@2x.png b/resources/images/icons2/20x20/locked@2x.png index 1b3458131a..91f64b8282 100644 Binary files a/resources/images/icons2/20x20/locked@2x.png and b/resources/images/icons2/20x20/locked@2x.png differ diff --git a/resources/images/icons2/20x20/locked@3x.png b/resources/images/icons2/20x20/locked@3x.png index 6f110e9b6c..189c97d5e8 100644 Binary files a/resources/images/icons2/20x20/locked@3x.png and b/resources/images/icons2/20x20/locked@3x.png differ diff --git a/src/quo2/components/tags/permission_tag.cljs b/src/quo2/components/tags/permission_tag.cljs index 25d8aca170..6be49d7a06 100644 --- a/src/quo2/components/tags/permission_tag.cljs +++ b/src/quo2/components/tags/permission_tag.cljs @@ -132,7 +132,7 @@ (defn tag [_ _] - (fn [{:keys [locked tokens size background-color on-press] + (fn [{:keys [locked? tokens size background-color on-press] :or {size 24}}] [base-tag/base-tag {:background-color background-color @@ -151,7 +151,7 @@ 32 16 24 12)} [icons/icon - (if locked + (if locked? :i/locked :i/unlocked) {:resize-mode :center diff --git a/src/status_im2/contexts/quo_preview/drawers/permission_drawers.cljs b/src/status_im2/contexts/quo_preview/drawers/permission_drawers.cljs index 0abdf36535..7b49d2fc90 100644 --- a/src/status_im2/contexts/quo_preview/drawers/permission_drawers.cljs +++ b/src/status_im2/contexts/quo_preview/drawers/permission_drawers.cljs @@ -10,7 +10,7 @@ [quo/text {:style {:margin-right 4}} "Hold"] [quo/permission-tag {:size 24 - :locked false + :locked? false :tokens [{:id 1 :group [{:id 1 :token-icon (resources/get-mock-image :status-logo)} {:id 2 :token-icon (resources/get-mock-image :status-logo)} @@ -25,7 +25,7 @@ :margin-right 4}} "Or"] [quo/permission-tag {:size 24 - :locked false + :locked? false :tokens [{:id 1 :group [{:id 1 :token-icon (resources/get-mock-image :status-logo)} {:id 2 :token-icon (resources/get-mock-image :status-logo)}