blob: c8f0b5ab4f7f645dfc20c05fd562073b70055946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(ns tau.components.navigation
(:require
[re-frame.core :as rf]
[tau.events :as events]))
(defn back-button [service-color]
[:div.flex {:class "w-4/5"}
[:button.p-2
{:on-click #(rf/dispatch [::events/history-back])}
[:i.fa-solid.fa-chevron-left
{:style {:color service-color}}]
[:span " Back"]]])
|