@seed-design/rootage-artifacts 0.0.0-alpha-20260414104312

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/README.md +10 -0
  2. package/collections.yaml +24 -0
  3. package/color.yaml +855 -0
  4. package/components/action-button.yaml +460 -0
  5. package/components/action-chip.yaml +150 -0
  6. package/components/action-sheet-close-button.yaml +45 -0
  7. package/components/action-sheet-item.yaml +52 -0
  8. package/components/action-sheet.yaml +115 -0
  9. package/components/avatar-stack.yaml +86 -0
  10. package/components/avatar.yaml +161 -0
  11. package/components/badge.yaml +210 -0
  12. package/components/bottom-sheet-close-button.yaml +38 -0
  13. package/components/bottom-sheet-handle.yaml +48 -0
  14. package/components/bottom-sheet.yaml +156 -0
  15. package/components/callout.yaml +213 -0
  16. package/components/checkbox-group.yaml +17 -0
  17. package/components/checkbox.yaml +59 -0
  18. package/components/checkmark.yaml +152 -0
  19. package/components/chip-tablist.yaml +28 -0
  20. package/components/chip.yaml +267 -0
  21. package/components/content-placeholder.yaml +45 -0
  22. package/components/contextual-floating-button.yaml +161 -0
  23. package/components/control-chip.yaml +169 -0
  24. package/components/dialog.yaml +131 -0
  25. package/components/divider.yaml +17 -0
  26. package/components/extended-action-sheet-close-button.yaml +48 -0
  27. package/components/extended-action-sheet-item.yaml +67 -0
  28. package/components/extended-action-sheet.yaml +134 -0
  29. package/components/extended-fab.yaml +109 -0
  30. package/components/fab.yaml +46 -0
  31. package/components/field-label.yaml +33 -0
  32. package/components/field.yaml +159 -0
  33. package/components/floating-action-button.yaml +99 -0
  34. package/components/help-bubble.yaml +127 -0
  35. package/components/identity-placeholder.yaml +23 -0
  36. package/components/image-frame-floater.yaml +18 -0
  37. package/components/image-frame-indicator.yaml +42 -0
  38. package/components/image-frame-reaction-button.yaml +60 -0
  39. package/components/image-frame.yaml +37 -0
  40. package/components/inline-banner.yaml +197 -0
  41. package/components/input-button.yaml +171 -0
  42. package/components/link-content.yaml +61 -0
  43. package/components/list-header.yaml +43 -0
  44. package/components/list-item.yaml +149 -0
  45. package/components/manner-temp-badge.yaml +102 -0
  46. package/components/manner-temp.yaml +80 -0
  47. package/components/menu-item.yaml +156 -0
  48. package/components/menu-sheet-close-button.yaml +48 -0
  49. package/components/menu-sheet-item.yaml +104 -0
  50. package/components/menu-sheet.yaml +136 -0
  51. package/components/menu.yaml +117 -0
  52. package/components/notification-badge.yaml +74 -0
  53. package/components/page-banner.yaml +302 -0
  54. package/components/progress-circle.yaml +105 -0
  55. package/components/radio-group.yaml +17 -0
  56. package/components/radio.yaml +59 -0
  57. package/components/radiomark.yaml +113 -0
  58. package/components/reaction-button.yaml +161 -0
  59. package/components/scroll-fog.yaml +23 -0
  60. package/components/segmented-control-indicator.yaml +38 -0
  61. package/components/segmented-control-item.yaml +76 -0
  62. package/components/segmented-control.yaml +23 -0
  63. package/components/select-box-checkmark.yaml +52 -0
  64. package/components/select-box-group.yaml +20 -0
  65. package/components/select-box.yaml +176 -0
  66. package/components/skeleton.yaml +73 -0
  67. package/components/slider-thumb.yaml +45 -0
  68. package/components/slider-tick.yaml +27 -0
  69. package/components/slider.yaml +169 -0
  70. package/components/snackbar.yaml +137 -0
  71. package/components/switch.yaml +66 -0
  72. package/components/switchmark.yaml +147 -0
  73. package/components/tab.yaml +57 -0
  74. package/components/tablist.yaml +64 -0
  75. package/components/tag-group-item.yaml +119 -0
  76. package/components/tag-group.yaml +40 -0
  77. package/components/text-button.yaml +46 -0
  78. package/components/text-input.yaml +234 -0
  79. package/components/toggle-button.yaml +201 -0
  80. package/components/top-navigation.yaml +106 -0
  81. package/components/typography.yaml +380 -0
  82. package/dimension.yaml +88 -0
  83. package/duration.yaml +29 -0
  84. package/font-size.yaml +77 -0
  85. package/font-weight.yaml +16 -0
  86. package/gradient.yaml +134 -0
  87. package/line-height.yaml +77 -0
  88. package/package.json +20 -0
  89. package/radius.yaml +40 -0
  90. package/shadow.yaml +63 -0
  91. package/timing-function.yaml +37 -0
@@ -0,0 +1,80 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: manner-temp
5
+ name: Manner Temp
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ gap:
12
+ type: dimension
13
+ label:
14
+ properties:
15
+ fontSize:
16
+ type: dimension
17
+ lineHeight:
18
+ type: dimension
19
+ fontWeight:
20
+ type: number
21
+ color:
22
+ type: color
23
+ emote:
24
+ properties:
25
+ size:
26
+ type: dimension
27
+ bleed:
28
+ type: dimension
29
+ definitions:
30
+ base:
31
+ enabled:
32
+ root:
33
+ gap: $dimension.x1
34
+ label:
35
+ fontSize: $font-size.t5
36
+ lineHeight: $line-height.t5
37
+ fontWeight: $font-weight.bold
38
+ emote:
39
+ size: $dimension.x8
40
+ bleed: $dimension.x1
41
+ level=l1:
42
+ enabled:
43
+ label:
44
+ color: $color.manner-temp.l1.text
45
+ level=l2:
46
+ enabled:
47
+ label:
48
+ color: $color.manner-temp.l2.text
49
+ level=l3:
50
+ enabled:
51
+ label:
52
+ color: $color.manner-temp.l3.text
53
+ level=l4:
54
+ enabled:
55
+ label:
56
+ color: $color.manner-temp.l4.text
57
+ level=l5:
58
+ enabled:
59
+ label:
60
+ color: $color.manner-temp.l5.text
61
+ level=l6:
62
+ enabled:
63
+ label:
64
+ color: $color.manner-temp.l6.text
65
+ level=l7:
66
+ enabled:
67
+ label:
68
+ color: $color.manner-temp.l7.text
69
+ level=l8:
70
+ enabled:
71
+ label:
72
+ color: $color.manner-temp.l8.text
73
+ level=l9:
74
+ enabled:
75
+ label:
76
+ color: $color.manner-temp.l9.text
77
+ level=l10:
78
+ enabled:
79
+ label:
80
+ color: $color.manner-temp.l10.text
@@ -0,0 +1,156 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: menu-item
5
+ name: Menu Item
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ color:
12
+ type: color
13
+ marginX:
14
+ type: dimension
15
+ cornerRadius:
16
+ type: dimension
17
+ colorDuration:
18
+ type: duration
19
+ colorTimingFunction:
20
+ type: cubicBezier
21
+ marginDuration:
22
+ type: duration
23
+ marginTimingFunction:
24
+ type: cubicBezier
25
+ borderRadiusDuration:
26
+ type: duration
27
+ borderRadiusTimingFunction:
28
+ type: cubicBezier
29
+ paddingX:
30
+ type: dimension
31
+ paddingY:
32
+ type: dimension
33
+ gap:
34
+ type: dimension
35
+ prefixIcon:
36
+ properties:
37
+ size:
38
+ type: dimension
39
+ color:
40
+ type: color
41
+ suffixIcon:
42
+ properties:
43
+ size:
44
+ type: dimension
45
+ color:
46
+ type: color
47
+ body:
48
+ properties:
49
+ gap:
50
+ type: dimension
51
+ label:
52
+ properties:
53
+ color:
54
+ type: color
55
+ fontSize:
56
+ type: dimension
57
+ lineHeight:
58
+ type: dimension
59
+ fontWeight:
60
+ type: number
61
+ description:
62
+ properties:
63
+ color:
64
+ type: color
65
+ fontSize:
66
+ type: dimension
67
+ lineHeight:
68
+ type: dimension
69
+ fontWeight:
70
+ type: number
71
+ variants:
72
+ tone:
73
+ values:
74
+ neutral:
75
+ description: 일반적인 작업을 수행하는 기본 아이템입니다.
76
+ critical:
77
+ description: 데이터 삭제와 같이 되돌릴 수 없는 작업을 수행하는 아이템입니다.
78
+ definitions:
79
+ base:
80
+ enabled:
81
+ root:
82
+ colorDuration: $duration.color-transition
83
+ colorTimingFunction: $timing-function.easing
84
+ marginDuration: $duration.d3
85
+ marginTimingFunction: $timing-function.easing
86
+ borderRadiusDuration: $duration.d3
87
+ borderRadiusTimingFunction: $timing-function.easing
88
+ body:
89
+ gap: $dimension.x0_5
90
+ label:
91
+ fontWeight: $font-weight.regular
92
+ description:
93
+ fontWeight: $font-weight.regular
94
+ color: $color.fg.neutral-subtle
95
+ pressed:
96
+ root:
97
+ color: $color.bg.transparent-pressed
98
+ marginX: $dimension.x2
99
+ cornerRadius: $radius.r3
100
+ disabled:
101
+ prefixIcon:
102
+ color: $color.fg.disabled
103
+ suffixIcon:
104
+ color: $color.fg.disabled
105
+ label:
106
+ color: $color.fg.disabled
107
+ description:
108
+ color: $color.fg.disabled
109
+ size=medium:
110
+ enabled:
111
+ root:
112
+ paddingX: $dimension.x4
113
+ paddingY: $dimension.x3
114
+ gap: $dimension.x3
115
+ prefixIcon:
116
+ size: 22px
117
+ suffixIcon:
118
+ size: 18px
119
+ label:
120
+ fontSize: $font-size.t5
121
+ lineHeight: $line-height.t5
122
+ description:
123
+ fontSize: $font-size.t3
124
+ lineHeight: $line-height.t3
125
+ size=small:
126
+ enabled:
127
+ root:
128
+ paddingX: $dimension.x4
129
+ paddingY: $dimension.x2_5
130
+ gap: $dimension.x2
131
+ prefixIcon:
132
+ size: 18px
133
+ suffixIcon:
134
+ size: 16px
135
+ label:
136
+ fontSize: $font-size.t4
137
+ lineHeight: $line-height.t4
138
+ description:
139
+ fontSize: $font-size.t2
140
+ lineHeight: $line-height.t2
141
+ tone=neutral:
142
+ enabled:
143
+ prefixIcon:
144
+ color: $color.fg.neutral
145
+ suffixIcon:
146
+ color: $color.fg.neutral
147
+ label:
148
+ color: $color.fg.neutral
149
+ tone=critical:
150
+ enabled:
151
+ prefixIcon:
152
+ color: $color.fg.critical
153
+ suffixIcon:
154
+ color: $color.fg.critical
155
+ label:
156
+ color: $color.fg.critical
@@ -0,0 +1,48 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: menu-sheet-close-button
5
+ name: Menu Sheet Close Button
6
+ deprecated: No longer used. Menu Sheet now uses a handle instead of a close button.
7
+ data:
8
+ schema:
9
+ slots:
10
+ root:
11
+ properties:
12
+ color:
13
+ type: color
14
+ minHeight:
15
+ type: dimension
16
+ cornerRadius:
17
+ type: dimension
18
+ paddingX:
19
+ type: dimension
20
+ paddingY:
21
+ type: dimension
22
+ label:
23
+ properties:
24
+ color:
25
+ type: color
26
+ fontSize:
27
+ type: dimension
28
+ lineHeight:
29
+ type: dimension
30
+ fontWeight:
31
+ type: number
32
+ definitions:
33
+ base:
34
+ enabled:
35
+ root:
36
+ color: $color.bg.neutral-weak
37
+ minHeight: 52px
38
+ cornerRadius: $radius.r3
39
+ paddingX: $dimension.x5
40
+ paddingY: $dimension.x3_5
41
+ label:
42
+ color: $color.fg.neutral
43
+ fontSize: $font-size.t5
44
+ lineHeight: $line-height.t5
45
+ fontWeight: $font-weight.medium
46
+ pressed:
47
+ root:
48
+ color: $color.bg.neutral-weak-pressed
@@ -0,0 +1,104 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: menu-sheet-item
5
+ name: Menu Sheet Item
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ color:
12
+ type: color
13
+ minHeight:
14
+ type: dimension
15
+ paddingX:
16
+ type: dimension
17
+ paddingY:
18
+ type: dimension
19
+ gap:
20
+ type: dimension
21
+ prefixIcon:
22
+ properties:
23
+ size:
24
+ type: dimension
25
+ color:
26
+ type: color
27
+ content:
28
+ properties:
29
+ gap:
30
+ type: dimension
31
+ label:
32
+ properties:
33
+ color:
34
+ type: color
35
+ fontSize:
36
+ type: dimension
37
+ lineHeight:
38
+ type: dimension
39
+ fontWeight:
40
+ type: number
41
+ description:
42
+ properties:
43
+ color:
44
+ type: color
45
+ fontSize:
46
+ type: dimension
47
+ lineHeight:
48
+ type: dimension
49
+ fontWeight:
50
+ type: number
51
+ variants:
52
+ tone:
53
+ values:
54
+ neutral:
55
+ description: 일반적인 작업을 수행하는 기본 아이템입니다.
56
+ critical:
57
+ description: 데이터 삭제와 같이 되돌릴 수 없는 작업을 수행하는 아이템입니다.
58
+ labelAlign:
59
+ values:
60
+ left:
61
+ description: 라벨을 왼쪽 정렬합니다.
62
+ center:
63
+ description: 라벨을 중앙 정렬합니다.
64
+ definitions:
65
+ base:
66
+ enabled:
67
+ root:
68
+ color: $color.bg.neutral-weak
69
+ minHeight: 52px
70
+ paddingX: $dimension.x4
71
+ paddingY: $dimension.x3_5
72
+ gap: $dimension.x3_5
73
+ prefixIcon:
74
+ size: 22px
75
+ content:
76
+ gap: $dimension.x0_5
77
+ label:
78
+ fontSize: $font-size.t5
79
+ lineHeight: $line-height.t5
80
+ fontWeight: $font-weight.regular
81
+ description:
82
+ fontSize: $font-size.t3
83
+ lineHeight: $line-height.t3
84
+ fontWeight: $font-weight.medium
85
+ color: $color.fg.neutral-subtle
86
+ pressed:
87
+ root:
88
+ color: $color.bg.neutral-weak-pressed
89
+ tone=neutral:
90
+ enabled:
91
+ prefixIcon:
92
+ color: $color.fg.neutral
93
+ label:
94
+ color: $color.fg.neutral
95
+ tone=critical:
96
+ enabled:
97
+ prefixIcon:
98
+ color: $color.fg.critical
99
+ label:
100
+ color: $color.fg.critical
101
+ labelAlign=left:
102
+ enabled: {}
103
+ labelAlign=center:
104
+ enabled: {}
@@ -0,0 +1,136 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: menu-sheet
5
+ name: Menu Sheet
6
+ data:
7
+ schema:
8
+ slots:
9
+ backdrop:
10
+ properties:
11
+ color:
12
+ type: color
13
+ enterDuration:
14
+ type: duration
15
+ enterTimingFunction:
16
+ type: cubicBezier
17
+ enterOpacity:
18
+ type: number
19
+ exitDuration:
20
+ type: duration
21
+ exitTimingFunction:
22
+ type: cubicBezier
23
+ exitOpacity:
24
+ type: number
25
+ content:
26
+ properties:
27
+ color:
28
+ type: color
29
+ maxWidth:
30
+ type: dimension
31
+ paddingX:
32
+ type: dimension
33
+ paddingY:
34
+ type: dimension
35
+ topCornerRadius:
36
+ type: dimension
37
+ enterDuration:
38
+ type: duration
39
+ enterTimingFunction:
40
+ type: cubicBezier
41
+ exitDuration:
42
+ type: duration
43
+ exitTimingFunction:
44
+ type: cubicBezier
45
+ header:
46
+ properties:
47
+ gap:
48
+ type: dimension
49
+ paddingTop:
50
+ type: dimension
51
+ paddingBottom:
52
+ type: dimension
53
+ title:
54
+ properties:
55
+ fontSize:
56
+ type: dimension
57
+ lineHeight:
58
+ type: dimension
59
+ fontWeight:
60
+ type: number
61
+ color:
62
+ type: color
63
+ description:
64
+ properties:
65
+ fontSize:
66
+ type: dimension
67
+ lineHeight:
68
+ type: dimension
69
+ fontWeight:
70
+ type: number
71
+ color:
72
+ type: color
73
+ list:
74
+ properties:
75
+ gap:
76
+ type: dimension
77
+ group:
78
+ properties:
79
+ cornerRadius:
80
+ type: dimension
81
+ divider:
82
+ properties:
83
+ strokeBottomWidth:
84
+ type: dimension
85
+ strokeColor:
86
+ type: color
87
+ footer:
88
+ properties:
89
+ paddingTop:
90
+ type: dimension
91
+ definitions:
92
+ base:
93
+ enabled:
94
+ backdrop:
95
+ color: $color.bg.overlay
96
+ enterDuration: $duration.d2
97
+ enterTimingFunction: $timing-function.enter
98
+ enterOpacity: 0
99
+ exitDuration: $duration.d2
100
+ exitTimingFunction: $timing-function.exit
101
+ exitOpacity: 0
102
+ content:
103
+ color: $color.bg.layer-floating
104
+ maxWidth: 480px
105
+ paddingX: $dimension.spacing-x.global-gutter
106
+ paddingY: $dimension.x4
107
+ topCornerRadius: $radius.r5
108
+ enterDuration: $duration.d6
109
+ enterTimingFunction: $timing-function.enter-expressive
110
+ # Do we need translateY definition here?
111
+ exitDuration: $duration.d4
112
+ exitTimingFunction: $timing-function.exit
113
+ header:
114
+ gap: $dimension.x1
115
+ paddingTop: $dimension.x2
116
+ paddingBottom: $dimension.x4
117
+ title:
118
+ fontSize: $font-size.t6
119
+ lineHeight: $line-height.t6
120
+ fontWeight: $font-weight.bold
121
+ color: $color.fg.neutral
122
+ description:
123
+ fontSize: $font-size.t4
124
+ lineHeight: $line-height.t4
125
+ fontWeight: $font-weight.regular
126
+ color: $color.fg.neutral-muted
127
+ # We might need description in near future
128
+ list:
129
+ gap: $dimension.x2_5
130
+ group:
131
+ cornerRadius: $radius.r4
132
+ divider:
133
+ strokeBottomWidth: 1px
134
+ strokeColor: $color.stroke.neutral-muted
135
+ footer:
136
+ paddingTop: $dimension.x2_5
@@ -0,0 +1,117 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: menu
5
+ name: Menu
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ cornerRadius:
12
+ type: dimension
13
+ color:
14
+ type: color
15
+ shadow:
16
+ type: shadow
17
+ paddingY:
18
+ type: dimension
19
+ gap:
20
+ type: dimension
21
+ enterDuration:
22
+ type: duration
23
+ enterTimingFunction:
24
+ type: cubicBezier
25
+ enterScale:
26
+ type: number
27
+ enterOpacity:
28
+ type: number
29
+ exitDuration:
30
+ type: duration
31
+ exitTimingFunction:
32
+ type: cubicBezier
33
+ exitScale:
34
+ type: number
35
+ exitOpacity:
36
+ type: number
37
+ gutter:
38
+ type: dimension
39
+ description: 트리거와 메뉴 사이의 간격을 정의합니다.
40
+ overflowPadding:
41
+ type: dimension
42
+ description: 메뉴와 뷰포트 경계 사이의 최소 간격을 정의합니다.
43
+ maxHeight:
44
+ type: dimension
45
+ width:
46
+ type: dimension
47
+ group:
48
+ properties: {}
49
+ groupLabel:
50
+ properties:
51
+ color:
52
+ type: color
53
+ paddingX:
54
+ type: dimension
55
+ paddingY:
56
+ type: dimension
57
+ fontSize:
58
+ type: dimension
59
+ lineHeight:
60
+ type: dimension
61
+ fontWeight:
62
+ type: number
63
+ divider:
64
+ properties:
65
+ marginX:
66
+ type: dimension
67
+ height:
68
+ type: dimension
69
+ color:
70
+ type: color
71
+
72
+ definitions:
73
+ base:
74
+ enabled:
75
+ root:
76
+ cornerRadius: $radius.r5
77
+ color: $color.bg.layer-floating
78
+ shadow: $shadow.s3
79
+ enterDuration: $duration.d3
80
+ enterTimingFunction: $timing-function.enter
81
+ enterScale: 0.95
82
+ enterOpacity: 0
83
+ exitDuration: $duration.d2
84
+ exitTimingFunction: $timing-function.exit
85
+ exitScale: 0.95
86
+ exitOpacity: 0
87
+ paddingY: $dimension.x2
88
+ gap: $dimension.x2
89
+ gutter: $dimension.x2
90
+ overflowPadding: $dimension.x2
91
+ maxHeight: 480px
92
+ groupLabel:
93
+ color: $color.fg.neutral-subtle
94
+ divider:
95
+ marginX: $dimension.x4
96
+ height: 1px
97
+ color: $color.stroke.neutral-muted
98
+ size=medium:
99
+ enabled:
100
+ root:
101
+ width: 240px
102
+ groupLabel:
103
+ paddingY: $dimension.x2_5
104
+ paddingX: $dimension.x4
105
+ fontSize: $font-size.t4
106
+ lineHeight: $line-height.t4
107
+ fontWeight: $font-weight.medium
108
+ size=small:
109
+ enabled:
110
+ root:
111
+ width: 200px
112
+ groupLabel:
113
+ paddingY: $dimension.x2
114
+ paddingX: $dimension.x4
115
+ fontSize: $font-size.t3
116
+ lineHeight: $line-height.t3
117
+ fontWeight: $font-weight.regular
@@ -0,0 +1,74 @@
1
+ # yaml-language-server: $schema=./schema.json
2
+ kind: ComponentSpec
3
+ metadata:
4
+ id: notification-badge
5
+ name: Notification Badge
6
+ data:
7
+ schema:
8
+ slots:
9
+ root:
10
+ properties:
11
+ color:
12
+ type: color
13
+ minHeight:
14
+ type: dimension
15
+ paddingX:
16
+ type: dimension
17
+ paddingY:
18
+ type: dimension
19
+ cornerRadius:
20
+ type: dimension
21
+ iconAttachedInsetEnd:
22
+ type: dimension
23
+ iconAttachedInsetTop:
24
+ type: dimension
25
+ textAttachedGap:
26
+ type: dimension
27
+ size:
28
+ type: dimension
29
+ label:
30
+ properties:
31
+ color:
32
+ type: color
33
+ fontSize:
34
+ type: dimension
35
+ lineHeight:
36
+ type: dimension
37
+ fontWeight:
38
+ type: number
39
+ variants:
40
+ size:
41
+ values:
42
+ large:
43
+ description: 라벨을 포함해 구체적인 알림 수나 상태 정보를 제공합니다.
44
+ small:
45
+ description: 간결한 도트 형태로, 텍스트 없이 상태 변화만 표시합니다.
46
+ definitions:
47
+ base:
48
+ enabled:
49
+ root:
50
+ color: $color.bg.brand-solid
51
+ label:
52
+ color: $color.palette.static-white
53
+ size=large:
54
+ enabled:
55
+ root:
56
+ minHeight: 18px
57
+ paddingX: $dimension.x1
58
+ paddingY: 0px
59
+ cornerRadius: $radius.full
60
+ iconAttachedInsetEnd: 8px
61
+ iconAttachedInsetTop: 14px
62
+ textAttachedGap: 2px
63
+ label:
64
+ fontSize: $font-size.t1
65
+ lineHeight: $line-height.t1
66
+ fontWeight: $font-weight.bold
67
+ size=small:
68
+ enabled:
69
+ root:
70
+ size: 6px
71
+ cornerRadius: $radius.full
72
+ iconAttachedInsetEnd: 7px
73
+ iconAttachedInsetTop: 7px
74
+ textAttachedGap: 2px