mirror of
https://github.com/penpot/penpot.git
synced 2026-05-14 20:43:55 +00:00
17 lines
543 B
Clojure
17 lines
543 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.flex-controls
|
|
(:require
|
|
[app.common.data.macros :as dm]
|
|
[app.main.ui.flex-controls.gap :as fcg]
|
|
[app.main.ui.flex-controls.margin :as fcm]
|
|
[app.main.ui.flex-controls.padding :as fcp]))
|
|
|
|
(dm/export fcg/gap-control)
|
|
(dm/export fcm/margin-control)
|
|
(dm/export fcp/padding-control)
|