diff --git a/resources/images/icons2/20x20/check-small@2x.png b/resources/images/icons2/20x20/check-small@2x.png new file mode 100644 index 0000000000..3f097233a0 Binary files /dev/null and b/resources/images/icons2/20x20/check-small@2x.png differ diff --git a/resources/images/icons2/20x20/check-small@3x.png b/resources/images/icons2/20x20/check-small@3x.png new file mode 100644 index 0000000000..e51e59afba Binary files /dev/null and b/resources/images/icons2/20x20/check-small@3x.png differ diff --git a/src/quo2/components/selectors/selectors.cljs b/src/quo2/components/selectors/selectors.cljs index a635953e05..52c783c511 100644 --- a/src/quo2/components/selectors/selectors.cljs +++ b/src/quo2/components/selectors/selectors.cljs @@ -39,7 +39,7 @@ [rn/view {:style {:height 20 :width 20}} - [icons/icon :main-icons2/check + [icons/icon :main-icons2/check-small {:size 20 :color (colors/theme-colors (colors/alpha colors/neutral-100 (if disabled? 0.3 1)) @@ -53,8 +53,8 @@ [rn/view {:style (merge container-style - {:height 21 - :width 21})} + {:height 20 + :width 20})} [rn/view {:style {:flex 1 :border-radius 6 @@ -72,9 +72,9 @@ [rn/view {:style {:height 20 :width 20}} - [icons/icon :main-icons2/check + [icons/icon :main-icons2/check-small {:size 20 - :color (colors/alpha colors/white (if disabled? 0.3 1))}]])]]]))) + :color colors/white}]])]]]))) (defn radio [{:keys [default-checked?]}] (let [checked? (reagent/atom (or default-checked? false))]