diff --git a/src/cljs/auto_ap/views/components/switch-field.cljs b/src/cljs/auto_ap/views/components/switch-field.cljs deleted file mode 100644 index 039742db..00000000 --- a/src/cljs/auto_ap/views/components/switch-field.cljs +++ /dev/null @@ -1,6 +0,0 @@ -(ns auto-ap.views.components.switch-field) - -(defn switch-field [{:keys [id label on-change checked]}] - [:<> - [:input.switch {:type "checkbox" :id id :on-change on-change :checked checked}] - [:label {:for id} label]])