From 0a106c260418ee2537ff703e86130c6e66fe6103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Schr=C3=B6dl?= Date: Thu, 7 Aug 2025 12:16:18 +0200 Subject: [PATCH] :bug: Fix import of borderWidth (#7084) --- common/src/app/common/types/token.cljc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/src/app/common/types/token.cljc b/common/src/app/common/types/token.cljc index 049866a689..f6c93d117c 100644 --- a/common/src/app/common/types/token.cljc +++ b/common/src/app/common/types/token.cljc @@ -37,8 +37,6 @@ :font-family "fontFamilies" :font-size "fontSizes" :letter-spacing "letterSpacing" - :text-case "textCase" - :text-decoration "textDecoration" :number "number" :opacity "opacity" :other "other" @@ -46,7 +44,9 @@ :sizing "sizing" :spacing "spacing" :string "string" - :stroke-width "strokeWidth"}) + :stroke-width "borderWidth" + :text-case "textCase" + :text-decoration "textDecoration"}) (def dtcg-token-type->token-type (set/map-invert token-type->dtcg-token-type))