mirror of
https://github.com/penpot/penpot.git
synced 2026-05-24 17:33:41 +00:00
30 lines
930 B
Clojure
30 lines
930 B
Clojure
;; 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) KALEIDOS INC
|
|
|
|
(ns app.main.ui.components.button-link
|
|
(:require-macros [app.main.style :as stl])
|
|
(:require
|
|
[app.common.data.macros :as dm]
|
|
[app.util.keyboard :as kbd]
|
|
[rumext.v2 :as mf]))
|
|
|
|
(mf/defc button-link
|
|
{::mf/wrap-props false}
|
|
[{:keys [on-click icon label class]}]
|
|
(let [on-key-down (mf/use-fn
|
|
(mf/deps on-click)
|
|
(fn [event]
|
|
(when (kbd/enter? event)
|
|
(when (fn? on-click)
|
|
(on-click event)))))]
|
|
[:a
|
|
{:class (dm/str class " " (stl/css :button))
|
|
:tab-index "0"
|
|
:on-click on-click
|
|
:on-key-down on-key-down}
|
|
[:span.logo icon]
|
|
label]))
|