mirror of
https://github.com/status-im/status-react.git
synced 2025-01-29 12:16:36 +00:00
18 lines
473 B
Clojure
18 lines
473 B
Clojure
(ns status-im.accessibility-ids)
|
|
|
|
;; Toolbar
|
|
(def toolbar-back-button :toolbar-back-button)
|
|
|
|
;; Drawer
|
|
(def drawer-status-input :drawer-status-input)
|
|
|
|
;; Chat
|
|
(def chat-cancel-response-button :chat-cancel-response-button)
|
|
(def chat-message-input :chat-message-input)
|
|
(def chat-send-button :chat-send-button)
|
|
(defn chat-request-message-button [command-name]
|
|
(keyword (str "request-" (name command-name))))
|
|
|
|
;; Accounts
|
|
(def accounts-create-button :accounts-create-button)
|