Skip to content

Commit fe521ff

Browse files
committed
Add default props
1 parent 58de12e commit fe521ff

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/utils.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,26 @@ const DEFAULT_PROPS_MAP = {
242242
default: /\b0(px)?\b/,
243243
value: null,
244244
},
245+
textDecorationSkipInk: {
246+
default: /\bauto\b/,
247+
value: null,
248+
},
249+
textDecorationThickness: {
250+
default: /\bauto\b/,
251+
value: null,
252+
},
253+
textDecorationStyle: {
254+
default: /\bsolid\b/,
255+
value: null,
256+
},
257+
textDecorationColor: {
258+
default: /\bauto\b/,
259+
value: null,
260+
},
261+
textUnderlineOffset: {
262+
default: /\bauto\b/,
263+
value: null,
264+
},
245265
} as const
246266

247267
const CONVERT_PROPS_MAP = {

0 commit comments

Comments
 (0)