@khanacademy/wonder-blocks-icon-button 4.1.9 → 4.2.1
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.
- package/CHANGELOG.md +19 -0
- package/dist/components/icon-button.d.ts +7 -0
- package/dist/es/index.js +55 -39
- package/dist/index.js +55 -39
- package/dist/util/icon-button-util.d.ts +10 -0
- package/package.json +3 -3
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +2523 -251
- package/src/__tests__/custom-snapshot.test.tsx +7 -1
- package/src/components/icon-button-core.tsx +35 -30
- package/src/components/icon-button.tsx +18 -8
- package/src/util/icon-button-util.test.ts +29 -0
- package/src/util/icon-button-util.ts +22 -0
- package/tsconfig-build.tsbuildinfo +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
3
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:false disabled 1`] = `
|
|
4
4
|
<button
|
|
5
5
|
aria-label="search"
|
|
6
6
|
className=""
|
|
@@ -68,7 +68,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:false disa
|
|
|
68
68
|
</button>
|
|
69
69
|
`;
|
|
70
70
|
|
|
71
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
71
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:false focused 1`] = `
|
|
72
72
|
<button
|
|
73
73
|
aria-label="search"
|
|
74
74
|
className=""
|
|
@@ -140,7 +140,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:false focu
|
|
|
140
140
|
</button>
|
|
141
141
|
`;
|
|
142
142
|
|
|
143
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
143
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:false hovered 1`] = `
|
|
144
144
|
<button
|
|
145
145
|
aria-label="search"
|
|
146
146
|
className=""
|
|
@@ -212,7 +212,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:false hove
|
|
|
212
212
|
</button>
|
|
213
213
|
`;
|
|
214
214
|
|
|
215
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
215
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:false pressed 1`] = `
|
|
216
216
|
<button
|
|
217
217
|
aria-label="search"
|
|
218
218
|
className=""
|
|
@@ -284,7 +284,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:false pres
|
|
|
284
284
|
</button>
|
|
285
285
|
`;
|
|
286
286
|
|
|
287
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
287
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:true disabled 1`] = `
|
|
288
288
|
<button
|
|
289
289
|
aria-label="search"
|
|
290
290
|
className=""
|
|
@@ -352,7 +352,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:true disab
|
|
|
352
352
|
</button>
|
|
353
353
|
`;
|
|
354
354
|
|
|
355
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
355
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:true focused 1`] = `
|
|
356
356
|
<button
|
|
357
357
|
aria-label="search"
|
|
358
358
|
className=""
|
|
@@ -424,7 +424,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:true focus
|
|
|
424
424
|
</button>
|
|
425
425
|
`;
|
|
426
426
|
|
|
427
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
427
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:true hovered 1`] = `
|
|
428
428
|
<button
|
|
429
429
|
aria-label="search"
|
|
430
430
|
className=""
|
|
@@ -496,7 +496,7 @@ exports[`IconButtonCore kind:primary color:default size:default light:true hover
|
|
|
496
496
|
</button>
|
|
497
497
|
`;
|
|
498
498
|
|
|
499
|
-
exports[`IconButtonCore kind:primary color:default size:
|
|
499
|
+
exports[`IconButtonCore kind:primary color:default size:medium light:true pressed 1`] = `
|
|
500
500
|
<button
|
|
501
501
|
aria-label="search"
|
|
502
502
|
className=""
|
|
@@ -600,7 +600,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false disabl
|
|
|
600
600
|
"color": "rgba(33,36,44,0.32)",
|
|
601
601
|
"cursor": "default",
|
|
602
602
|
"display": "inline-flex",
|
|
603
|
-
"height":
|
|
603
|
+
"height": 32,
|
|
604
604
|
"justifyContent": "center",
|
|
605
605
|
"margin": -8,
|
|
606
606
|
"outline": "none",
|
|
@@ -608,7 +608,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false disabl
|
|
|
608
608
|
"position": "relative",
|
|
609
609
|
"textDecoration": "none",
|
|
610
610
|
"touchAction": "manipulation",
|
|
611
|
-
"width":
|
|
611
|
+
"width": 32,
|
|
612
612
|
}
|
|
613
613
|
}
|
|
614
614
|
tabIndex={-1}
|
|
@@ -672,7 +672,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false focuse
|
|
|
672
672
|
"color": "#1865f2",
|
|
673
673
|
"cursor": "pointer",
|
|
674
674
|
"display": "inline-flex",
|
|
675
|
-
"height":
|
|
675
|
+
"height": 32,
|
|
676
676
|
"justifyContent": "center",
|
|
677
677
|
"margin": -8,
|
|
678
678
|
"outline": "none",
|
|
@@ -680,7 +680,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false focuse
|
|
|
680
680
|
"position": "relative",
|
|
681
681
|
"textDecoration": "none",
|
|
682
682
|
"touchAction": "manipulation",
|
|
683
|
-
"width":
|
|
683
|
+
"width": 32,
|
|
684
684
|
}
|
|
685
685
|
}
|
|
686
686
|
tabIndex={0}
|
|
@@ -744,7 +744,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false hovere
|
|
|
744
744
|
"color": "#1865f2",
|
|
745
745
|
"cursor": "pointer",
|
|
746
746
|
"display": "inline-flex",
|
|
747
|
-
"height":
|
|
747
|
+
"height": 32,
|
|
748
748
|
"justifyContent": "center",
|
|
749
749
|
"margin": -8,
|
|
750
750
|
"outline": "none",
|
|
@@ -752,7 +752,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false hovere
|
|
|
752
752
|
"position": "relative",
|
|
753
753
|
"textDecoration": "none",
|
|
754
754
|
"touchAction": "manipulation",
|
|
755
|
-
"width":
|
|
755
|
+
"width": 32,
|
|
756
756
|
}
|
|
757
757
|
}
|
|
758
758
|
tabIndex={0}
|
|
@@ -816,7 +816,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false presse
|
|
|
816
816
|
"color": "#1b50b3",
|
|
817
817
|
"cursor": "pointer",
|
|
818
818
|
"display": "inline-flex",
|
|
819
|
-
"height":
|
|
819
|
+
"height": 32,
|
|
820
820
|
"justifyContent": "center",
|
|
821
821
|
"margin": -8,
|
|
822
822
|
"outline": "none",
|
|
@@ -824,7 +824,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:false presse
|
|
|
824
824
|
"position": "relative",
|
|
825
825
|
"textDecoration": "none",
|
|
826
826
|
"touchAction": "manipulation",
|
|
827
|
-
"width":
|
|
827
|
+
"width": 32,
|
|
828
828
|
}
|
|
829
829
|
}
|
|
830
830
|
tabIndex={0}
|
|
@@ -884,7 +884,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true disable
|
|
|
884
884
|
"color": "#6296f6",
|
|
885
885
|
"cursor": "default",
|
|
886
886
|
"display": "inline-flex",
|
|
887
|
-
"height":
|
|
887
|
+
"height": 32,
|
|
888
888
|
"justifyContent": "center",
|
|
889
889
|
"margin": -8,
|
|
890
890
|
"outline": "none",
|
|
@@ -892,7 +892,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true disable
|
|
|
892
892
|
"position": "relative",
|
|
893
893
|
"textDecoration": "none",
|
|
894
894
|
"touchAction": "manipulation",
|
|
895
|
-
"width":
|
|
895
|
+
"width": 32,
|
|
896
896
|
}
|
|
897
897
|
}
|
|
898
898
|
tabIndex={-1}
|
|
@@ -956,7 +956,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true focused
|
|
|
956
956
|
"color": "#ffffff",
|
|
957
957
|
"cursor": "pointer",
|
|
958
958
|
"display": "inline-flex",
|
|
959
|
-
"height":
|
|
959
|
+
"height": 32,
|
|
960
960
|
"justifyContent": "center",
|
|
961
961
|
"margin": -8,
|
|
962
962
|
"outline": "none",
|
|
@@ -964,7 +964,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true focused
|
|
|
964
964
|
"position": "relative",
|
|
965
965
|
"textDecoration": "none",
|
|
966
966
|
"touchAction": "manipulation",
|
|
967
|
-
"width":
|
|
967
|
+
"width": 32,
|
|
968
968
|
}
|
|
969
969
|
}
|
|
970
970
|
tabIndex={0}
|
|
@@ -1028,7 +1028,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true hovered
|
|
|
1028
1028
|
"color": "#ffffff",
|
|
1029
1029
|
"cursor": "pointer",
|
|
1030
1030
|
"display": "inline-flex",
|
|
1031
|
-
"height":
|
|
1031
|
+
"height": 32,
|
|
1032
1032
|
"justifyContent": "center",
|
|
1033
1033
|
"margin": -8,
|
|
1034
1034
|
"outline": "none",
|
|
@@ -1036,7 +1036,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true hovered
|
|
|
1036
1036
|
"position": "relative",
|
|
1037
1037
|
"textDecoration": "none",
|
|
1038
1038
|
"touchAction": "manipulation",
|
|
1039
|
-
"width":
|
|
1039
|
+
"width": 32,
|
|
1040
1040
|
}
|
|
1041
1041
|
}
|
|
1042
1042
|
tabIndex={0}
|
|
@@ -1100,7 +1100,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true pressed
|
|
|
1100
1100
|
"color": "#b5cefb",
|
|
1101
1101
|
"cursor": "pointer",
|
|
1102
1102
|
"display": "inline-flex",
|
|
1103
|
-
"height":
|
|
1103
|
+
"height": 32,
|
|
1104
1104
|
"justifyContent": "center",
|
|
1105
1105
|
"margin": -8,
|
|
1106
1106
|
"outline": "none",
|
|
@@ -1108,7 +1108,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true pressed
|
|
|
1108
1108
|
"position": "relative",
|
|
1109
1109
|
"textDecoration": "none",
|
|
1110
1110
|
"touchAction": "manipulation",
|
|
1111
|
-
"width":
|
|
1111
|
+
"width": 32,
|
|
1112
1112
|
}
|
|
1113
1113
|
}
|
|
1114
1114
|
tabIndex={0}
|
|
@@ -1136,7 +1136,7 @@ exports[`IconButtonCore kind:primary color:default size:small light:true pressed
|
|
|
1136
1136
|
</button>
|
|
1137
1137
|
`;
|
|
1138
1138
|
|
|
1139
|
-
exports[`IconButtonCore kind:primary color:
|
|
1139
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:false disabled 1`] = `
|
|
1140
1140
|
<button
|
|
1141
1141
|
aria-label="search"
|
|
1142
1142
|
className=""
|
|
@@ -1168,7 +1168,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1168
1168
|
"color": "rgba(33,36,44,0.32)",
|
|
1169
1169
|
"cursor": "default",
|
|
1170
1170
|
"display": "inline-flex",
|
|
1171
|
-
"height":
|
|
1171
|
+
"height": 24,
|
|
1172
1172
|
"justifyContent": "center",
|
|
1173
1173
|
"margin": -8,
|
|
1174
1174
|
"outline": "none",
|
|
@@ -1176,7 +1176,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1176
1176
|
"position": "relative",
|
|
1177
1177
|
"textDecoration": "none",
|
|
1178
1178
|
"touchAction": "manipulation",
|
|
1179
|
-
"width":
|
|
1179
|
+
"width": 24,
|
|
1180
1180
|
}
|
|
1181
1181
|
}
|
|
1182
1182
|
tabIndex={-1}
|
|
@@ -1184,7 +1184,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1184
1184
|
>
|
|
1185
1185
|
<svg
|
|
1186
1186
|
className=""
|
|
1187
|
-
height={
|
|
1187
|
+
height={16}
|
|
1188
1188
|
style={
|
|
1189
1189
|
{
|
|
1190
1190
|
"display": "inline-block",
|
|
@@ -1193,18 +1193,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1193
1193
|
"verticalAlign": "text-bottom",
|
|
1194
1194
|
}
|
|
1195
1195
|
}
|
|
1196
|
-
viewBox="0 0
|
|
1197
|
-
width={
|
|
1196
|
+
viewBox="0 0 16 16"
|
|
1197
|
+
width={16}
|
|
1198
1198
|
>
|
|
1199
1199
|
<path
|
|
1200
|
-
d="M11
|
|
1200
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1201
1201
|
fill="currentColor"
|
|
1202
1202
|
/>
|
|
1203
1203
|
</svg>
|
|
1204
1204
|
</button>
|
|
1205
1205
|
`;
|
|
1206
1206
|
|
|
1207
|
-
exports[`IconButtonCore kind:primary color:
|
|
1207
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:false focused 1`] = `
|
|
1208
1208
|
<button
|
|
1209
1209
|
aria-label="search"
|
|
1210
1210
|
className=""
|
|
@@ -1232,15 +1232,15 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1232
1232
|
"alignItems": "center",
|
|
1233
1233
|
"background": "none",
|
|
1234
1234
|
"border": "none",
|
|
1235
|
-
"borderColor": "#
|
|
1235
|
+
"borderColor": "#1865f2",
|
|
1236
1236
|
"borderRadius": 4,
|
|
1237
1237
|
"borderStyle": "solid",
|
|
1238
1238
|
"borderWidth": 2,
|
|
1239
1239
|
"boxSizing": "border-box",
|
|
1240
|
-
"color": "#
|
|
1240
|
+
"color": "#1865f2",
|
|
1241
1241
|
"cursor": "pointer",
|
|
1242
1242
|
"display": "inline-flex",
|
|
1243
|
-
"height":
|
|
1243
|
+
"height": 24,
|
|
1244
1244
|
"justifyContent": "center",
|
|
1245
1245
|
"margin": -8,
|
|
1246
1246
|
"outline": "none",
|
|
@@ -1248,7 +1248,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1248
1248
|
"position": "relative",
|
|
1249
1249
|
"textDecoration": "none",
|
|
1250
1250
|
"touchAction": "manipulation",
|
|
1251
|
-
"width":
|
|
1251
|
+
"width": 24,
|
|
1252
1252
|
}
|
|
1253
1253
|
}
|
|
1254
1254
|
tabIndex={0}
|
|
@@ -1256,7 +1256,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1256
1256
|
>
|
|
1257
1257
|
<svg
|
|
1258
1258
|
className=""
|
|
1259
|
-
height={
|
|
1259
|
+
height={16}
|
|
1260
1260
|
style={
|
|
1261
1261
|
{
|
|
1262
1262
|
"display": "inline-block",
|
|
@@ -1265,18 +1265,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1265
1265
|
"verticalAlign": "text-bottom",
|
|
1266
1266
|
}
|
|
1267
1267
|
}
|
|
1268
|
-
viewBox="0 0
|
|
1269
|
-
width={
|
|
1268
|
+
viewBox="0 0 16 16"
|
|
1269
|
+
width={16}
|
|
1270
1270
|
>
|
|
1271
1271
|
<path
|
|
1272
|
-
d="M11
|
|
1272
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1273
1273
|
fill="currentColor"
|
|
1274
1274
|
/>
|
|
1275
1275
|
</svg>
|
|
1276
1276
|
</button>
|
|
1277
1277
|
`;
|
|
1278
1278
|
|
|
1279
|
-
exports[`IconButtonCore kind:primary color:
|
|
1279
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:false hovered 1`] = `
|
|
1280
1280
|
<button
|
|
1281
1281
|
aria-label="search"
|
|
1282
1282
|
className=""
|
|
@@ -1304,15 +1304,15 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1304
1304
|
"alignItems": "center",
|
|
1305
1305
|
"background": "none",
|
|
1306
1306
|
"border": "none",
|
|
1307
|
-
"borderColor": "#
|
|
1307
|
+
"borderColor": "#1865f2",
|
|
1308
1308
|
"borderRadius": 4,
|
|
1309
1309
|
"borderStyle": "solid",
|
|
1310
1310
|
"borderWidth": 2,
|
|
1311
1311
|
"boxSizing": "border-box",
|
|
1312
|
-
"color": "#
|
|
1312
|
+
"color": "#1865f2",
|
|
1313
1313
|
"cursor": "pointer",
|
|
1314
1314
|
"display": "inline-flex",
|
|
1315
|
-
"height":
|
|
1315
|
+
"height": 24,
|
|
1316
1316
|
"justifyContent": "center",
|
|
1317
1317
|
"margin": -8,
|
|
1318
1318
|
"outline": "none",
|
|
@@ -1320,7 +1320,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1320
1320
|
"position": "relative",
|
|
1321
1321
|
"textDecoration": "none",
|
|
1322
1322
|
"touchAction": "manipulation",
|
|
1323
|
-
"width":
|
|
1323
|
+
"width": 24,
|
|
1324
1324
|
}
|
|
1325
1325
|
}
|
|
1326
1326
|
tabIndex={0}
|
|
@@ -1328,7 +1328,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1328
1328
|
>
|
|
1329
1329
|
<svg
|
|
1330
1330
|
className=""
|
|
1331
|
-
height={
|
|
1331
|
+
height={16}
|
|
1332
1332
|
style={
|
|
1333
1333
|
{
|
|
1334
1334
|
"display": "inline-block",
|
|
@@ -1337,18 +1337,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1337
1337
|
"verticalAlign": "text-bottom",
|
|
1338
1338
|
}
|
|
1339
1339
|
}
|
|
1340
|
-
viewBox="0 0
|
|
1341
|
-
width={
|
|
1340
|
+
viewBox="0 0 16 16"
|
|
1341
|
+
width={16}
|
|
1342
1342
|
>
|
|
1343
1343
|
<path
|
|
1344
|
-
d="M11
|
|
1344
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1345
1345
|
fill="currentColor"
|
|
1346
1346
|
/>
|
|
1347
1347
|
</svg>
|
|
1348
1348
|
</button>
|
|
1349
1349
|
`;
|
|
1350
1350
|
|
|
1351
|
-
exports[`IconButtonCore kind:primary color:
|
|
1351
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:false pressed 1`] = `
|
|
1352
1352
|
<button
|
|
1353
1353
|
aria-label="search"
|
|
1354
1354
|
className=""
|
|
@@ -1376,15 +1376,15 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1376
1376
|
"alignItems": "center",
|
|
1377
1377
|
"background": "none",
|
|
1378
1378
|
"border": "none",
|
|
1379
|
-
"borderColor": "#
|
|
1379
|
+
"borderColor": "#1b50b3",
|
|
1380
1380
|
"borderRadius": 4,
|
|
1381
1381
|
"borderStyle": "solid",
|
|
1382
1382
|
"borderWidth": 2,
|
|
1383
1383
|
"boxSizing": "border-box",
|
|
1384
|
-
"color": "#
|
|
1384
|
+
"color": "#1b50b3",
|
|
1385
1385
|
"cursor": "pointer",
|
|
1386
1386
|
"display": "inline-flex",
|
|
1387
|
-
"height":
|
|
1387
|
+
"height": 24,
|
|
1388
1388
|
"justifyContent": "center",
|
|
1389
1389
|
"margin": -8,
|
|
1390
1390
|
"outline": "none",
|
|
@@ -1392,7 +1392,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1392
1392
|
"position": "relative",
|
|
1393
1393
|
"textDecoration": "none",
|
|
1394
1394
|
"touchAction": "manipulation",
|
|
1395
|
-
"width":
|
|
1395
|
+
"width": 24,
|
|
1396
1396
|
}
|
|
1397
1397
|
}
|
|
1398
1398
|
tabIndex={0}
|
|
@@ -1400,7 +1400,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1400
1400
|
>
|
|
1401
1401
|
<svg
|
|
1402
1402
|
className=""
|
|
1403
|
-
height={
|
|
1403
|
+
height={16}
|
|
1404
1404
|
style={
|
|
1405
1405
|
{
|
|
1406
1406
|
"display": "inline-block",
|
|
@@ -1409,18 +1409,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:false
|
|
|
1409
1409
|
"verticalAlign": "text-bottom",
|
|
1410
1410
|
}
|
|
1411
1411
|
}
|
|
1412
|
-
viewBox="0 0
|
|
1413
|
-
width={
|
|
1412
|
+
viewBox="0 0 16 16"
|
|
1413
|
+
width={16}
|
|
1414
1414
|
>
|
|
1415
1415
|
<path
|
|
1416
|
-
d="M11
|
|
1416
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1417
1417
|
fill="currentColor"
|
|
1418
1418
|
/>
|
|
1419
1419
|
</svg>
|
|
1420
1420
|
</button>
|
|
1421
1421
|
`;
|
|
1422
1422
|
|
|
1423
|
-
exports[`IconButtonCore kind:primary color:
|
|
1423
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:true disabled 1`] = `
|
|
1424
1424
|
<button
|
|
1425
1425
|
aria-label="search"
|
|
1426
1426
|
className=""
|
|
@@ -1449,10 +1449,10 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true d
|
|
|
1449
1449
|
"background": "none",
|
|
1450
1450
|
"border": "none",
|
|
1451
1451
|
"boxSizing": "border-box",
|
|
1452
|
-
"color": "#
|
|
1452
|
+
"color": "#6296f6",
|
|
1453
1453
|
"cursor": "default",
|
|
1454
1454
|
"display": "inline-flex",
|
|
1455
|
-
"height":
|
|
1455
|
+
"height": 24,
|
|
1456
1456
|
"justifyContent": "center",
|
|
1457
1457
|
"margin": -8,
|
|
1458
1458
|
"outline": "none",
|
|
@@ -1460,7 +1460,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true d
|
|
|
1460
1460
|
"position": "relative",
|
|
1461
1461
|
"textDecoration": "none",
|
|
1462
1462
|
"touchAction": "manipulation",
|
|
1463
|
-
"width":
|
|
1463
|
+
"width": 24,
|
|
1464
1464
|
}
|
|
1465
1465
|
}
|
|
1466
1466
|
tabIndex={-1}
|
|
@@ -1468,7 +1468,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true d
|
|
|
1468
1468
|
>
|
|
1469
1469
|
<svg
|
|
1470
1470
|
className=""
|
|
1471
|
-
height={
|
|
1471
|
+
height={16}
|
|
1472
1472
|
style={
|
|
1473
1473
|
{
|
|
1474
1474
|
"display": "inline-block",
|
|
@@ -1477,18 +1477,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true d
|
|
|
1477
1477
|
"verticalAlign": "text-bottom",
|
|
1478
1478
|
}
|
|
1479
1479
|
}
|
|
1480
|
-
viewBox="0 0
|
|
1481
|
-
width={
|
|
1480
|
+
viewBox="0 0 16 16"
|
|
1481
|
+
width={16}
|
|
1482
1482
|
>
|
|
1483
1483
|
<path
|
|
1484
|
-
d="M11
|
|
1484
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1485
1485
|
fill="currentColor"
|
|
1486
1486
|
/>
|
|
1487
1487
|
</svg>
|
|
1488
1488
|
</button>
|
|
1489
1489
|
`;
|
|
1490
1490
|
|
|
1491
|
-
exports[`IconButtonCore kind:primary color:
|
|
1491
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:true focused 1`] = `
|
|
1492
1492
|
<button
|
|
1493
1493
|
aria-label="search"
|
|
1494
1494
|
className=""
|
|
@@ -1524,7 +1524,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true f
|
|
|
1524
1524
|
"color": "#ffffff",
|
|
1525
1525
|
"cursor": "pointer",
|
|
1526
1526
|
"display": "inline-flex",
|
|
1527
|
-
"height":
|
|
1527
|
+
"height": 24,
|
|
1528
1528
|
"justifyContent": "center",
|
|
1529
1529
|
"margin": -8,
|
|
1530
1530
|
"outline": "none",
|
|
@@ -1532,7 +1532,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true f
|
|
|
1532
1532
|
"position": "relative",
|
|
1533
1533
|
"textDecoration": "none",
|
|
1534
1534
|
"touchAction": "manipulation",
|
|
1535
|
-
"width":
|
|
1535
|
+
"width": 24,
|
|
1536
1536
|
}
|
|
1537
1537
|
}
|
|
1538
1538
|
tabIndex={0}
|
|
@@ -1540,7 +1540,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true f
|
|
|
1540
1540
|
>
|
|
1541
1541
|
<svg
|
|
1542
1542
|
className=""
|
|
1543
|
-
height={
|
|
1543
|
+
height={16}
|
|
1544
1544
|
style={
|
|
1545
1545
|
{
|
|
1546
1546
|
"display": "inline-block",
|
|
@@ -1549,18 +1549,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true f
|
|
|
1549
1549
|
"verticalAlign": "text-bottom",
|
|
1550
1550
|
}
|
|
1551
1551
|
}
|
|
1552
|
-
viewBox="0 0
|
|
1553
|
-
width={
|
|
1552
|
+
viewBox="0 0 16 16"
|
|
1553
|
+
width={16}
|
|
1554
1554
|
>
|
|
1555
1555
|
<path
|
|
1556
|
-
d="M11
|
|
1556
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1557
1557
|
fill="currentColor"
|
|
1558
1558
|
/>
|
|
1559
1559
|
</svg>
|
|
1560
1560
|
</button>
|
|
1561
1561
|
`;
|
|
1562
1562
|
|
|
1563
|
-
exports[`IconButtonCore kind:primary color:
|
|
1563
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:true hovered 1`] = `
|
|
1564
1564
|
<button
|
|
1565
1565
|
aria-label="search"
|
|
1566
1566
|
className=""
|
|
@@ -1596,7 +1596,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true h
|
|
|
1596
1596
|
"color": "#ffffff",
|
|
1597
1597
|
"cursor": "pointer",
|
|
1598
1598
|
"display": "inline-flex",
|
|
1599
|
-
"height":
|
|
1599
|
+
"height": 24,
|
|
1600
1600
|
"justifyContent": "center",
|
|
1601
1601
|
"margin": -8,
|
|
1602
1602
|
"outline": "none",
|
|
@@ -1604,7 +1604,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true h
|
|
|
1604
1604
|
"position": "relative",
|
|
1605
1605
|
"textDecoration": "none",
|
|
1606
1606
|
"touchAction": "manipulation",
|
|
1607
|
-
"width":
|
|
1607
|
+
"width": 24,
|
|
1608
1608
|
}
|
|
1609
1609
|
}
|
|
1610
1610
|
tabIndex={0}
|
|
@@ -1612,7 +1612,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true h
|
|
|
1612
1612
|
>
|
|
1613
1613
|
<svg
|
|
1614
1614
|
className=""
|
|
1615
|
-
height={
|
|
1615
|
+
height={16}
|
|
1616
1616
|
style={
|
|
1617
1617
|
{
|
|
1618
1618
|
"display": "inline-block",
|
|
@@ -1621,18 +1621,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true h
|
|
|
1621
1621
|
"verticalAlign": "text-bottom",
|
|
1622
1622
|
}
|
|
1623
1623
|
}
|
|
1624
|
-
viewBox="0 0
|
|
1625
|
-
width={
|
|
1624
|
+
viewBox="0 0 16 16"
|
|
1625
|
+
width={16}
|
|
1626
1626
|
>
|
|
1627
1627
|
<path
|
|
1628
|
-
d="M11
|
|
1628
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1629
1629
|
fill="currentColor"
|
|
1630
1630
|
/>
|
|
1631
1631
|
</svg>
|
|
1632
1632
|
</button>
|
|
1633
1633
|
`;
|
|
1634
1634
|
|
|
1635
|
-
exports[`IconButtonCore kind:primary color:
|
|
1635
|
+
exports[`IconButtonCore kind:primary color:default size:xsmall light:true pressed 1`] = `
|
|
1636
1636
|
<button
|
|
1637
1637
|
aria-label="search"
|
|
1638
1638
|
className=""
|
|
@@ -1660,15 +1660,15 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true p
|
|
|
1660
1660
|
"alignItems": "center",
|
|
1661
1661
|
"background": "none",
|
|
1662
1662
|
"border": "none",
|
|
1663
|
-
"borderColor": "#
|
|
1663
|
+
"borderColor": "#b5cefb",
|
|
1664
1664
|
"borderRadius": 4,
|
|
1665
1665
|
"borderStyle": "solid",
|
|
1666
1666
|
"borderWidth": 2,
|
|
1667
1667
|
"boxSizing": "border-box",
|
|
1668
|
-
"color": "#
|
|
1668
|
+
"color": "#b5cefb",
|
|
1669
1669
|
"cursor": "pointer",
|
|
1670
1670
|
"display": "inline-flex",
|
|
1671
|
-
"height":
|
|
1671
|
+
"height": 24,
|
|
1672
1672
|
"justifyContent": "center",
|
|
1673
1673
|
"margin": -8,
|
|
1674
1674
|
"outline": "none",
|
|
@@ -1676,7 +1676,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true p
|
|
|
1676
1676
|
"position": "relative",
|
|
1677
1677
|
"textDecoration": "none",
|
|
1678
1678
|
"touchAction": "manipulation",
|
|
1679
|
-
"width":
|
|
1679
|
+
"width": 24,
|
|
1680
1680
|
}
|
|
1681
1681
|
}
|
|
1682
1682
|
tabIndex={0}
|
|
@@ -1684,7 +1684,7 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true p
|
|
|
1684
1684
|
>
|
|
1685
1685
|
<svg
|
|
1686
1686
|
className=""
|
|
1687
|
-
height={
|
|
1687
|
+
height={16}
|
|
1688
1688
|
style={
|
|
1689
1689
|
{
|
|
1690
1690
|
"display": "inline-block",
|
|
@@ -1693,18 +1693,18 @@ exports[`IconButtonCore kind:primary color:destructive size:default light:true p
|
|
|
1693
1693
|
"verticalAlign": "text-bottom",
|
|
1694
1694
|
}
|
|
1695
1695
|
}
|
|
1696
|
-
viewBox="0 0
|
|
1697
|
-
width={
|
|
1696
|
+
viewBox="0 0 16 16"
|
|
1697
|
+
width={16}
|
|
1698
1698
|
>
|
|
1699
1699
|
<path
|
|
1700
|
-
d="M11
|
|
1700
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
1701
1701
|
fill="currentColor"
|
|
1702
1702
|
/>
|
|
1703
1703
|
</svg>
|
|
1704
1704
|
</button>
|
|
1705
1705
|
`;
|
|
1706
1706
|
|
|
1707
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
1707
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:false disabled 1`] = `
|
|
1708
1708
|
<button
|
|
1709
1709
|
aria-label="search"
|
|
1710
1710
|
className=""
|
|
@@ -1772,7 +1772,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false di
|
|
|
1772
1772
|
</button>
|
|
1773
1773
|
`;
|
|
1774
1774
|
|
|
1775
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
1775
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:false focused 1`] = `
|
|
1776
1776
|
<button
|
|
1777
1777
|
aria-label="search"
|
|
1778
1778
|
className=""
|
|
@@ -1844,7 +1844,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false fo
|
|
|
1844
1844
|
</button>
|
|
1845
1845
|
`;
|
|
1846
1846
|
|
|
1847
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
1847
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:false hovered 1`] = `
|
|
1848
1848
|
<button
|
|
1849
1849
|
aria-label="search"
|
|
1850
1850
|
className=""
|
|
@@ -1916,7 +1916,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false ho
|
|
|
1916
1916
|
</button>
|
|
1917
1917
|
`;
|
|
1918
1918
|
|
|
1919
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
1919
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:false pressed 1`] = `
|
|
1920
1920
|
<button
|
|
1921
1921
|
aria-label="search"
|
|
1922
1922
|
className=""
|
|
@@ -1988,7 +1988,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:false pr
|
|
|
1988
1988
|
</button>
|
|
1989
1989
|
`;
|
|
1990
1990
|
|
|
1991
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
1991
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:true disabled 1`] = `
|
|
1992
1992
|
<button
|
|
1993
1993
|
aria-label="search"
|
|
1994
1994
|
className=""
|
|
@@ -2056,7 +2056,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true dis
|
|
|
2056
2056
|
</button>
|
|
2057
2057
|
`;
|
|
2058
2058
|
|
|
2059
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
2059
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:true focused 1`] = `
|
|
2060
2060
|
<button
|
|
2061
2061
|
aria-label="search"
|
|
2062
2062
|
className=""
|
|
@@ -2128,7 +2128,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true foc
|
|
|
2128
2128
|
</button>
|
|
2129
2129
|
`;
|
|
2130
2130
|
|
|
2131
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
2131
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:true hovered 1`] = `
|
|
2132
2132
|
<button
|
|
2133
2133
|
aria-label="search"
|
|
2134
2134
|
className=""
|
|
@@ -2200,7 +2200,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true hov
|
|
|
2200
2200
|
</button>
|
|
2201
2201
|
`;
|
|
2202
2202
|
|
|
2203
|
-
exports[`IconButtonCore kind:primary color:destructive size:
|
|
2203
|
+
exports[`IconButtonCore kind:primary color:destructive size:medium light:true pressed 1`] = `
|
|
2204
2204
|
<button
|
|
2205
2205
|
aria-label="search"
|
|
2206
2206
|
className=""
|
|
@@ -2272,7 +2272,7 @@ exports[`IconButtonCore kind:primary color:destructive size:small light:true pre
|
|
|
2272
2272
|
</button>
|
|
2273
2273
|
`;
|
|
2274
2274
|
|
|
2275
|
-
exports[`IconButtonCore kind:
|
|
2275
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:false disabled 1`] = `
|
|
2276
2276
|
<button
|
|
2277
2277
|
aria-label="search"
|
|
2278
2278
|
className=""
|
|
@@ -2304,7 +2304,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false di
|
|
|
2304
2304
|
"color": "rgba(33,36,44,0.32)",
|
|
2305
2305
|
"cursor": "default",
|
|
2306
2306
|
"display": "inline-flex",
|
|
2307
|
-
"height":
|
|
2307
|
+
"height": 32,
|
|
2308
2308
|
"justifyContent": "center",
|
|
2309
2309
|
"margin": -8,
|
|
2310
2310
|
"outline": "none",
|
|
@@ -2312,7 +2312,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false di
|
|
|
2312
2312
|
"position": "relative",
|
|
2313
2313
|
"textDecoration": "none",
|
|
2314
2314
|
"touchAction": "manipulation",
|
|
2315
|
-
"width":
|
|
2315
|
+
"width": 32,
|
|
2316
2316
|
}
|
|
2317
2317
|
}
|
|
2318
2318
|
tabIndex={-1}
|
|
@@ -2340,7 +2340,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false di
|
|
|
2340
2340
|
</button>
|
|
2341
2341
|
`;
|
|
2342
2342
|
|
|
2343
|
-
exports[`IconButtonCore kind:
|
|
2343
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:false focused 1`] = `
|
|
2344
2344
|
<button
|
|
2345
2345
|
aria-label="search"
|
|
2346
2346
|
className=""
|
|
@@ -2368,15 +2368,15 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false fo
|
|
|
2368
2368
|
"alignItems": "center",
|
|
2369
2369
|
"background": "none",
|
|
2370
2370
|
"border": "none",
|
|
2371
|
-
"borderColor": "#
|
|
2371
|
+
"borderColor": "#d92916",
|
|
2372
2372
|
"borderRadius": 4,
|
|
2373
2373
|
"borderStyle": "solid",
|
|
2374
2374
|
"borderWidth": 2,
|
|
2375
2375
|
"boxSizing": "border-box",
|
|
2376
|
-
"color": "#
|
|
2376
|
+
"color": "#d92916",
|
|
2377
2377
|
"cursor": "pointer",
|
|
2378
2378
|
"display": "inline-flex",
|
|
2379
|
-
"height":
|
|
2379
|
+
"height": 32,
|
|
2380
2380
|
"justifyContent": "center",
|
|
2381
2381
|
"margin": -8,
|
|
2382
2382
|
"outline": "none",
|
|
@@ -2384,7 +2384,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false fo
|
|
|
2384
2384
|
"position": "relative",
|
|
2385
2385
|
"textDecoration": "none",
|
|
2386
2386
|
"touchAction": "manipulation",
|
|
2387
|
-
"width":
|
|
2387
|
+
"width": 32,
|
|
2388
2388
|
}
|
|
2389
2389
|
}
|
|
2390
2390
|
tabIndex={0}
|
|
@@ -2412,7 +2412,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false fo
|
|
|
2412
2412
|
</button>
|
|
2413
2413
|
`;
|
|
2414
2414
|
|
|
2415
|
-
exports[`IconButtonCore kind:
|
|
2415
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:false hovered 1`] = `
|
|
2416
2416
|
<button
|
|
2417
2417
|
aria-label="search"
|
|
2418
2418
|
className=""
|
|
@@ -2440,15 +2440,15 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false ho
|
|
|
2440
2440
|
"alignItems": "center",
|
|
2441
2441
|
"background": "none",
|
|
2442
2442
|
"border": "none",
|
|
2443
|
-
"borderColor": "#
|
|
2443
|
+
"borderColor": "#d92916",
|
|
2444
2444
|
"borderRadius": 4,
|
|
2445
2445
|
"borderStyle": "solid",
|
|
2446
2446
|
"borderWidth": 2,
|
|
2447
2447
|
"boxSizing": "border-box",
|
|
2448
|
-
"color": "#
|
|
2448
|
+
"color": "#d92916",
|
|
2449
2449
|
"cursor": "pointer",
|
|
2450
2450
|
"display": "inline-flex",
|
|
2451
|
-
"height":
|
|
2451
|
+
"height": 32,
|
|
2452
2452
|
"justifyContent": "center",
|
|
2453
2453
|
"margin": -8,
|
|
2454
2454
|
"outline": "none",
|
|
@@ -2456,7 +2456,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false ho
|
|
|
2456
2456
|
"position": "relative",
|
|
2457
2457
|
"textDecoration": "none",
|
|
2458
2458
|
"touchAction": "manipulation",
|
|
2459
|
-
"width":
|
|
2459
|
+
"width": 32,
|
|
2460
2460
|
}
|
|
2461
2461
|
}
|
|
2462
2462
|
tabIndex={0}
|
|
@@ -2484,7 +2484,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false ho
|
|
|
2484
2484
|
</button>
|
|
2485
2485
|
`;
|
|
2486
2486
|
|
|
2487
|
-
exports[`IconButtonCore kind:
|
|
2487
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:false pressed 1`] = `
|
|
2488
2488
|
<button
|
|
2489
2489
|
aria-label="search"
|
|
2490
2490
|
className=""
|
|
@@ -2512,15 +2512,15 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false pr
|
|
|
2512
2512
|
"alignItems": "center",
|
|
2513
2513
|
"background": "none",
|
|
2514
2514
|
"border": "none",
|
|
2515
|
-
"borderColor": "#
|
|
2515
|
+
"borderColor": "#9e271d",
|
|
2516
2516
|
"borderRadius": 4,
|
|
2517
2517
|
"borderStyle": "solid",
|
|
2518
2518
|
"borderWidth": 2,
|
|
2519
2519
|
"boxSizing": "border-box",
|
|
2520
|
-
"color": "#
|
|
2520
|
+
"color": "#9e271d",
|
|
2521
2521
|
"cursor": "pointer",
|
|
2522
2522
|
"display": "inline-flex",
|
|
2523
|
-
"height":
|
|
2523
|
+
"height": 32,
|
|
2524
2524
|
"justifyContent": "center",
|
|
2525
2525
|
"margin": -8,
|
|
2526
2526
|
"outline": "none",
|
|
@@ -2528,7 +2528,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false pr
|
|
|
2528
2528
|
"position": "relative",
|
|
2529
2529
|
"textDecoration": "none",
|
|
2530
2530
|
"touchAction": "manipulation",
|
|
2531
|
-
"width":
|
|
2531
|
+
"width": 32,
|
|
2532
2532
|
}
|
|
2533
2533
|
}
|
|
2534
2534
|
tabIndex={0}
|
|
@@ -2556,7 +2556,7 @@ exports[`IconButtonCore kind:secondary color:default size:default light:false pr
|
|
|
2556
2556
|
</button>
|
|
2557
2557
|
`;
|
|
2558
2558
|
|
|
2559
|
-
exports[`IconButtonCore kind:
|
|
2559
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:true disabled 1`] = `
|
|
2560
2560
|
<button
|
|
2561
2561
|
aria-label="search"
|
|
2562
2562
|
className=""
|
|
@@ -2585,10 +2585,10 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false disa
|
|
|
2585
2585
|
"background": "none",
|
|
2586
2586
|
"border": "none",
|
|
2587
2587
|
"boxSizing": "border-box",
|
|
2588
|
-
"color": "
|
|
2588
|
+
"color": "#e56d61",
|
|
2589
2589
|
"cursor": "default",
|
|
2590
2590
|
"display": "inline-flex",
|
|
2591
|
-
"height":
|
|
2591
|
+
"height": 32,
|
|
2592
2592
|
"justifyContent": "center",
|
|
2593
2593
|
"margin": -8,
|
|
2594
2594
|
"outline": "none",
|
|
@@ -2596,7 +2596,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false disa
|
|
|
2596
2596
|
"position": "relative",
|
|
2597
2597
|
"textDecoration": "none",
|
|
2598
2598
|
"touchAction": "manipulation",
|
|
2599
|
-
"width":
|
|
2599
|
+
"width": 32,
|
|
2600
2600
|
}
|
|
2601
2601
|
}
|
|
2602
2602
|
tabIndex={-1}
|
|
@@ -2624,7 +2624,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false disa
|
|
|
2624
2624
|
</button>
|
|
2625
2625
|
`;
|
|
2626
2626
|
|
|
2627
|
-
exports[`IconButtonCore kind:
|
|
2627
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:true focused 1`] = `
|
|
2628
2628
|
<button
|
|
2629
2629
|
aria-label="search"
|
|
2630
2630
|
className=""
|
|
@@ -2652,15 +2652,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false focu
|
|
|
2652
2652
|
"alignItems": "center",
|
|
2653
2653
|
"background": "none",
|
|
2654
2654
|
"border": "none",
|
|
2655
|
-
"borderColor": "#
|
|
2655
|
+
"borderColor": "#ffffff",
|
|
2656
2656
|
"borderRadius": 4,
|
|
2657
2657
|
"borderStyle": "solid",
|
|
2658
2658
|
"borderWidth": 2,
|
|
2659
2659
|
"boxSizing": "border-box",
|
|
2660
|
-
"color": "#
|
|
2660
|
+
"color": "#ffffff",
|
|
2661
2661
|
"cursor": "pointer",
|
|
2662
2662
|
"display": "inline-flex",
|
|
2663
|
-
"height":
|
|
2663
|
+
"height": 32,
|
|
2664
2664
|
"justifyContent": "center",
|
|
2665
2665
|
"margin": -8,
|
|
2666
2666
|
"outline": "none",
|
|
@@ -2668,7 +2668,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false focu
|
|
|
2668
2668
|
"position": "relative",
|
|
2669
2669
|
"textDecoration": "none",
|
|
2670
2670
|
"touchAction": "manipulation",
|
|
2671
|
-
"width":
|
|
2671
|
+
"width": 32,
|
|
2672
2672
|
}
|
|
2673
2673
|
}
|
|
2674
2674
|
tabIndex={0}
|
|
@@ -2696,7 +2696,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false focu
|
|
|
2696
2696
|
</button>
|
|
2697
2697
|
`;
|
|
2698
2698
|
|
|
2699
|
-
exports[`IconButtonCore kind:
|
|
2699
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:true hovered 1`] = `
|
|
2700
2700
|
<button
|
|
2701
2701
|
aria-label="search"
|
|
2702
2702
|
className=""
|
|
@@ -2724,15 +2724,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false hove
|
|
|
2724
2724
|
"alignItems": "center",
|
|
2725
2725
|
"background": "none",
|
|
2726
2726
|
"border": "none",
|
|
2727
|
-
"borderColor": "#
|
|
2727
|
+
"borderColor": "#ffffff",
|
|
2728
2728
|
"borderRadius": 4,
|
|
2729
2729
|
"borderStyle": "solid",
|
|
2730
2730
|
"borderWidth": 2,
|
|
2731
2731
|
"boxSizing": "border-box",
|
|
2732
|
-
"color": "#
|
|
2732
|
+
"color": "#ffffff",
|
|
2733
2733
|
"cursor": "pointer",
|
|
2734
2734
|
"display": "inline-flex",
|
|
2735
|
-
"height":
|
|
2735
|
+
"height": 32,
|
|
2736
2736
|
"justifyContent": "center",
|
|
2737
2737
|
"margin": -8,
|
|
2738
2738
|
"outline": "none",
|
|
@@ -2740,7 +2740,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false hove
|
|
|
2740
2740
|
"position": "relative",
|
|
2741
2741
|
"textDecoration": "none",
|
|
2742
2742
|
"touchAction": "manipulation",
|
|
2743
|
-
"width":
|
|
2743
|
+
"width": 32,
|
|
2744
2744
|
}
|
|
2745
2745
|
}
|
|
2746
2746
|
tabIndex={0}
|
|
@@ -2768,7 +2768,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false hove
|
|
|
2768
2768
|
</button>
|
|
2769
2769
|
`;
|
|
2770
2770
|
|
|
2771
|
-
exports[`IconButtonCore kind:
|
|
2771
|
+
exports[`IconButtonCore kind:primary color:destructive size:small light:true pressed 1`] = `
|
|
2772
2772
|
<button
|
|
2773
2773
|
aria-label="search"
|
|
2774
2774
|
className=""
|
|
@@ -2796,15 +2796,15 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false pres
|
|
|
2796
2796
|
"alignItems": "center",
|
|
2797
2797
|
"background": "none",
|
|
2798
2798
|
"border": "none",
|
|
2799
|
-
"borderColor": "#
|
|
2799
|
+
"borderColor": "#f3bbb4",
|
|
2800
2800
|
"borderRadius": 4,
|
|
2801
2801
|
"borderStyle": "solid",
|
|
2802
2802
|
"borderWidth": 2,
|
|
2803
2803
|
"boxSizing": "border-box",
|
|
2804
|
-
"color": "#
|
|
2804
|
+
"color": "#f3bbb4",
|
|
2805
2805
|
"cursor": "pointer",
|
|
2806
2806
|
"display": "inline-flex",
|
|
2807
|
-
"height":
|
|
2807
|
+
"height": 32,
|
|
2808
2808
|
"justifyContent": "center",
|
|
2809
2809
|
"margin": -8,
|
|
2810
2810
|
"outline": "none",
|
|
@@ -2812,7 +2812,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false pres
|
|
|
2812
2812
|
"position": "relative",
|
|
2813
2813
|
"textDecoration": "none",
|
|
2814
2814
|
"touchAction": "manipulation",
|
|
2815
|
-
"width":
|
|
2815
|
+
"width": 32,
|
|
2816
2816
|
}
|
|
2817
2817
|
}
|
|
2818
2818
|
tabIndex={0}
|
|
@@ -2840,7 +2840,7 @@ exports[`IconButtonCore kind:secondary color:default size:small light:false pres
|
|
|
2840
2840
|
</button>
|
|
2841
2841
|
`;
|
|
2842
2842
|
|
|
2843
|
-
exports[`IconButtonCore kind:
|
|
2843
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false disabled 1`] = `
|
|
2844
2844
|
<button
|
|
2845
2845
|
aria-label="search"
|
|
2846
2846
|
className=""
|
|
@@ -2872,7 +2872,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2872
2872
|
"color": "rgba(33,36,44,0.32)",
|
|
2873
2873
|
"cursor": "default",
|
|
2874
2874
|
"display": "inline-flex",
|
|
2875
|
-
"height":
|
|
2875
|
+
"height": 24,
|
|
2876
2876
|
"justifyContent": "center",
|
|
2877
2877
|
"margin": -8,
|
|
2878
2878
|
"outline": "none",
|
|
@@ -2880,7 +2880,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2880
2880
|
"position": "relative",
|
|
2881
2881
|
"textDecoration": "none",
|
|
2882
2882
|
"touchAction": "manipulation",
|
|
2883
|
-
"width":
|
|
2883
|
+
"width": 24,
|
|
2884
2884
|
}
|
|
2885
2885
|
}
|
|
2886
2886
|
tabIndex={-1}
|
|
@@ -2888,7 +2888,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2888
2888
|
>
|
|
2889
2889
|
<svg
|
|
2890
2890
|
className=""
|
|
2891
|
-
height={
|
|
2891
|
+
height={16}
|
|
2892
2892
|
style={
|
|
2893
2893
|
{
|
|
2894
2894
|
"display": "inline-block",
|
|
@@ -2897,18 +2897,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2897
2897
|
"verticalAlign": "text-bottom",
|
|
2898
2898
|
}
|
|
2899
2899
|
}
|
|
2900
|
-
viewBox="0 0
|
|
2901
|
-
width={
|
|
2900
|
+
viewBox="0 0 16 16"
|
|
2901
|
+
width={16}
|
|
2902
2902
|
>
|
|
2903
2903
|
<path
|
|
2904
|
-
d="M11
|
|
2904
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
2905
2905
|
fill="currentColor"
|
|
2906
2906
|
/>
|
|
2907
2907
|
</svg>
|
|
2908
2908
|
</button>
|
|
2909
2909
|
`;
|
|
2910
2910
|
|
|
2911
|
-
exports[`IconButtonCore kind:
|
|
2911
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false focused 1`] = `
|
|
2912
2912
|
<button
|
|
2913
2913
|
aria-label="search"
|
|
2914
2914
|
className=""
|
|
@@ -2944,7 +2944,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2944
2944
|
"color": "#d92916",
|
|
2945
2945
|
"cursor": "pointer",
|
|
2946
2946
|
"display": "inline-flex",
|
|
2947
|
-
"height":
|
|
2947
|
+
"height": 24,
|
|
2948
2948
|
"justifyContent": "center",
|
|
2949
2949
|
"margin": -8,
|
|
2950
2950
|
"outline": "none",
|
|
@@ -2952,7 +2952,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2952
2952
|
"position": "relative",
|
|
2953
2953
|
"textDecoration": "none",
|
|
2954
2954
|
"touchAction": "manipulation",
|
|
2955
|
-
"width":
|
|
2955
|
+
"width": 24,
|
|
2956
2956
|
}
|
|
2957
2957
|
}
|
|
2958
2958
|
tabIndex={0}
|
|
@@ -2960,7 +2960,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2960
2960
|
>
|
|
2961
2961
|
<svg
|
|
2962
2962
|
className=""
|
|
2963
|
-
height={
|
|
2963
|
+
height={16}
|
|
2964
2964
|
style={
|
|
2965
2965
|
{
|
|
2966
2966
|
"display": "inline-block",
|
|
@@ -2969,18 +2969,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
2969
2969
|
"verticalAlign": "text-bottom",
|
|
2970
2970
|
}
|
|
2971
2971
|
}
|
|
2972
|
-
viewBox="0 0
|
|
2973
|
-
width={
|
|
2972
|
+
viewBox="0 0 16 16"
|
|
2973
|
+
width={16}
|
|
2974
2974
|
>
|
|
2975
2975
|
<path
|
|
2976
|
-
d="M11
|
|
2976
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
2977
2977
|
fill="currentColor"
|
|
2978
2978
|
/>
|
|
2979
2979
|
</svg>
|
|
2980
2980
|
</button>
|
|
2981
2981
|
`;
|
|
2982
2982
|
|
|
2983
|
-
exports[`IconButtonCore kind:
|
|
2983
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false hovered 1`] = `
|
|
2984
2984
|
<button
|
|
2985
2985
|
aria-label="search"
|
|
2986
2986
|
className=""
|
|
@@ -3016,7 +3016,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3016
3016
|
"color": "#d92916",
|
|
3017
3017
|
"cursor": "pointer",
|
|
3018
3018
|
"display": "inline-flex",
|
|
3019
|
-
"height":
|
|
3019
|
+
"height": 24,
|
|
3020
3020
|
"justifyContent": "center",
|
|
3021
3021
|
"margin": -8,
|
|
3022
3022
|
"outline": "none",
|
|
@@ -3024,7 +3024,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3024
3024
|
"position": "relative",
|
|
3025
3025
|
"textDecoration": "none",
|
|
3026
3026
|
"touchAction": "manipulation",
|
|
3027
|
-
"width":
|
|
3027
|
+
"width": 24,
|
|
3028
3028
|
}
|
|
3029
3029
|
}
|
|
3030
3030
|
tabIndex={0}
|
|
@@ -3032,7 +3032,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3032
3032
|
>
|
|
3033
3033
|
<svg
|
|
3034
3034
|
className=""
|
|
3035
|
-
height={
|
|
3035
|
+
height={16}
|
|
3036
3036
|
style={
|
|
3037
3037
|
{
|
|
3038
3038
|
"display": "inline-block",
|
|
@@ -3041,18 +3041,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3041
3041
|
"verticalAlign": "text-bottom",
|
|
3042
3042
|
}
|
|
3043
3043
|
}
|
|
3044
|
-
viewBox="0 0
|
|
3045
|
-
width={
|
|
3044
|
+
viewBox="0 0 16 16"
|
|
3045
|
+
width={16}
|
|
3046
3046
|
>
|
|
3047
3047
|
<path
|
|
3048
|
-
d="M11
|
|
3048
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3049
3049
|
fill="currentColor"
|
|
3050
3050
|
/>
|
|
3051
3051
|
</svg>
|
|
3052
3052
|
</button>
|
|
3053
3053
|
`;
|
|
3054
3054
|
|
|
3055
|
-
exports[`IconButtonCore kind:
|
|
3055
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:false pressed 1`] = `
|
|
3056
3056
|
<button
|
|
3057
3057
|
aria-label="search"
|
|
3058
3058
|
className=""
|
|
@@ -3088,7 +3088,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3088
3088
|
"color": "#9e271d",
|
|
3089
3089
|
"cursor": "pointer",
|
|
3090
3090
|
"display": "inline-flex",
|
|
3091
|
-
"height":
|
|
3091
|
+
"height": 24,
|
|
3092
3092
|
"justifyContent": "center",
|
|
3093
3093
|
"margin": -8,
|
|
3094
3094
|
"outline": "none",
|
|
@@ -3096,7 +3096,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3096
3096
|
"position": "relative",
|
|
3097
3097
|
"textDecoration": "none",
|
|
3098
3098
|
"touchAction": "manipulation",
|
|
3099
|
-
"width":
|
|
3099
|
+
"width": 24,
|
|
3100
3100
|
}
|
|
3101
3101
|
}
|
|
3102
3102
|
tabIndex={0}
|
|
@@ -3104,7 +3104,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3104
3104
|
>
|
|
3105
3105
|
<svg
|
|
3106
3106
|
className=""
|
|
3107
|
-
height={
|
|
3107
|
+
height={16}
|
|
3108
3108
|
style={
|
|
3109
3109
|
{
|
|
3110
3110
|
"display": "inline-block",
|
|
@@ -3113,18 +3113,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:default light:fals
|
|
|
3113
3113
|
"verticalAlign": "text-bottom",
|
|
3114
3114
|
}
|
|
3115
3115
|
}
|
|
3116
|
-
viewBox="0 0
|
|
3117
|
-
width={
|
|
3116
|
+
viewBox="0 0 16 16"
|
|
3117
|
+
width={16}
|
|
3118
3118
|
>
|
|
3119
3119
|
<path
|
|
3120
|
-
d="M11
|
|
3120
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3121
3121
|
fill="currentColor"
|
|
3122
3122
|
/>
|
|
3123
3123
|
</svg>
|
|
3124
3124
|
</button>
|
|
3125
3125
|
`;
|
|
3126
3126
|
|
|
3127
|
-
exports[`IconButtonCore kind:
|
|
3127
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true disabled 1`] = `
|
|
3128
3128
|
<button
|
|
3129
3129
|
aria-label="search"
|
|
3130
3130
|
className=""
|
|
@@ -3153,10 +3153,10 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3153
3153
|
"background": "none",
|
|
3154
3154
|
"border": "none",
|
|
3155
3155
|
"boxSizing": "border-box",
|
|
3156
|
-
"color": "
|
|
3156
|
+
"color": "#e56d61",
|
|
3157
3157
|
"cursor": "default",
|
|
3158
3158
|
"display": "inline-flex",
|
|
3159
|
-
"height":
|
|
3159
|
+
"height": 24,
|
|
3160
3160
|
"justifyContent": "center",
|
|
3161
3161
|
"margin": -8,
|
|
3162
3162
|
"outline": "none",
|
|
@@ -3164,7 +3164,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3164
3164
|
"position": "relative",
|
|
3165
3165
|
"textDecoration": "none",
|
|
3166
3166
|
"touchAction": "manipulation",
|
|
3167
|
-
"width":
|
|
3167
|
+
"width": 24,
|
|
3168
3168
|
}
|
|
3169
3169
|
}
|
|
3170
3170
|
tabIndex={-1}
|
|
@@ -3172,7 +3172,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3172
3172
|
>
|
|
3173
3173
|
<svg
|
|
3174
3174
|
className=""
|
|
3175
|
-
height={
|
|
3175
|
+
height={16}
|
|
3176
3176
|
style={
|
|
3177
3177
|
{
|
|
3178
3178
|
"display": "inline-block",
|
|
@@ -3181,18 +3181,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3181
3181
|
"verticalAlign": "text-bottom",
|
|
3182
3182
|
}
|
|
3183
3183
|
}
|
|
3184
|
-
viewBox="0 0
|
|
3185
|
-
width={
|
|
3184
|
+
viewBox="0 0 16 16"
|
|
3185
|
+
width={16}
|
|
3186
3186
|
>
|
|
3187
3187
|
<path
|
|
3188
|
-
d="M11
|
|
3188
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3189
3189
|
fill="currentColor"
|
|
3190
3190
|
/>
|
|
3191
3191
|
</svg>
|
|
3192
3192
|
</button>
|
|
3193
3193
|
`;
|
|
3194
3194
|
|
|
3195
|
-
exports[`IconButtonCore kind:
|
|
3195
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true focused 1`] = `
|
|
3196
3196
|
<button
|
|
3197
3197
|
aria-label="search"
|
|
3198
3198
|
className=""
|
|
@@ -3220,15 +3220,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3220
3220
|
"alignItems": "center",
|
|
3221
3221
|
"background": "none",
|
|
3222
3222
|
"border": "none",
|
|
3223
|
-
"borderColor": "#
|
|
3223
|
+
"borderColor": "#ffffff",
|
|
3224
3224
|
"borderRadius": 4,
|
|
3225
3225
|
"borderStyle": "solid",
|
|
3226
3226
|
"borderWidth": 2,
|
|
3227
3227
|
"boxSizing": "border-box",
|
|
3228
|
-
"color": "#
|
|
3228
|
+
"color": "#ffffff",
|
|
3229
3229
|
"cursor": "pointer",
|
|
3230
3230
|
"display": "inline-flex",
|
|
3231
|
-
"height":
|
|
3231
|
+
"height": 24,
|
|
3232
3232
|
"justifyContent": "center",
|
|
3233
3233
|
"margin": -8,
|
|
3234
3234
|
"outline": "none",
|
|
@@ -3236,7 +3236,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3236
3236
|
"position": "relative",
|
|
3237
3237
|
"textDecoration": "none",
|
|
3238
3238
|
"touchAction": "manipulation",
|
|
3239
|
-
"width":
|
|
3239
|
+
"width": 24,
|
|
3240
3240
|
}
|
|
3241
3241
|
}
|
|
3242
3242
|
tabIndex={0}
|
|
@@ -3244,7 +3244,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3244
3244
|
>
|
|
3245
3245
|
<svg
|
|
3246
3246
|
className=""
|
|
3247
|
-
height={
|
|
3247
|
+
height={16}
|
|
3248
3248
|
style={
|
|
3249
3249
|
{
|
|
3250
3250
|
"display": "inline-block",
|
|
@@ -3253,18 +3253,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3253
3253
|
"verticalAlign": "text-bottom",
|
|
3254
3254
|
}
|
|
3255
3255
|
}
|
|
3256
|
-
viewBox="0 0
|
|
3257
|
-
width={
|
|
3256
|
+
viewBox="0 0 16 16"
|
|
3257
|
+
width={16}
|
|
3258
3258
|
>
|
|
3259
3259
|
<path
|
|
3260
|
-
d="M11
|
|
3260
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3261
3261
|
fill="currentColor"
|
|
3262
3262
|
/>
|
|
3263
3263
|
</svg>
|
|
3264
3264
|
</button>
|
|
3265
3265
|
`;
|
|
3266
3266
|
|
|
3267
|
-
exports[`IconButtonCore kind:
|
|
3267
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true hovered 1`] = `
|
|
3268
3268
|
<button
|
|
3269
3269
|
aria-label="search"
|
|
3270
3270
|
className=""
|
|
@@ -3292,15 +3292,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3292
3292
|
"alignItems": "center",
|
|
3293
3293
|
"background": "none",
|
|
3294
3294
|
"border": "none",
|
|
3295
|
-
"borderColor": "#
|
|
3295
|
+
"borderColor": "#ffffff",
|
|
3296
3296
|
"borderRadius": 4,
|
|
3297
3297
|
"borderStyle": "solid",
|
|
3298
3298
|
"borderWidth": 2,
|
|
3299
3299
|
"boxSizing": "border-box",
|
|
3300
|
-
"color": "#
|
|
3300
|
+
"color": "#ffffff",
|
|
3301
3301
|
"cursor": "pointer",
|
|
3302
3302
|
"display": "inline-flex",
|
|
3303
|
-
"height":
|
|
3303
|
+
"height": 24,
|
|
3304
3304
|
"justifyContent": "center",
|
|
3305
3305
|
"margin": -8,
|
|
3306
3306
|
"outline": "none",
|
|
@@ -3308,7 +3308,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3308
3308
|
"position": "relative",
|
|
3309
3309
|
"textDecoration": "none",
|
|
3310
3310
|
"touchAction": "manipulation",
|
|
3311
|
-
"width":
|
|
3311
|
+
"width": 24,
|
|
3312
3312
|
}
|
|
3313
3313
|
}
|
|
3314
3314
|
tabIndex={0}
|
|
@@ -3316,7 +3316,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3316
3316
|
>
|
|
3317
3317
|
<svg
|
|
3318
3318
|
className=""
|
|
3319
|
-
height={
|
|
3319
|
+
height={16}
|
|
3320
3320
|
style={
|
|
3321
3321
|
{
|
|
3322
3322
|
"display": "inline-block",
|
|
@@ -3325,18 +3325,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3325
3325
|
"verticalAlign": "text-bottom",
|
|
3326
3326
|
}
|
|
3327
3327
|
}
|
|
3328
|
-
viewBox="0 0
|
|
3329
|
-
width={
|
|
3328
|
+
viewBox="0 0 16 16"
|
|
3329
|
+
width={16}
|
|
3330
3330
|
>
|
|
3331
3331
|
<path
|
|
3332
|
-
d="M11
|
|
3332
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3333
3333
|
fill="currentColor"
|
|
3334
3334
|
/>
|
|
3335
3335
|
</svg>
|
|
3336
3336
|
</button>
|
|
3337
3337
|
`;
|
|
3338
3338
|
|
|
3339
|
-
exports[`IconButtonCore kind:
|
|
3339
|
+
exports[`IconButtonCore kind:primary color:destructive size:xsmall light:true pressed 1`] = `
|
|
3340
3340
|
<button
|
|
3341
3341
|
aria-label="search"
|
|
3342
3342
|
className=""
|
|
@@ -3364,15 +3364,15 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3364
3364
|
"alignItems": "center",
|
|
3365
3365
|
"background": "none",
|
|
3366
3366
|
"border": "none",
|
|
3367
|
-
"borderColor": "#
|
|
3367
|
+
"borderColor": "#f3bbb4",
|
|
3368
3368
|
"borderRadius": 4,
|
|
3369
3369
|
"borderStyle": "solid",
|
|
3370
3370
|
"borderWidth": 2,
|
|
3371
3371
|
"boxSizing": "border-box",
|
|
3372
|
-
"color": "#
|
|
3372
|
+
"color": "#f3bbb4",
|
|
3373
3373
|
"cursor": "pointer",
|
|
3374
3374
|
"display": "inline-flex",
|
|
3375
|
-
"height":
|
|
3375
|
+
"height": 24,
|
|
3376
3376
|
"justifyContent": "center",
|
|
3377
3377
|
"margin": -8,
|
|
3378
3378
|
"outline": "none",
|
|
@@ -3380,7 +3380,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3380
3380
|
"position": "relative",
|
|
3381
3381
|
"textDecoration": "none",
|
|
3382
3382
|
"touchAction": "manipulation",
|
|
3383
|
-
"width":
|
|
3383
|
+
"width": 24,
|
|
3384
3384
|
}
|
|
3385
3385
|
}
|
|
3386
3386
|
tabIndex={0}
|
|
@@ -3388,7 +3388,7 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3388
3388
|
>
|
|
3389
3389
|
<svg
|
|
3390
3390
|
className=""
|
|
3391
|
-
height={
|
|
3391
|
+
height={16}
|
|
3392
3392
|
style={
|
|
3393
3393
|
{
|
|
3394
3394
|
"display": "inline-block",
|
|
@@ -3397,18 +3397,18 @@ exports[`IconButtonCore kind:secondary color:destructive size:small light:false
|
|
|
3397
3397
|
"verticalAlign": "text-bottom",
|
|
3398
3398
|
}
|
|
3399
3399
|
}
|
|
3400
|
-
viewBox="0 0
|
|
3401
|
-
width={
|
|
3400
|
+
viewBox="0 0 16 16"
|
|
3401
|
+
width={16}
|
|
3402
3402
|
>
|
|
3403
3403
|
<path
|
|
3404
|
-
d="M11
|
|
3404
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
3405
3405
|
fill="currentColor"
|
|
3406
3406
|
/>
|
|
3407
3407
|
</svg>
|
|
3408
3408
|
</button>
|
|
3409
3409
|
`;
|
|
3410
3410
|
|
|
3411
|
-
exports[`IconButtonCore kind:
|
|
3411
|
+
exports[`IconButtonCore kind:secondary color:default size:medium light:false disabled 1`] = `
|
|
3412
3412
|
<button
|
|
3413
3413
|
aria-label="search"
|
|
3414
3414
|
className=""
|
|
@@ -3476,7 +3476,7 @@ exports[`IconButtonCore kind:tertiary color:default size:default light:false dis
|
|
|
3476
3476
|
</button>
|
|
3477
3477
|
`;
|
|
3478
3478
|
|
|
3479
|
-
exports[`IconButtonCore kind:
|
|
3479
|
+
exports[`IconButtonCore kind:secondary color:default size:medium light:false focused 1`] = `
|
|
3480
3480
|
<button
|
|
3481
3481
|
aria-label="search"
|
|
3482
3482
|
className=""
|
|
@@ -3548,7 +3548,7 @@ exports[`IconButtonCore kind:tertiary color:default size:default light:false foc
|
|
|
3548
3548
|
</button>
|
|
3549
3549
|
`;
|
|
3550
3550
|
|
|
3551
|
-
exports[`IconButtonCore kind:
|
|
3551
|
+
exports[`IconButtonCore kind:secondary color:default size:medium light:false hovered 1`] = `
|
|
3552
3552
|
<button
|
|
3553
3553
|
aria-label="search"
|
|
3554
3554
|
className=""
|
|
@@ -3620,7 +3620,7 @@ exports[`IconButtonCore kind:tertiary color:default size:default light:false hov
|
|
|
3620
3620
|
</button>
|
|
3621
3621
|
`;
|
|
3622
3622
|
|
|
3623
|
-
exports[`IconButtonCore kind:
|
|
3623
|
+
exports[`IconButtonCore kind:secondary color:default size:medium light:false pressed 1`] = `
|
|
3624
3624
|
<button
|
|
3625
3625
|
aria-label="search"
|
|
3626
3626
|
className=""
|
|
@@ -3692,7 +3692,7 @@ exports[`IconButtonCore kind:tertiary color:default size:default light:false pre
|
|
|
3692
3692
|
</button>
|
|
3693
3693
|
`;
|
|
3694
3694
|
|
|
3695
|
-
exports[`IconButtonCore kind:
|
|
3695
|
+
exports[`IconButtonCore kind:secondary color:default size:small light:false disabled 1`] = `
|
|
3696
3696
|
<button
|
|
3697
3697
|
aria-label="search"
|
|
3698
3698
|
className=""
|
|
@@ -3724,7 +3724,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false disab
|
|
|
3724
3724
|
"color": "rgba(33,36,44,0.32)",
|
|
3725
3725
|
"cursor": "default",
|
|
3726
3726
|
"display": "inline-flex",
|
|
3727
|
-
"height":
|
|
3727
|
+
"height": 32,
|
|
3728
3728
|
"justifyContent": "center",
|
|
3729
3729
|
"margin": -8,
|
|
3730
3730
|
"outline": "none",
|
|
@@ -3732,7 +3732,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false disab
|
|
|
3732
3732
|
"position": "relative",
|
|
3733
3733
|
"textDecoration": "none",
|
|
3734
3734
|
"touchAction": "manipulation",
|
|
3735
|
-
"width":
|
|
3735
|
+
"width": 32,
|
|
3736
3736
|
}
|
|
3737
3737
|
}
|
|
3738
3738
|
tabIndex={-1}
|
|
@@ -3760,7 +3760,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false disab
|
|
|
3760
3760
|
</button>
|
|
3761
3761
|
`;
|
|
3762
3762
|
|
|
3763
|
-
exports[`IconButtonCore kind:
|
|
3763
|
+
exports[`IconButtonCore kind:secondary color:default size:small light:false focused 1`] = `
|
|
3764
3764
|
<button
|
|
3765
3765
|
aria-label="search"
|
|
3766
3766
|
className=""
|
|
@@ -3796,7 +3796,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false focus
|
|
|
3796
3796
|
"color": "#1865f2",
|
|
3797
3797
|
"cursor": "pointer",
|
|
3798
3798
|
"display": "inline-flex",
|
|
3799
|
-
"height":
|
|
3799
|
+
"height": 32,
|
|
3800
3800
|
"justifyContent": "center",
|
|
3801
3801
|
"margin": -8,
|
|
3802
3802
|
"outline": "none",
|
|
@@ -3804,7 +3804,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false focus
|
|
|
3804
3804
|
"position": "relative",
|
|
3805
3805
|
"textDecoration": "none",
|
|
3806
3806
|
"touchAction": "manipulation",
|
|
3807
|
-
"width":
|
|
3807
|
+
"width": 32,
|
|
3808
3808
|
}
|
|
3809
3809
|
}
|
|
3810
3810
|
tabIndex={0}
|
|
@@ -3832,7 +3832,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false focus
|
|
|
3832
3832
|
</button>
|
|
3833
3833
|
`;
|
|
3834
3834
|
|
|
3835
|
-
exports[`IconButtonCore kind:
|
|
3835
|
+
exports[`IconButtonCore kind:secondary color:default size:small light:false hovered 1`] = `
|
|
3836
3836
|
<button
|
|
3837
3837
|
aria-label="search"
|
|
3838
3838
|
className=""
|
|
@@ -3868,7 +3868,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false hover
|
|
|
3868
3868
|
"color": "#1865f2",
|
|
3869
3869
|
"cursor": "pointer",
|
|
3870
3870
|
"display": "inline-flex",
|
|
3871
|
-
"height":
|
|
3871
|
+
"height": 32,
|
|
3872
3872
|
"justifyContent": "center",
|
|
3873
3873
|
"margin": -8,
|
|
3874
3874
|
"outline": "none",
|
|
@@ -3876,7 +3876,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false hover
|
|
|
3876
3876
|
"position": "relative",
|
|
3877
3877
|
"textDecoration": "none",
|
|
3878
3878
|
"touchAction": "manipulation",
|
|
3879
|
-
"width":
|
|
3879
|
+
"width": 32,
|
|
3880
3880
|
}
|
|
3881
3881
|
}
|
|
3882
3882
|
tabIndex={0}
|
|
@@ -3904,7 +3904,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false hover
|
|
|
3904
3904
|
</button>
|
|
3905
3905
|
`;
|
|
3906
3906
|
|
|
3907
|
-
exports[`IconButtonCore kind:
|
|
3907
|
+
exports[`IconButtonCore kind:secondary color:default size:small light:false pressed 1`] = `
|
|
3908
3908
|
<button
|
|
3909
3909
|
aria-label="search"
|
|
3910
3910
|
className=""
|
|
@@ -3940,7 +3940,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false press
|
|
|
3940
3940
|
"color": "#1b50b3",
|
|
3941
3941
|
"cursor": "pointer",
|
|
3942
3942
|
"display": "inline-flex",
|
|
3943
|
-
"height":
|
|
3943
|
+
"height": 32,
|
|
3944
3944
|
"justifyContent": "center",
|
|
3945
3945
|
"margin": -8,
|
|
3946
3946
|
"outline": "none",
|
|
@@ -3948,7 +3948,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false press
|
|
|
3948
3948
|
"position": "relative",
|
|
3949
3949
|
"textDecoration": "none",
|
|
3950
3950
|
"touchAction": "manipulation",
|
|
3951
|
-
"width":
|
|
3951
|
+
"width": 32,
|
|
3952
3952
|
}
|
|
3953
3953
|
}
|
|
3954
3954
|
tabIndex={0}
|
|
@@ -3976,7 +3976,7 @@ exports[`IconButtonCore kind:tertiary color:default size:small light:false press
|
|
|
3976
3976
|
</button>
|
|
3977
3977
|
`;
|
|
3978
3978
|
|
|
3979
|
-
exports[`IconButtonCore kind:
|
|
3979
|
+
exports[`IconButtonCore kind:secondary color:default size:xsmall light:false disabled 1`] = `
|
|
3980
3980
|
<button
|
|
3981
3981
|
aria-label="search"
|
|
3982
3982
|
className=""
|
|
@@ -4008,7 +4008,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4008
4008
|
"color": "rgba(33,36,44,0.32)",
|
|
4009
4009
|
"cursor": "default",
|
|
4010
4010
|
"display": "inline-flex",
|
|
4011
|
-
"height":
|
|
4011
|
+
"height": 24,
|
|
4012
4012
|
"justifyContent": "center",
|
|
4013
4013
|
"margin": -8,
|
|
4014
4014
|
"outline": "none",
|
|
@@ -4016,7 +4016,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4016
4016
|
"position": "relative",
|
|
4017
4017
|
"textDecoration": "none",
|
|
4018
4018
|
"touchAction": "manipulation",
|
|
4019
|
-
"width":
|
|
4019
|
+
"width": 24,
|
|
4020
4020
|
}
|
|
4021
4021
|
}
|
|
4022
4022
|
tabIndex={-1}
|
|
@@ -4024,7 +4024,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4024
4024
|
>
|
|
4025
4025
|
<svg
|
|
4026
4026
|
className=""
|
|
4027
|
-
height={
|
|
4027
|
+
height={16}
|
|
4028
4028
|
style={
|
|
4029
4029
|
{
|
|
4030
4030
|
"display": "inline-block",
|
|
@@ -4033,18 +4033,18 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4033
4033
|
"verticalAlign": "text-bottom",
|
|
4034
4034
|
}
|
|
4035
4035
|
}
|
|
4036
|
-
viewBox="0 0
|
|
4037
|
-
width={
|
|
4036
|
+
viewBox="0 0 16 16"
|
|
4037
|
+
width={16}
|
|
4038
4038
|
>
|
|
4039
4039
|
<path
|
|
4040
|
-
d="M11
|
|
4040
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4041
4041
|
fill="currentColor"
|
|
4042
4042
|
/>
|
|
4043
4043
|
</svg>
|
|
4044
4044
|
</button>
|
|
4045
4045
|
`;
|
|
4046
4046
|
|
|
4047
|
-
exports[`IconButtonCore kind:
|
|
4047
|
+
exports[`IconButtonCore kind:secondary color:default size:xsmall light:false focused 1`] = `
|
|
4048
4048
|
<button
|
|
4049
4049
|
aria-label="search"
|
|
4050
4050
|
className=""
|
|
@@ -4072,15 +4072,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4072
4072
|
"alignItems": "center",
|
|
4073
4073
|
"background": "none",
|
|
4074
4074
|
"border": "none",
|
|
4075
|
-
"borderColor": "#
|
|
4075
|
+
"borderColor": "#1865f2",
|
|
4076
4076
|
"borderRadius": 4,
|
|
4077
4077
|
"borderStyle": "solid",
|
|
4078
4078
|
"borderWidth": 2,
|
|
4079
4079
|
"boxSizing": "border-box",
|
|
4080
|
-
"color": "#
|
|
4080
|
+
"color": "#1865f2",
|
|
4081
4081
|
"cursor": "pointer",
|
|
4082
4082
|
"display": "inline-flex",
|
|
4083
|
-
"height":
|
|
4083
|
+
"height": 24,
|
|
4084
4084
|
"justifyContent": "center",
|
|
4085
4085
|
"margin": -8,
|
|
4086
4086
|
"outline": "none",
|
|
@@ -4088,7 +4088,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4088
4088
|
"position": "relative",
|
|
4089
4089
|
"textDecoration": "none",
|
|
4090
4090
|
"touchAction": "manipulation",
|
|
4091
|
-
"width":
|
|
4091
|
+
"width": 24,
|
|
4092
4092
|
}
|
|
4093
4093
|
}
|
|
4094
4094
|
tabIndex={0}
|
|
@@ -4096,7 +4096,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4096
4096
|
>
|
|
4097
4097
|
<svg
|
|
4098
4098
|
className=""
|
|
4099
|
-
height={
|
|
4099
|
+
height={16}
|
|
4100
4100
|
style={
|
|
4101
4101
|
{
|
|
4102
4102
|
"display": "inline-block",
|
|
@@ -4105,18 +4105,18 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4105
4105
|
"verticalAlign": "text-bottom",
|
|
4106
4106
|
}
|
|
4107
4107
|
}
|
|
4108
|
-
viewBox="0 0
|
|
4109
|
-
width={
|
|
4108
|
+
viewBox="0 0 16 16"
|
|
4109
|
+
width={16}
|
|
4110
4110
|
>
|
|
4111
4111
|
<path
|
|
4112
|
-
d="M11
|
|
4112
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4113
4113
|
fill="currentColor"
|
|
4114
4114
|
/>
|
|
4115
4115
|
</svg>
|
|
4116
4116
|
</button>
|
|
4117
4117
|
`;
|
|
4118
4118
|
|
|
4119
|
-
exports[`IconButtonCore kind:
|
|
4119
|
+
exports[`IconButtonCore kind:secondary color:default size:xsmall light:false hovered 1`] = `
|
|
4120
4120
|
<button
|
|
4121
4121
|
aria-label="search"
|
|
4122
4122
|
className=""
|
|
@@ -4144,15 +4144,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4144
4144
|
"alignItems": "center",
|
|
4145
4145
|
"background": "none",
|
|
4146
4146
|
"border": "none",
|
|
4147
|
-
"borderColor": "#
|
|
4147
|
+
"borderColor": "#1865f2",
|
|
4148
4148
|
"borderRadius": 4,
|
|
4149
4149
|
"borderStyle": "solid",
|
|
4150
4150
|
"borderWidth": 2,
|
|
4151
4151
|
"boxSizing": "border-box",
|
|
4152
|
-
"color": "#
|
|
4152
|
+
"color": "#1865f2",
|
|
4153
4153
|
"cursor": "pointer",
|
|
4154
4154
|
"display": "inline-flex",
|
|
4155
|
-
"height":
|
|
4155
|
+
"height": 24,
|
|
4156
4156
|
"justifyContent": "center",
|
|
4157
4157
|
"margin": -8,
|
|
4158
4158
|
"outline": "none",
|
|
@@ -4160,7 +4160,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4160
4160
|
"position": "relative",
|
|
4161
4161
|
"textDecoration": "none",
|
|
4162
4162
|
"touchAction": "manipulation",
|
|
4163
|
-
"width":
|
|
4163
|
+
"width": 24,
|
|
4164
4164
|
}
|
|
4165
4165
|
}
|
|
4166
4166
|
tabIndex={0}
|
|
@@ -4168,7 +4168,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4168
4168
|
>
|
|
4169
4169
|
<svg
|
|
4170
4170
|
className=""
|
|
4171
|
-
height={
|
|
4171
|
+
height={16}
|
|
4172
4172
|
style={
|
|
4173
4173
|
{
|
|
4174
4174
|
"display": "inline-block",
|
|
@@ -4177,18 +4177,18 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4177
4177
|
"verticalAlign": "text-bottom",
|
|
4178
4178
|
}
|
|
4179
4179
|
}
|
|
4180
|
-
viewBox="0 0
|
|
4181
|
-
width={
|
|
4180
|
+
viewBox="0 0 16 16"
|
|
4181
|
+
width={16}
|
|
4182
4182
|
>
|
|
4183
4183
|
<path
|
|
4184
|
-
d="M11
|
|
4184
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4185
4185
|
fill="currentColor"
|
|
4186
4186
|
/>
|
|
4187
4187
|
</svg>
|
|
4188
4188
|
</button>
|
|
4189
4189
|
`;
|
|
4190
4190
|
|
|
4191
|
-
exports[`IconButtonCore kind:
|
|
4191
|
+
exports[`IconButtonCore kind:secondary color:default size:xsmall light:false pressed 1`] = `
|
|
4192
4192
|
<button
|
|
4193
4193
|
aria-label="search"
|
|
4194
4194
|
className=""
|
|
@@ -4216,15 +4216,15 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4216
4216
|
"alignItems": "center",
|
|
4217
4217
|
"background": "none",
|
|
4218
4218
|
"border": "none",
|
|
4219
|
-
"borderColor": "#
|
|
4219
|
+
"borderColor": "#1b50b3",
|
|
4220
4220
|
"borderRadius": 4,
|
|
4221
4221
|
"borderStyle": "solid",
|
|
4222
4222
|
"borderWidth": 2,
|
|
4223
4223
|
"boxSizing": "border-box",
|
|
4224
|
-
"color": "#
|
|
4224
|
+
"color": "#1b50b3",
|
|
4225
4225
|
"cursor": "pointer",
|
|
4226
4226
|
"display": "inline-flex",
|
|
4227
|
-
"height":
|
|
4227
|
+
"height": 24,
|
|
4228
4228
|
"justifyContent": "center",
|
|
4229
4229
|
"margin": -8,
|
|
4230
4230
|
"outline": "none",
|
|
@@ -4232,7 +4232,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4232
4232
|
"position": "relative",
|
|
4233
4233
|
"textDecoration": "none",
|
|
4234
4234
|
"touchAction": "manipulation",
|
|
4235
|
-
"width":
|
|
4235
|
+
"width": 24,
|
|
4236
4236
|
}
|
|
4237
4237
|
}
|
|
4238
4238
|
tabIndex={0}
|
|
@@ -4240,7 +4240,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4240
4240
|
>
|
|
4241
4241
|
<svg
|
|
4242
4242
|
className=""
|
|
4243
|
-
height={
|
|
4243
|
+
height={16}
|
|
4244
4244
|
style={
|
|
4245
4245
|
{
|
|
4246
4246
|
"display": "inline-block",
|
|
@@ -4249,18 +4249,18 @@ exports[`IconButtonCore kind:tertiary color:destructive size:default light:false
|
|
|
4249
4249
|
"verticalAlign": "text-bottom",
|
|
4250
4250
|
}
|
|
4251
4251
|
}
|
|
4252
|
-
viewBox="0 0
|
|
4253
|
-
width={
|
|
4252
|
+
viewBox="0 0 16 16"
|
|
4253
|
+
width={16}
|
|
4254
4254
|
>
|
|
4255
4255
|
<path
|
|
4256
|
-
d="M11
|
|
4256
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4257
4257
|
fill="currentColor"
|
|
4258
4258
|
/>
|
|
4259
4259
|
</svg>
|
|
4260
4260
|
</button>
|
|
4261
4261
|
`;
|
|
4262
4262
|
|
|
4263
|
-
exports[`IconButtonCore kind:
|
|
4263
|
+
exports[`IconButtonCore kind:secondary color:destructive size:medium light:false disabled 1`] = `
|
|
4264
4264
|
<button
|
|
4265
4265
|
aria-label="search"
|
|
4266
4266
|
className=""
|
|
@@ -4328,7 +4328,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false d
|
|
|
4328
4328
|
</button>
|
|
4329
4329
|
`;
|
|
4330
4330
|
|
|
4331
|
-
exports[`IconButtonCore kind:
|
|
4331
|
+
exports[`IconButtonCore kind:secondary color:destructive size:medium light:false focused 1`] = `
|
|
4332
4332
|
<button
|
|
4333
4333
|
aria-label="search"
|
|
4334
4334
|
className=""
|
|
@@ -4400,7 +4400,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false f
|
|
|
4400
4400
|
</button>
|
|
4401
4401
|
`;
|
|
4402
4402
|
|
|
4403
|
-
exports[`IconButtonCore kind:
|
|
4403
|
+
exports[`IconButtonCore kind:secondary color:destructive size:medium light:false hovered 1`] = `
|
|
4404
4404
|
<button
|
|
4405
4405
|
aria-label="search"
|
|
4406
4406
|
className=""
|
|
@@ -4472,7 +4472,7 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false h
|
|
|
4472
4472
|
</button>
|
|
4473
4473
|
`;
|
|
4474
4474
|
|
|
4475
|
-
exports[`IconButtonCore kind:
|
|
4475
|
+
exports[`IconButtonCore kind:secondary color:destructive size:medium light:false pressed 1`] = `
|
|
4476
4476
|
<button
|
|
4477
4477
|
aria-label="search"
|
|
4478
4478
|
className=""
|
|
@@ -4543,3 +4543,2275 @@ exports[`IconButtonCore kind:tertiary color:destructive size:small light:false p
|
|
|
4543
4543
|
</svg>
|
|
4544
4544
|
</button>
|
|
4545
4545
|
`;
|
|
4546
|
+
|
|
4547
|
+
exports[`IconButtonCore kind:secondary color:destructive size:small light:false disabled 1`] = `
|
|
4548
|
+
<button
|
|
4549
|
+
aria-label="search"
|
|
4550
|
+
className=""
|
|
4551
|
+
disabled={true}
|
|
4552
|
+
onBlur={[Function]}
|
|
4553
|
+
onClick={[Function]}
|
|
4554
|
+
onFocus={[Function]}
|
|
4555
|
+
onKeyDown={[Function]}
|
|
4556
|
+
onKeyUp={[Function]}
|
|
4557
|
+
onMouseDown={[Function]}
|
|
4558
|
+
onMouseEnter={[Function]}
|
|
4559
|
+
onMouseLeave={[Function]}
|
|
4560
|
+
onMouseUp={[Function]}
|
|
4561
|
+
onTouchCancel={[Function]}
|
|
4562
|
+
onTouchEnd={[Function]}
|
|
4563
|
+
onTouchStart={[Function]}
|
|
4564
|
+
style={
|
|
4565
|
+
{
|
|
4566
|
+
"::MozFocusInner": {
|
|
4567
|
+
"border": 0,
|
|
4568
|
+
},
|
|
4569
|
+
":focus": {
|
|
4570
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4571
|
+
},
|
|
4572
|
+
"alignItems": "center",
|
|
4573
|
+
"background": "none",
|
|
4574
|
+
"border": "none",
|
|
4575
|
+
"boxSizing": "border-box",
|
|
4576
|
+
"color": "rgba(33,36,44,0.32)",
|
|
4577
|
+
"cursor": "default",
|
|
4578
|
+
"display": "inline-flex",
|
|
4579
|
+
"height": 32,
|
|
4580
|
+
"justifyContent": "center",
|
|
4581
|
+
"margin": -8,
|
|
4582
|
+
"outline": "none",
|
|
4583
|
+
"padding": 0,
|
|
4584
|
+
"position": "relative",
|
|
4585
|
+
"textDecoration": "none",
|
|
4586
|
+
"touchAction": "manipulation",
|
|
4587
|
+
"width": 32,
|
|
4588
|
+
}
|
|
4589
|
+
}
|
|
4590
|
+
tabIndex={-1}
|
|
4591
|
+
type="button"
|
|
4592
|
+
>
|
|
4593
|
+
<svg
|
|
4594
|
+
className=""
|
|
4595
|
+
height={24}
|
|
4596
|
+
style={
|
|
4597
|
+
{
|
|
4598
|
+
"display": "inline-block",
|
|
4599
|
+
"flexGrow": 0,
|
|
4600
|
+
"flexShrink": 0,
|
|
4601
|
+
"verticalAlign": "text-bottom",
|
|
4602
|
+
}
|
|
4603
|
+
}
|
|
4604
|
+
viewBox="0 0 24 24"
|
|
4605
|
+
width={24}
|
|
4606
|
+
>
|
|
4607
|
+
<path
|
|
4608
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
4609
|
+
fill="currentColor"
|
|
4610
|
+
/>
|
|
4611
|
+
</svg>
|
|
4612
|
+
</button>
|
|
4613
|
+
`;
|
|
4614
|
+
|
|
4615
|
+
exports[`IconButtonCore kind:secondary color:destructive size:small light:false focused 1`] = `
|
|
4616
|
+
<button
|
|
4617
|
+
aria-label="search"
|
|
4618
|
+
className=""
|
|
4619
|
+
disabled={false}
|
|
4620
|
+
onBlur={[Function]}
|
|
4621
|
+
onClick={[Function]}
|
|
4622
|
+
onFocus={[Function]}
|
|
4623
|
+
onKeyDown={[Function]}
|
|
4624
|
+
onKeyUp={[Function]}
|
|
4625
|
+
onMouseDown={[Function]}
|
|
4626
|
+
onMouseEnter={[Function]}
|
|
4627
|
+
onMouseLeave={[Function]}
|
|
4628
|
+
onMouseUp={[Function]}
|
|
4629
|
+
onTouchCancel={[Function]}
|
|
4630
|
+
onTouchEnd={[Function]}
|
|
4631
|
+
onTouchStart={[Function]}
|
|
4632
|
+
style={
|
|
4633
|
+
{
|
|
4634
|
+
"::MozFocusInner": {
|
|
4635
|
+
"border": 0,
|
|
4636
|
+
},
|
|
4637
|
+
":focus": {
|
|
4638
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4639
|
+
},
|
|
4640
|
+
"alignItems": "center",
|
|
4641
|
+
"background": "none",
|
|
4642
|
+
"border": "none",
|
|
4643
|
+
"borderColor": "#d92916",
|
|
4644
|
+
"borderRadius": 4,
|
|
4645
|
+
"borderStyle": "solid",
|
|
4646
|
+
"borderWidth": 2,
|
|
4647
|
+
"boxSizing": "border-box",
|
|
4648
|
+
"color": "#d92916",
|
|
4649
|
+
"cursor": "pointer",
|
|
4650
|
+
"display": "inline-flex",
|
|
4651
|
+
"height": 32,
|
|
4652
|
+
"justifyContent": "center",
|
|
4653
|
+
"margin": -8,
|
|
4654
|
+
"outline": "none",
|
|
4655
|
+
"padding": 0,
|
|
4656
|
+
"position": "relative",
|
|
4657
|
+
"textDecoration": "none",
|
|
4658
|
+
"touchAction": "manipulation",
|
|
4659
|
+
"width": 32,
|
|
4660
|
+
}
|
|
4661
|
+
}
|
|
4662
|
+
tabIndex={0}
|
|
4663
|
+
type="button"
|
|
4664
|
+
>
|
|
4665
|
+
<svg
|
|
4666
|
+
className=""
|
|
4667
|
+
height={24}
|
|
4668
|
+
style={
|
|
4669
|
+
{
|
|
4670
|
+
"display": "inline-block",
|
|
4671
|
+
"flexGrow": 0,
|
|
4672
|
+
"flexShrink": 0,
|
|
4673
|
+
"verticalAlign": "text-bottom",
|
|
4674
|
+
}
|
|
4675
|
+
}
|
|
4676
|
+
viewBox="0 0 24 24"
|
|
4677
|
+
width={24}
|
|
4678
|
+
>
|
|
4679
|
+
<path
|
|
4680
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
4681
|
+
fill="currentColor"
|
|
4682
|
+
/>
|
|
4683
|
+
</svg>
|
|
4684
|
+
</button>
|
|
4685
|
+
`;
|
|
4686
|
+
|
|
4687
|
+
exports[`IconButtonCore kind:secondary color:destructive size:small light:false hovered 1`] = `
|
|
4688
|
+
<button
|
|
4689
|
+
aria-label="search"
|
|
4690
|
+
className=""
|
|
4691
|
+
disabled={false}
|
|
4692
|
+
onBlur={[Function]}
|
|
4693
|
+
onClick={[Function]}
|
|
4694
|
+
onFocus={[Function]}
|
|
4695
|
+
onKeyDown={[Function]}
|
|
4696
|
+
onKeyUp={[Function]}
|
|
4697
|
+
onMouseDown={[Function]}
|
|
4698
|
+
onMouseEnter={[Function]}
|
|
4699
|
+
onMouseLeave={[Function]}
|
|
4700
|
+
onMouseUp={[Function]}
|
|
4701
|
+
onTouchCancel={[Function]}
|
|
4702
|
+
onTouchEnd={[Function]}
|
|
4703
|
+
onTouchStart={[Function]}
|
|
4704
|
+
style={
|
|
4705
|
+
{
|
|
4706
|
+
"::MozFocusInner": {
|
|
4707
|
+
"border": 0,
|
|
4708
|
+
},
|
|
4709
|
+
":focus": {
|
|
4710
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4711
|
+
},
|
|
4712
|
+
"alignItems": "center",
|
|
4713
|
+
"background": "none",
|
|
4714
|
+
"border": "none",
|
|
4715
|
+
"borderColor": "#d92916",
|
|
4716
|
+
"borderRadius": 4,
|
|
4717
|
+
"borderStyle": "solid",
|
|
4718
|
+
"borderWidth": 2,
|
|
4719
|
+
"boxSizing": "border-box",
|
|
4720
|
+
"color": "#d92916",
|
|
4721
|
+
"cursor": "pointer",
|
|
4722
|
+
"display": "inline-flex",
|
|
4723
|
+
"height": 32,
|
|
4724
|
+
"justifyContent": "center",
|
|
4725
|
+
"margin": -8,
|
|
4726
|
+
"outline": "none",
|
|
4727
|
+
"padding": 0,
|
|
4728
|
+
"position": "relative",
|
|
4729
|
+
"textDecoration": "none",
|
|
4730
|
+
"touchAction": "manipulation",
|
|
4731
|
+
"width": 32,
|
|
4732
|
+
}
|
|
4733
|
+
}
|
|
4734
|
+
tabIndex={0}
|
|
4735
|
+
type="button"
|
|
4736
|
+
>
|
|
4737
|
+
<svg
|
|
4738
|
+
className=""
|
|
4739
|
+
height={24}
|
|
4740
|
+
style={
|
|
4741
|
+
{
|
|
4742
|
+
"display": "inline-block",
|
|
4743
|
+
"flexGrow": 0,
|
|
4744
|
+
"flexShrink": 0,
|
|
4745
|
+
"verticalAlign": "text-bottom",
|
|
4746
|
+
}
|
|
4747
|
+
}
|
|
4748
|
+
viewBox="0 0 24 24"
|
|
4749
|
+
width={24}
|
|
4750
|
+
>
|
|
4751
|
+
<path
|
|
4752
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
4753
|
+
fill="currentColor"
|
|
4754
|
+
/>
|
|
4755
|
+
</svg>
|
|
4756
|
+
</button>
|
|
4757
|
+
`;
|
|
4758
|
+
|
|
4759
|
+
exports[`IconButtonCore kind:secondary color:destructive size:small light:false pressed 1`] = `
|
|
4760
|
+
<button
|
|
4761
|
+
aria-label="search"
|
|
4762
|
+
className=""
|
|
4763
|
+
disabled={false}
|
|
4764
|
+
onBlur={[Function]}
|
|
4765
|
+
onClick={[Function]}
|
|
4766
|
+
onFocus={[Function]}
|
|
4767
|
+
onKeyDown={[Function]}
|
|
4768
|
+
onKeyUp={[Function]}
|
|
4769
|
+
onMouseDown={[Function]}
|
|
4770
|
+
onMouseEnter={[Function]}
|
|
4771
|
+
onMouseLeave={[Function]}
|
|
4772
|
+
onMouseUp={[Function]}
|
|
4773
|
+
onTouchCancel={[Function]}
|
|
4774
|
+
onTouchEnd={[Function]}
|
|
4775
|
+
onTouchStart={[Function]}
|
|
4776
|
+
style={
|
|
4777
|
+
{
|
|
4778
|
+
"::MozFocusInner": {
|
|
4779
|
+
"border": 0,
|
|
4780
|
+
},
|
|
4781
|
+
":focus": {
|
|
4782
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4783
|
+
},
|
|
4784
|
+
"alignItems": "center",
|
|
4785
|
+
"background": "none",
|
|
4786
|
+
"border": "none",
|
|
4787
|
+
"borderColor": "#9e271d",
|
|
4788
|
+
"borderRadius": 4,
|
|
4789
|
+
"borderStyle": "solid",
|
|
4790
|
+
"borderWidth": 2,
|
|
4791
|
+
"boxSizing": "border-box",
|
|
4792
|
+
"color": "#9e271d",
|
|
4793
|
+
"cursor": "pointer",
|
|
4794
|
+
"display": "inline-flex",
|
|
4795
|
+
"height": 32,
|
|
4796
|
+
"justifyContent": "center",
|
|
4797
|
+
"margin": -8,
|
|
4798
|
+
"outline": "none",
|
|
4799
|
+
"padding": 0,
|
|
4800
|
+
"position": "relative",
|
|
4801
|
+
"textDecoration": "none",
|
|
4802
|
+
"touchAction": "manipulation",
|
|
4803
|
+
"width": 32,
|
|
4804
|
+
}
|
|
4805
|
+
}
|
|
4806
|
+
tabIndex={0}
|
|
4807
|
+
type="button"
|
|
4808
|
+
>
|
|
4809
|
+
<svg
|
|
4810
|
+
className=""
|
|
4811
|
+
height={24}
|
|
4812
|
+
style={
|
|
4813
|
+
{
|
|
4814
|
+
"display": "inline-block",
|
|
4815
|
+
"flexGrow": 0,
|
|
4816
|
+
"flexShrink": 0,
|
|
4817
|
+
"verticalAlign": "text-bottom",
|
|
4818
|
+
}
|
|
4819
|
+
}
|
|
4820
|
+
viewBox="0 0 24 24"
|
|
4821
|
+
width={24}
|
|
4822
|
+
>
|
|
4823
|
+
<path
|
|
4824
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
4825
|
+
fill="currentColor"
|
|
4826
|
+
/>
|
|
4827
|
+
</svg>
|
|
4828
|
+
</button>
|
|
4829
|
+
`;
|
|
4830
|
+
|
|
4831
|
+
exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false disabled 1`] = `
|
|
4832
|
+
<button
|
|
4833
|
+
aria-label="search"
|
|
4834
|
+
className=""
|
|
4835
|
+
disabled={true}
|
|
4836
|
+
onBlur={[Function]}
|
|
4837
|
+
onClick={[Function]}
|
|
4838
|
+
onFocus={[Function]}
|
|
4839
|
+
onKeyDown={[Function]}
|
|
4840
|
+
onKeyUp={[Function]}
|
|
4841
|
+
onMouseDown={[Function]}
|
|
4842
|
+
onMouseEnter={[Function]}
|
|
4843
|
+
onMouseLeave={[Function]}
|
|
4844
|
+
onMouseUp={[Function]}
|
|
4845
|
+
onTouchCancel={[Function]}
|
|
4846
|
+
onTouchEnd={[Function]}
|
|
4847
|
+
onTouchStart={[Function]}
|
|
4848
|
+
style={
|
|
4849
|
+
{
|
|
4850
|
+
"::MozFocusInner": {
|
|
4851
|
+
"border": 0,
|
|
4852
|
+
},
|
|
4853
|
+
":focus": {
|
|
4854
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4855
|
+
},
|
|
4856
|
+
"alignItems": "center",
|
|
4857
|
+
"background": "none",
|
|
4858
|
+
"border": "none",
|
|
4859
|
+
"boxSizing": "border-box",
|
|
4860
|
+
"color": "rgba(33,36,44,0.32)",
|
|
4861
|
+
"cursor": "default",
|
|
4862
|
+
"display": "inline-flex",
|
|
4863
|
+
"height": 24,
|
|
4864
|
+
"justifyContent": "center",
|
|
4865
|
+
"margin": -8,
|
|
4866
|
+
"outline": "none",
|
|
4867
|
+
"padding": 0,
|
|
4868
|
+
"position": "relative",
|
|
4869
|
+
"textDecoration": "none",
|
|
4870
|
+
"touchAction": "manipulation",
|
|
4871
|
+
"width": 24,
|
|
4872
|
+
}
|
|
4873
|
+
}
|
|
4874
|
+
tabIndex={-1}
|
|
4875
|
+
type="button"
|
|
4876
|
+
>
|
|
4877
|
+
<svg
|
|
4878
|
+
className=""
|
|
4879
|
+
height={16}
|
|
4880
|
+
style={
|
|
4881
|
+
{
|
|
4882
|
+
"display": "inline-block",
|
|
4883
|
+
"flexGrow": 0,
|
|
4884
|
+
"flexShrink": 0,
|
|
4885
|
+
"verticalAlign": "text-bottom",
|
|
4886
|
+
}
|
|
4887
|
+
}
|
|
4888
|
+
viewBox="0 0 16 16"
|
|
4889
|
+
width={16}
|
|
4890
|
+
>
|
|
4891
|
+
<path
|
|
4892
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4893
|
+
fill="currentColor"
|
|
4894
|
+
/>
|
|
4895
|
+
</svg>
|
|
4896
|
+
</button>
|
|
4897
|
+
`;
|
|
4898
|
+
|
|
4899
|
+
exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false focused 1`] = `
|
|
4900
|
+
<button
|
|
4901
|
+
aria-label="search"
|
|
4902
|
+
className=""
|
|
4903
|
+
disabled={false}
|
|
4904
|
+
onBlur={[Function]}
|
|
4905
|
+
onClick={[Function]}
|
|
4906
|
+
onFocus={[Function]}
|
|
4907
|
+
onKeyDown={[Function]}
|
|
4908
|
+
onKeyUp={[Function]}
|
|
4909
|
+
onMouseDown={[Function]}
|
|
4910
|
+
onMouseEnter={[Function]}
|
|
4911
|
+
onMouseLeave={[Function]}
|
|
4912
|
+
onMouseUp={[Function]}
|
|
4913
|
+
onTouchCancel={[Function]}
|
|
4914
|
+
onTouchEnd={[Function]}
|
|
4915
|
+
onTouchStart={[Function]}
|
|
4916
|
+
style={
|
|
4917
|
+
{
|
|
4918
|
+
"::MozFocusInner": {
|
|
4919
|
+
"border": 0,
|
|
4920
|
+
},
|
|
4921
|
+
":focus": {
|
|
4922
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4923
|
+
},
|
|
4924
|
+
"alignItems": "center",
|
|
4925
|
+
"background": "none",
|
|
4926
|
+
"border": "none",
|
|
4927
|
+
"borderColor": "#d92916",
|
|
4928
|
+
"borderRadius": 4,
|
|
4929
|
+
"borderStyle": "solid",
|
|
4930
|
+
"borderWidth": 2,
|
|
4931
|
+
"boxSizing": "border-box",
|
|
4932
|
+
"color": "#d92916",
|
|
4933
|
+
"cursor": "pointer",
|
|
4934
|
+
"display": "inline-flex",
|
|
4935
|
+
"height": 24,
|
|
4936
|
+
"justifyContent": "center",
|
|
4937
|
+
"margin": -8,
|
|
4938
|
+
"outline": "none",
|
|
4939
|
+
"padding": 0,
|
|
4940
|
+
"position": "relative",
|
|
4941
|
+
"textDecoration": "none",
|
|
4942
|
+
"touchAction": "manipulation",
|
|
4943
|
+
"width": 24,
|
|
4944
|
+
}
|
|
4945
|
+
}
|
|
4946
|
+
tabIndex={0}
|
|
4947
|
+
type="button"
|
|
4948
|
+
>
|
|
4949
|
+
<svg
|
|
4950
|
+
className=""
|
|
4951
|
+
height={16}
|
|
4952
|
+
style={
|
|
4953
|
+
{
|
|
4954
|
+
"display": "inline-block",
|
|
4955
|
+
"flexGrow": 0,
|
|
4956
|
+
"flexShrink": 0,
|
|
4957
|
+
"verticalAlign": "text-bottom",
|
|
4958
|
+
}
|
|
4959
|
+
}
|
|
4960
|
+
viewBox="0 0 16 16"
|
|
4961
|
+
width={16}
|
|
4962
|
+
>
|
|
4963
|
+
<path
|
|
4964
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
4965
|
+
fill="currentColor"
|
|
4966
|
+
/>
|
|
4967
|
+
</svg>
|
|
4968
|
+
</button>
|
|
4969
|
+
`;
|
|
4970
|
+
|
|
4971
|
+
exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false hovered 1`] = `
|
|
4972
|
+
<button
|
|
4973
|
+
aria-label="search"
|
|
4974
|
+
className=""
|
|
4975
|
+
disabled={false}
|
|
4976
|
+
onBlur={[Function]}
|
|
4977
|
+
onClick={[Function]}
|
|
4978
|
+
onFocus={[Function]}
|
|
4979
|
+
onKeyDown={[Function]}
|
|
4980
|
+
onKeyUp={[Function]}
|
|
4981
|
+
onMouseDown={[Function]}
|
|
4982
|
+
onMouseEnter={[Function]}
|
|
4983
|
+
onMouseLeave={[Function]}
|
|
4984
|
+
onMouseUp={[Function]}
|
|
4985
|
+
onTouchCancel={[Function]}
|
|
4986
|
+
onTouchEnd={[Function]}
|
|
4987
|
+
onTouchStart={[Function]}
|
|
4988
|
+
style={
|
|
4989
|
+
{
|
|
4990
|
+
"::MozFocusInner": {
|
|
4991
|
+
"border": 0,
|
|
4992
|
+
},
|
|
4993
|
+
":focus": {
|
|
4994
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
4995
|
+
},
|
|
4996
|
+
"alignItems": "center",
|
|
4997
|
+
"background": "none",
|
|
4998
|
+
"border": "none",
|
|
4999
|
+
"borderColor": "#d92916",
|
|
5000
|
+
"borderRadius": 4,
|
|
5001
|
+
"borderStyle": "solid",
|
|
5002
|
+
"borderWidth": 2,
|
|
5003
|
+
"boxSizing": "border-box",
|
|
5004
|
+
"color": "#d92916",
|
|
5005
|
+
"cursor": "pointer",
|
|
5006
|
+
"display": "inline-flex",
|
|
5007
|
+
"height": 24,
|
|
5008
|
+
"justifyContent": "center",
|
|
5009
|
+
"margin": -8,
|
|
5010
|
+
"outline": "none",
|
|
5011
|
+
"padding": 0,
|
|
5012
|
+
"position": "relative",
|
|
5013
|
+
"textDecoration": "none",
|
|
5014
|
+
"touchAction": "manipulation",
|
|
5015
|
+
"width": 24,
|
|
5016
|
+
}
|
|
5017
|
+
}
|
|
5018
|
+
tabIndex={0}
|
|
5019
|
+
type="button"
|
|
5020
|
+
>
|
|
5021
|
+
<svg
|
|
5022
|
+
className=""
|
|
5023
|
+
height={16}
|
|
5024
|
+
style={
|
|
5025
|
+
{
|
|
5026
|
+
"display": "inline-block",
|
|
5027
|
+
"flexGrow": 0,
|
|
5028
|
+
"flexShrink": 0,
|
|
5029
|
+
"verticalAlign": "text-bottom",
|
|
5030
|
+
}
|
|
5031
|
+
}
|
|
5032
|
+
viewBox="0 0 16 16"
|
|
5033
|
+
width={16}
|
|
5034
|
+
>
|
|
5035
|
+
<path
|
|
5036
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5037
|
+
fill="currentColor"
|
|
5038
|
+
/>
|
|
5039
|
+
</svg>
|
|
5040
|
+
</button>
|
|
5041
|
+
`;
|
|
5042
|
+
|
|
5043
|
+
exports[`IconButtonCore kind:secondary color:destructive size:xsmall light:false pressed 1`] = `
|
|
5044
|
+
<button
|
|
5045
|
+
aria-label="search"
|
|
5046
|
+
className=""
|
|
5047
|
+
disabled={false}
|
|
5048
|
+
onBlur={[Function]}
|
|
5049
|
+
onClick={[Function]}
|
|
5050
|
+
onFocus={[Function]}
|
|
5051
|
+
onKeyDown={[Function]}
|
|
5052
|
+
onKeyUp={[Function]}
|
|
5053
|
+
onMouseDown={[Function]}
|
|
5054
|
+
onMouseEnter={[Function]}
|
|
5055
|
+
onMouseLeave={[Function]}
|
|
5056
|
+
onMouseUp={[Function]}
|
|
5057
|
+
onTouchCancel={[Function]}
|
|
5058
|
+
onTouchEnd={[Function]}
|
|
5059
|
+
onTouchStart={[Function]}
|
|
5060
|
+
style={
|
|
5061
|
+
{
|
|
5062
|
+
"::MozFocusInner": {
|
|
5063
|
+
"border": 0,
|
|
5064
|
+
},
|
|
5065
|
+
":focus": {
|
|
5066
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5067
|
+
},
|
|
5068
|
+
"alignItems": "center",
|
|
5069
|
+
"background": "none",
|
|
5070
|
+
"border": "none",
|
|
5071
|
+
"borderColor": "#9e271d",
|
|
5072
|
+
"borderRadius": 4,
|
|
5073
|
+
"borderStyle": "solid",
|
|
5074
|
+
"borderWidth": 2,
|
|
5075
|
+
"boxSizing": "border-box",
|
|
5076
|
+
"color": "#9e271d",
|
|
5077
|
+
"cursor": "pointer",
|
|
5078
|
+
"display": "inline-flex",
|
|
5079
|
+
"height": 24,
|
|
5080
|
+
"justifyContent": "center",
|
|
5081
|
+
"margin": -8,
|
|
5082
|
+
"outline": "none",
|
|
5083
|
+
"padding": 0,
|
|
5084
|
+
"position": "relative",
|
|
5085
|
+
"textDecoration": "none",
|
|
5086
|
+
"touchAction": "manipulation",
|
|
5087
|
+
"width": 24,
|
|
5088
|
+
}
|
|
5089
|
+
}
|
|
5090
|
+
tabIndex={0}
|
|
5091
|
+
type="button"
|
|
5092
|
+
>
|
|
5093
|
+
<svg
|
|
5094
|
+
className=""
|
|
5095
|
+
height={16}
|
|
5096
|
+
style={
|
|
5097
|
+
{
|
|
5098
|
+
"display": "inline-block",
|
|
5099
|
+
"flexGrow": 0,
|
|
5100
|
+
"flexShrink": 0,
|
|
5101
|
+
"verticalAlign": "text-bottom",
|
|
5102
|
+
}
|
|
5103
|
+
}
|
|
5104
|
+
viewBox="0 0 16 16"
|
|
5105
|
+
width={16}
|
|
5106
|
+
>
|
|
5107
|
+
<path
|
|
5108
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5109
|
+
fill="currentColor"
|
|
5110
|
+
/>
|
|
5111
|
+
</svg>
|
|
5112
|
+
</button>
|
|
5113
|
+
`;
|
|
5114
|
+
|
|
5115
|
+
exports[`IconButtonCore kind:tertiary color:default size:medium light:false disabled 1`] = `
|
|
5116
|
+
<button
|
|
5117
|
+
aria-label="search"
|
|
5118
|
+
className=""
|
|
5119
|
+
disabled={true}
|
|
5120
|
+
onBlur={[Function]}
|
|
5121
|
+
onClick={[Function]}
|
|
5122
|
+
onFocus={[Function]}
|
|
5123
|
+
onKeyDown={[Function]}
|
|
5124
|
+
onKeyUp={[Function]}
|
|
5125
|
+
onMouseDown={[Function]}
|
|
5126
|
+
onMouseEnter={[Function]}
|
|
5127
|
+
onMouseLeave={[Function]}
|
|
5128
|
+
onMouseUp={[Function]}
|
|
5129
|
+
onTouchCancel={[Function]}
|
|
5130
|
+
onTouchEnd={[Function]}
|
|
5131
|
+
onTouchStart={[Function]}
|
|
5132
|
+
style={
|
|
5133
|
+
{
|
|
5134
|
+
"::MozFocusInner": {
|
|
5135
|
+
"border": 0,
|
|
5136
|
+
},
|
|
5137
|
+
":focus": {
|
|
5138
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5139
|
+
},
|
|
5140
|
+
"alignItems": "center",
|
|
5141
|
+
"background": "none",
|
|
5142
|
+
"border": "none",
|
|
5143
|
+
"boxSizing": "border-box",
|
|
5144
|
+
"color": "rgba(33,36,44,0.32)",
|
|
5145
|
+
"cursor": "default",
|
|
5146
|
+
"display": "inline-flex",
|
|
5147
|
+
"height": 40,
|
|
5148
|
+
"justifyContent": "center",
|
|
5149
|
+
"margin": -8,
|
|
5150
|
+
"outline": "none",
|
|
5151
|
+
"padding": 0,
|
|
5152
|
+
"position": "relative",
|
|
5153
|
+
"textDecoration": "none",
|
|
5154
|
+
"touchAction": "manipulation",
|
|
5155
|
+
"width": 40,
|
|
5156
|
+
}
|
|
5157
|
+
}
|
|
5158
|
+
tabIndex={-1}
|
|
5159
|
+
type="button"
|
|
5160
|
+
>
|
|
5161
|
+
<svg
|
|
5162
|
+
className=""
|
|
5163
|
+
height={24}
|
|
5164
|
+
style={
|
|
5165
|
+
{
|
|
5166
|
+
"display": "inline-block",
|
|
5167
|
+
"flexGrow": 0,
|
|
5168
|
+
"flexShrink": 0,
|
|
5169
|
+
"verticalAlign": "text-bottom",
|
|
5170
|
+
}
|
|
5171
|
+
}
|
|
5172
|
+
viewBox="0 0 24 24"
|
|
5173
|
+
width={24}
|
|
5174
|
+
>
|
|
5175
|
+
<path
|
|
5176
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5177
|
+
fill="currentColor"
|
|
5178
|
+
/>
|
|
5179
|
+
</svg>
|
|
5180
|
+
</button>
|
|
5181
|
+
`;
|
|
5182
|
+
|
|
5183
|
+
exports[`IconButtonCore kind:tertiary color:default size:medium light:false focused 1`] = `
|
|
5184
|
+
<button
|
|
5185
|
+
aria-label="search"
|
|
5186
|
+
className=""
|
|
5187
|
+
disabled={false}
|
|
5188
|
+
onBlur={[Function]}
|
|
5189
|
+
onClick={[Function]}
|
|
5190
|
+
onFocus={[Function]}
|
|
5191
|
+
onKeyDown={[Function]}
|
|
5192
|
+
onKeyUp={[Function]}
|
|
5193
|
+
onMouseDown={[Function]}
|
|
5194
|
+
onMouseEnter={[Function]}
|
|
5195
|
+
onMouseLeave={[Function]}
|
|
5196
|
+
onMouseUp={[Function]}
|
|
5197
|
+
onTouchCancel={[Function]}
|
|
5198
|
+
onTouchEnd={[Function]}
|
|
5199
|
+
onTouchStart={[Function]}
|
|
5200
|
+
style={
|
|
5201
|
+
{
|
|
5202
|
+
"::MozFocusInner": {
|
|
5203
|
+
"border": 0,
|
|
5204
|
+
},
|
|
5205
|
+
":focus": {
|
|
5206
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5207
|
+
},
|
|
5208
|
+
"alignItems": "center",
|
|
5209
|
+
"background": "none",
|
|
5210
|
+
"border": "none",
|
|
5211
|
+
"borderColor": "#1865f2",
|
|
5212
|
+
"borderRadius": 4,
|
|
5213
|
+
"borderStyle": "solid",
|
|
5214
|
+
"borderWidth": 2,
|
|
5215
|
+
"boxSizing": "border-box",
|
|
5216
|
+
"color": "#1865f2",
|
|
5217
|
+
"cursor": "pointer",
|
|
5218
|
+
"display": "inline-flex",
|
|
5219
|
+
"height": 40,
|
|
5220
|
+
"justifyContent": "center",
|
|
5221
|
+
"margin": -8,
|
|
5222
|
+
"outline": "none",
|
|
5223
|
+
"padding": 0,
|
|
5224
|
+
"position": "relative",
|
|
5225
|
+
"textDecoration": "none",
|
|
5226
|
+
"touchAction": "manipulation",
|
|
5227
|
+
"width": 40,
|
|
5228
|
+
}
|
|
5229
|
+
}
|
|
5230
|
+
tabIndex={0}
|
|
5231
|
+
type="button"
|
|
5232
|
+
>
|
|
5233
|
+
<svg
|
|
5234
|
+
className=""
|
|
5235
|
+
height={24}
|
|
5236
|
+
style={
|
|
5237
|
+
{
|
|
5238
|
+
"display": "inline-block",
|
|
5239
|
+
"flexGrow": 0,
|
|
5240
|
+
"flexShrink": 0,
|
|
5241
|
+
"verticalAlign": "text-bottom",
|
|
5242
|
+
}
|
|
5243
|
+
}
|
|
5244
|
+
viewBox="0 0 24 24"
|
|
5245
|
+
width={24}
|
|
5246
|
+
>
|
|
5247
|
+
<path
|
|
5248
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5249
|
+
fill="currentColor"
|
|
5250
|
+
/>
|
|
5251
|
+
</svg>
|
|
5252
|
+
</button>
|
|
5253
|
+
`;
|
|
5254
|
+
|
|
5255
|
+
exports[`IconButtonCore kind:tertiary color:default size:medium light:false hovered 1`] = `
|
|
5256
|
+
<button
|
|
5257
|
+
aria-label="search"
|
|
5258
|
+
className=""
|
|
5259
|
+
disabled={false}
|
|
5260
|
+
onBlur={[Function]}
|
|
5261
|
+
onClick={[Function]}
|
|
5262
|
+
onFocus={[Function]}
|
|
5263
|
+
onKeyDown={[Function]}
|
|
5264
|
+
onKeyUp={[Function]}
|
|
5265
|
+
onMouseDown={[Function]}
|
|
5266
|
+
onMouseEnter={[Function]}
|
|
5267
|
+
onMouseLeave={[Function]}
|
|
5268
|
+
onMouseUp={[Function]}
|
|
5269
|
+
onTouchCancel={[Function]}
|
|
5270
|
+
onTouchEnd={[Function]}
|
|
5271
|
+
onTouchStart={[Function]}
|
|
5272
|
+
style={
|
|
5273
|
+
{
|
|
5274
|
+
"::MozFocusInner": {
|
|
5275
|
+
"border": 0,
|
|
5276
|
+
},
|
|
5277
|
+
":focus": {
|
|
5278
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5279
|
+
},
|
|
5280
|
+
"alignItems": "center",
|
|
5281
|
+
"background": "none",
|
|
5282
|
+
"border": "none",
|
|
5283
|
+
"borderColor": "#1865f2",
|
|
5284
|
+
"borderRadius": 4,
|
|
5285
|
+
"borderStyle": "solid",
|
|
5286
|
+
"borderWidth": 2,
|
|
5287
|
+
"boxSizing": "border-box",
|
|
5288
|
+
"color": "#1865f2",
|
|
5289
|
+
"cursor": "pointer",
|
|
5290
|
+
"display": "inline-flex",
|
|
5291
|
+
"height": 40,
|
|
5292
|
+
"justifyContent": "center",
|
|
5293
|
+
"margin": -8,
|
|
5294
|
+
"outline": "none",
|
|
5295
|
+
"padding": 0,
|
|
5296
|
+
"position": "relative",
|
|
5297
|
+
"textDecoration": "none",
|
|
5298
|
+
"touchAction": "manipulation",
|
|
5299
|
+
"width": 40,
|
|
5300
|
+
}
|
|
5301
|
+
}
|
|
5302
|
+
tabIndex={0}
|
|
5303
|
+
type="button"
|
|
5304
|
+
>
|
|
5305
|
+
<svg
|
|
5306
|
+
className=""
|
|
5307
|
+
height={24}
|
|
5308
|
+
style={
|
|
5309
|
+
{
|
|
5310
|
+
"display": "inline-block",
|
|
5311
|
+
"flexGrow": 0,
|
|
5312
|
+
"flexShrink": 0,
|
|
5313
|
+
"verticalAlign": "text-bottom",
|
|
5314
|
+
}
|
|
5315
|
+
}
|
|
5316
|
+
viewBox="0 0 24 24"
|
|
5317
|
+
width={24}
|
|
5318
|
+
>
|
|
5319
|
+
<path
|
|
5320
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5321
|
+
fill="currentColor"
|
|
5322
|
+
/>
|
|
5323
|
+
</svg>
|
|
5324
|
+
</button>
|
|
5325
|
+
`;
|
|
5326
|
+
|
|
5327
|
+
exports[`IconButtonCore kind:tertiary color:default size:medium light:false pressed 1`] = `
|
|
5328
|
+
<button
|
|
5329
|
+
aria-label="search"
|
|
5330
|
+
className=""
|
|
5331
|
+
disabled={false}
|
|
5332
|
+
onBlur={[Function]}
|
|
5333
|
+
onClick={[Function]}
|
|
5334
|
+
onFocus={[Function]}
|
|
5335
|
+
onKeyDown={[Function]}
|
|
5336
|
+
onKeyUp={[Function]}
|
|
5337
|
+
onMouseDown={[Function]}
|
|
5338
|
+
onMouseEnter={[Function]}
|
|
5339
|
+
onMouseLeave={[Function]}
|
|
5340
|
+
onMouseUp={[Function]}
|
|
5341
|
+
onTouchCancel={[Function]}
|
|
5342
|
+
onTouchEnd={[Function]}
|
|
5343
|
+
onTouchStart={[Function]}
|
|
5344
|
+
style={
|
|
5345
|
+
{
|
|
5346
|
+
"::MozFocusInner": {
|
|
5347
|
+
"border": 0,
|
|
5348
|
+
},
|
|
5349
|
+
":focus": {
|
|
5350
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5351
|
+
},
|
|
5352
|
+
"alignItems": "center",
|
|
5353
|
+
"background": "none",
|
|
5354
|
+
"border": "none",
|
|
5355
|
+
"borderColor": "#1b50b3",
|
|
5356
|
+
"borderRadius": 4,
|
|
5357
|
+
"borderStyle": "solid",
|
|
5358
|
+
"borderWidth": 2,
|
|
5359
|
+
"boxSizing": "border-box",
|
|
5360
|
+
"color": "#1b50b3",
|
|
5361
|
+
"cursor": "pointer",
|
|
5362
|
+
"display": "inline-flex",
|
|
5363
|
+
"height": 40,
|
|
5364
|
+
"justifyContent": "center",
|
|
5365
|
+
"margin": -8,
|
|
5366
|
+
"outline": "none",
|
|
5367
|
+
"padding": 0,
|
|
5368
|
+
"position": "relative",
|
|
5369
|
+
"textDecoration": "none",
|
|
5370
|
+
"touchAction": "manipulation",
|
|
5371
|
+
"width": 40,
|
|
5372
|
+
}
|
|
5373
|
+
}
|
|
5374
|
+
tabIndex={0}
|
|
5375
|
+
type="button"
|
|
5376
|
+
>
|
|
5377
|
+
<svg
|
|
5378
|
+
className=""
|
|
5379
|
+
height={24}
|
|
5380
|
+
style={
|
|
5381
|
+
{
|
|
5382
|
+
"display": "inline-block",
|
|
5383
|
+
"flexGrow": 0,
|
|
5384
|
+
"flexShrink": 0,
|
|
5385
|
+
"verticalAlign": "text-bottom",
|
|
5386
|
+
}
|
|
5387
|
+
}
|
|
5388
|
+
viewBox="0 0 24 24"
|
|
5389
|
+
width={24}
|
|
5390
|
+
>
|
|
5391
|
+
<path
|
|
5392
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5393
|
+
fill="currentColor"
|
|
5394
|
+
/>
|
|
5395
|
+
</svg>
|
|
5396
|
+
</button>
|
|
5397
|
+
`;
|
|
5398
|
+
|
|
5399
|
+
exports[`IconButtonCore kind:tertiary color:default size:small light:false disabled 1`] = `
|
|
5400
|
+
<button
|
|
5401
|
+
aria-label="search"
|
|
5402
|
+
className=""
|
|
5403
|
+
disabled={true}
|
|
5404
|
+
onBlur={[Function]}
|
|
5405
|
+
onClick={[Function]}
|
|
5406
|
+
onFocus={[Function]}
|
|
5407
|
+
onKeyDown={[Function]}
|
|
5408
|
+
onKeyUp={[Function]}
|
|
5409
|
+
onMouseDown={[Function]}
|
|
5410
|
+
onMouseEnter={[Function]}
|
|
5411
|
+
onMouseLeave={[Function]}
|
|
5412
|
+
onMouseUp={[Function]}
|
|
5413
|
+
onTouchCancel={[Function]}
|
|
5414
|
+
onTouchEnd={[Function]}
|
|
5415
|
+
onTouchStart={[Function]}
|
|
5416
|
+
style={
|
|
5417
|
+
{
|
|
5418
|
+
"::MozFocusInner": {
|
|
5419
|
+
"border": 0,
|
|
5420
|
+
},
|
|
5421
|
+
":focus": {
|
|
5422
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5423
|
+
},
|
|
5424
|
+
"alignItems": "center",
|
|
5425
|
+
"background": "none",
|
|
5426
|
+
"border": "none",
|
|
5427
|
+
"boxSizing": "border-box",
|
|
5428
|
+
"color": "rgba(33,36,44,0.32)",
|
|
5429
|
+
"cursor": "default",
|
|
5430
|
+
"display": "inline-flex",
|
|
5431
|
+
"height": 32,
|
|
5432
|
+
"justifyContent": "center",
|
|
5433
|
+
"margin": -8,
|
|
5434
|
+
"outline": "none",
|
|
5435
|
+
"padding": 0,
|
|
5436
|
+
"position": "relative",
|
|
5437
|
+
"textDecoration": "none",
|
|
5438
|
+
"touchAction": "manipulation",
|
|
5439
|
+
"width": 32,
|
|
5440
|
+
}
|
|
5441
|
+
}
|
|
5442
|
+
tabIndex={-1}
|
|
5443
|
+
type="button"
|
|
5444
|
+
>
|
|
5445
|
+
<svg
|
|
5446
|
+
className=""
|
|
5447
|
+
height={24}
|
|
5448
|
+
style={
|
|
5449
|
+
{
|
|
5450
|
+
"display": "inline-block",
|
|
5451
|
+
"flexGrow": 0,
|
|
5452
|
+
"flexShrink": 0,
|
|
5453
|
+
"verticalAlign": "text-bottom",
|
|
5454
|
+
}
|
|
5455
|
+
}
|
|
5456
|
+
viewBox="0 0 24 24"
|
|
5457
|
+
width={24}
|
|
5458
|
+
>
|
|
5459
|
+
<path
|
|
5460
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5461
|
+
fill="currentColor"
|
|
5462
|
+
/>
|
|
5463
|
+
</svg>
|
|
5464
|
+
</button>
|
|
5465
|
+
`;
|
|
5466
|
+
|
|
5467
|
+
exports[`IconButtonCore kind:tertiary color:default size:small light:false focused 1`] = `
|
|
5468
|
+
<button
|
|
5469
|
+
aria-label="search"
|
|
5470
|
+
className=""
|
|
5471
|
+
disabled={false}
|
|
5472
|
+
onBlur={[Function]}
|
|
5473
|
+
onClick={[Function]}
|
|
5474
|
+
onFocus={[Function]}
|
|
5475
|
+
onKeyDown={[Function]}
|
|
5476
|
+
onKeyUp={[Function]}
|
|
5477
|
+
onMouseDown={[Function]}
|
|
5478
|
+
onMouseEnter={[Function]}
|
|
5479
|
+
onMouseLeave={[Function]}
|
|
5480
|
+
onMouseUp={[Function]}
|
|
5481
|
+
onTouchCancel={[Function]}
|
|
5482
|
+
onTouchEnd={[Function]}
|
|
5483
|
+
onTouchStart={[Function]}
|
|
5484
|
+
style={
|
|
5485
|
+
{
|
|
5486
|
+
"::MozFocusInner": {
|
|
5487
|
+
"border": 0,
|
|
5488
|
+
},
|
|
5489
|
+
":focus": {
|
|
5490
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5491
|
+
},
|
|
5492
|
+
"alignItems": "center",
|
|
5493
|
+
"background": "none",
|
|
5494
|
+
"border": "none",
|
|
5495
|
+
"borderColor": "#1865f2",
|
|
5496
|
+
"borderRadius": 4,
|
|
5497
|
+
"borderStyle": "solid",
|
|
5498
|
+
"borderWidth": 2,
|
|
5499
|
+
"boxSizing": "border-box",
|
|
5500
|
+
"color": "#1865f2",
|
|
5501
|
+
"cursor": "pointer",
|
|
5502
|
+
"display": "inline-flex",
|
|
5503
|
+
"height": 32,
|
|
5504
|
+
"justifyContent": "center",
|
|
5505
|
+
"margin": -8,
|
|
5506
|
+
"outline": "none",
|
|
5507
|
+
"padding": 0,
|
|
5508
|
+
"position": "relative",
|
|
5509
|
+
"textDecoration": "none",
|
|
5510
|
+
"touchAction": "manipulation",
|
|
5511
|
+
"width": 32,
|
|
5512
|
+
}
|
|
5513
|
+
}
|
|
5514
|
+
tabIndex={0}
|
|
5515
|
+
type="button"
|
|
5516
|
+
>
|
|
5517
|
+
<svg
|
|
5518
|
+
className=""
|
|
5519
|
+
height={24}
|
|
5520
|
+
style={
|
|
5521
|
+
{
|
|
5522
|
+
"display": "inline-block",
|
|
5523
|
+
"flexGrow": 0,
|
|
5524
|
+
"flexShrink": 0,
|
|
5525
|
+
"verticalAlign": "text-bottom",
|
|
5526
|
+
}
|
|
5527
|
+
}
|
|
5528
|
+
viewBox="0 0 24 24"
|
|
5529
|
+
width={24}
|
|
5530
|
+
>
|
|
5531
|
+
<path
|
|
5532
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5533
|
+
fill="currentColor"
|
|
5534
|
+
/>
|
|
5535
|
+
</svg>
|
|
5536
|
+
</button>
|
|
5537
|
+
`;
|
|
5538
|
+
|
|
5539
|
+
exports[`IconButtonCore kind:tertiary color:default size:small light:false hovered 1`] = `
|
|
5540
|
+
<button
|
|
5541
|
+
aria-label="search"
|
|
5542
|
+
className=""
|
|
5543
|
+
disabled={false}
|
|
5544
|
+
onBlur={[Function]}
|
|
5545
|
+
onClick={[Function]}
|
|
5546
|
+
onFocus={[Function]}
|
|
5547
|
+
onKeyDown={[Function]}
|
|
5548
|
+
onKeyUp={[Function]}
|
|
5549
|
+
onMouseDown={[Function]}
|
|
5550
|
+
onMouseEnter={[Function]}
|
|
5551
|
+
onMouseLeave={[Function]}
|
|
5552
|
+
onMouseUp={[Function]}
|
|
5553
|
+
onTouchCancel={[Function]}
|
|
5554
|
+
onTouchEnd={[Function]}
|
|
5555
|
+
onTouchStart={[Function]}
|
|
5556
|
+
style={
|
|
5557
|
+
{
|
|
5558
|
+
"::MozFocusInner": {
|
|
5559
|
+
"border": 0,
|
|
5560
|
+
},
|
|
5561
|
+
":focus": {
|
|
5562
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5563
|
+
},
|
|
5564
|
+
"alignItems": "center",
|
|
5565
|
+
"background": "none",
|
|
5566
|
+
"border": "none",
|
|
5567
|
+
"borderColor": "#1865f2",
|
|
5568
|
+
"borderRadius": 4,
|
|
5569
|
+
"borderStyle": "solid",
|
|
5570
|
+
"borderWidth": 2,
|
|
5571
|
+
"boxSizing": "border-box",
|
|
5572
|
+
"color": "#1865f2",
|
|
5573
|
+
"cursor": "pointer",
|
|
5574
|
+
"display": "inline-flex",
|
|
5575
|
+
"height": 32,
|
|
5576
|
+
"justifyContent": "center",
|
|
5577
|
+
"margin": -8,
|
|
5578
|
+
"outline": "none",
|
|
5579
|
+
"padding": 0,
|
|
5580
|
+
"position": "relative",
|
|
5581
|
+
"textDecoration": "none",
|
|
5582
|
+
"touchAction": "manipulation",
|
|
5583
|
+
"width": 32,
|
|
5584
|
+
}
|
|
5585
|
+
}
|
|
5586
|
+
tabIndex={0}
|
|
5587
|
+
type="button"
|
|
5588
|
+
>
|
|
5589
|
+
<svg
|
|
5590
|
+
className=""
|
|
5591
|
+
height={24}
|
|
5592
|
+
style={
|
|
5593
|
+
{
|
|
5594
|
+
"display": "inline-block",
|
|
5595
|
+
"flexGrow": 0,
|
|
5596
|
+
"flexShrink": 0,
|
|
5597
|
+
"verticalAlign": "text-bottom",
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5600
|
+
viewBox="0 0 24 24"
|
|
5601
|
+
width={24}
|
|
5602
|
+
>
|
|
5603
|
+
<path
|
|
5604
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5605
|
+
fill="currentColor"
|
|
5606
|
+
/>
|
|
5607
|
+
</svg>
|
|
5608
|
+
</button>
|
|
5609
|
+
`;
|
|
5610
|
+
|
|
5611
|
+
exports[`IconButtonCore kind:tertiary color:default size:small light:false pressed 1`] = `
|
|
5612
|
+
<button
|
|
5613
|
+
aria-label="search"
|
|
5614
|
+
className=""
|
|
5615
|
+
disabled={false}
|
|
5616
|
+
onBlur={[Function]}
|
|
5617
|
+
onClick={[Function]}
|
|
5618
|
+
onFocus={[Function]}
|
|
5619
|
+
onKeyDown={[Function]}
|
|
5620
|
+
onKeyUp={[Function]}
|
|
5621
|
+
onMouseDown={[Function]}
|
|
5622
|
+
onMouseEnter={[Function]}
|
|
5623
|
+
onMouseLeave={[Function]}
|
|
5624
|
+
onMouseUp={[Function]}
|
|
5625
|
+
onTouchCancel={[Function]}
|
|
5626
|
+
onTouchEnd={[Function]}
|
|
5627
|
+
onTouchStart={[Function]}
|
|
5628
|
+
style={
|
|
5629
|
+
{
|
|
5630
|
+
"::MozFocusInner": {
|
|
5631
|
+
"border": 0,
|
|
5632
|
+
},
|
|
5633
|
+
":focus": {
|
|
5634
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5635
|
+
},
|
|
5636
|
+
"alignItems": "center",
|
|
5637
|
+
"background": "none",
|
|
5638
|
+
"border": "none",
|
|
5639
|
+
"borderColor": "#1b50b3",
|
|
5640
|
+
"borderRadius": 4,
|
|
5641
|
+
"borderStyle": "solid",
|
|
5642
|
+
"borderWidth": 2,
|
|
5643
|
+
"boxSizing": "border-box",
|
|
5644
|
+
"color": "#1b50b3",
|
|
5645
|
+
"cursor": "pointer",
|
|
5646
|
+
"display": "inline-flex",
|
|
5647
|
+
"height": 32,
|
|
5648
|
+
"justifyContent": "center",
|
|
5649
|
+
"margin": -8,
|
|
5650
|
+
"outline": "none",
|
|
5651
|
+
"padding": 0,
|
|
5652
|
+
"position": "relative",
|
|
5653
|
+
"textDecoration": "none",
|
|
5654
|
+
"touchAction": "manipulation",
|
|
5655
|
+
"width": 32,
|
|
5656
|
+
}
|
|
5657
|
+
}
|
|
5658
|
+
tabIndex={0}
|
|
5659
|
+
type="button"
|
|
5660
|
+
>
|
|
5661
|
+
<svg
|
|
5662
|
+
className=""
|
|
5663
|
+
height={24}
|
|
5664
|
+
style={
|
|
5665
|
+
{
|
|
5666
|
+
"display": "inline-block",
|
|
5667
|
+
"flexGrow": 0,
|
|
5668
|
+
"flexShrink": 0,
|
|
5669
|
+
"verticalAlign": "text-bottom",
|
|
5670
|
+
}
|
|
5671
|
+
}
|
|
5672
|
+
viewBox="0 0 24 24"
|
|
5673
|
+
width={24}
|
|
5674
|
+
>
|
|
5675
|
+
<path
|
|
5676
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
5677
|
+
fill="currentColor"
|
|
5678
|
+
/>
|
|
5679
|
+
</svg>
|
|
5680
|
+
</button>
|
|
5681
|
+
`;
|
|
5682
|
+
|
|
5683
|
+
exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false disabled 1`] = `
|
|
5684
|
+
<button
|
|
5685
|
+
aria-label="search"
|
|
5686
|
+
className=""
|
|
5687
|
+
disabled={true}
|
|
5688
|
+
onBlur={[Function]}
|
|
5689
|
+
onClick={[Function]}
|
|
5690
|
+
onFocus={[Function]}
|
|
5691
|
+
onKeyDown={[Function]}
|
|
5692
|
+
onKeyUp={[Function]}
|
|
5693
|
+
onMouseDown={[Function]}
|
|
5694
|
+
onMouseEnter={[Function]}
|
|
5695
|
+
onMouseLeave={[Function]}
|
|
5696
|
+
onMouseUp={[Function]}
|
|
5697
|
+
onTouchCancel={[Function]}
|
|
5698
|
+
onTouchEnd={[Function]}
|
|
5699
|
+
onTouchStart={[Function]}
|
|
5700
|
+
style={
|
|
5701
|
+
{
|
|
5702
|
+
"::MozFocusInner": {
|
|
5703
|
+
"border": 0,
|
|
5704
|
+
},
|
|
5705
|
+
":focus": {
|
|
5706
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5707
|
+
},
|
|
5708
|
+
"alignItems": "center",
|
|
5709
|
+
"background": "none",
|
|
5710
|
+
"border": "none",
|
|
5711
|
+
"boxSizing": "border-box",
|
|
5712
|
+
"color": "rgba(33,36,44,0.32)",
|
|
5713
|
+
"cursor": "default",
|
|
5714
|
+
"display": "inline-flex",
|
|
5715
|
+
"height": 24,
|
|
5716
|
+
"justifyContent": "center",
|
|
5717
|
+
"margin": -8,
|
|
5718
|
+
"outline": "none",
|
|
5719
|
+
"padding": 0,
|
|
5720
|
+
"position": "relative",
|
|
5721
|
+
"textDecoration": "none",
|
|
5722
|
+
"touchAction": "manipulation",
|
|
5723
|
+
"width": 24,
|
|
5724
|
+
}
|
|
5725
|
+
}
|
|
5726
|
+
tabIndex={-1}
|
|
5727
|
+
type="button"
|
|
5728
|
+
>
|
|
5729
|
+
<svg
|
|
5730
|
+
className=""
|
|
5731
|
+
height={16}
|
|
5732
|
+
style={
|
|
5733
|
+
{
|
|
5734
|
+
"display": "inline-block",
|
|
5735
|
+
"flexGrow": 0,
|
|
5736
|
+
"flexShrink": 0,
|
|
5737
|
+
"verticalAlign": "text-bottom",
|
|
5738
|
+
}
|
|
5739
|
+
}
|
|
5740
|
+
viewBox="0 0 16 16"
|
|
5741
|
+
width={16}
|
|
5742
|
+
>
|
|
5743
|
+
<path
|
|
5744
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5745
|
+
fill="currentColor"
|
|
5746
|
+
/>
|
|
5747
|
+
</svg>
|
|
5748
|
+
</button>
|
|
5749
|
+
`;
|
|
5750
|
+
|
|
5751
|
+
exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false focused 1`] = `
|
|
5752
|
+
<button
|
|
5753
|
+
aria-label="search"
|
|
5754
|
+
className=""
|
|
5755
|
+
disabled={false}
|
|
5756
|
+
onBlur={[Function]}
|
|
5757
|
+
onClick={[Function]}
|
|
5758
|
+
onFocus={[Function]}
|
|
5759
|
+
onKeyDown={[Function]}
|
|
5760
|
+
onKeyUp={[Function]}
|
|
5761
|
+
onMouseDown={[Function]}
|
|
5762
|
+
onMouseEnter={[Function]}
|
|
5763
|
+
onMouseLeave={[Function]}
|
|
5764
|
+
onMouseUp={[Function]}
|
|
5765
|
+
onTouchCancel={[Function]}
|
|
5766
|
+
onTouchEnd={[Function]}
|
|
5767
|
+
onTouchStart={[Function]}
|
|
5768
|
+
style={
|
|
5769
|
+
{
|
|
5770
|
+
"::MozFocusInner": {
|
|
5771
|
+
"border": 0,
|
|
5772
|
+
},
|
|
5773
|
+
":focus": {
|
|
5774
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5775
|
+
},
|
|
5776
|
+
"alignItems": "center",
|
|
5777
|
+
"background": "none",
|
|
5778
|
+
"border": "none",
|
|
5779
|
+
"borderColor": "#1865f2",
|
|
5780
|
+
"borderRadius": 4,
|
|
5781
|
+
"borderStyle": "solid",
|
|
5782
|
+
"borderWidth": 2,
|
|
5783
|
+
"boxSizing": "border-box",
|
|
5784
|
+
"color": "#1865f2",
|
|
5785
|
+
"cursor": "pointer",
|
|
5786
|
+
"display": "inline-flex",
|
|
5787
|
+
"height": 24,
|
|
5788
|
+
"justifyContent": "center",
|
|
5789
|
+
"margin": -8,
|
|
5790
|
+
"outline": "none",
|
|
5791
|
+
"padding": 0,
|
|
5792
|
+
"position": "relative",
|
|
5793
|
+
"textDecoration": "none",
|
|
5794
|
+
"touchAction": "manipulation",
|
|
5795
|
+
"width": 24,
|
|
5796
|
+
}
|
|
5797
|
+
}
|
|
5798
|
+
tabIndex={0}
|
|
5799
|
+
type="button"
|
|
5800
|
+
>
|
|
5801
|
+
<svg
|
|
5802
|
+
className=""
|
|
5803
|
+
height={16}
|
|
5804
|
+
style={
|
|
5805
|
+
{
|
|
5806
|
+
"display": "inline-block",
|
|
5807
|
+
"flexGrow": 0,
|
|
5808
|
+
"flexShrink": 0,
|
|
5809
|
+
"verticalAlign": "text-bottom",
|
|
5810
|
+
}
|
|
5811
|
+
}
|
|
5812
|
+
viewBox="0 0 16 16"
|
|
5813
|
+
width={16}
|
|
5814
|
+
>
|
|
5815
|
+
<path
|
|
5816
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5817
|
+
fill="currentColor"
|
|
5818
|
+
/>
|
|
5819
|
+
</svg>
|
|
5820
|
+
</button>
|
|
5821
|
+
`;
|
|
5822
|
+
|
|
5823
|
+
exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false hovered 1`] = `
|
|
5824
|
+
<button
|
|
5825
|
+
aria-label="search"
|
|
5826
|
+
className=""
|
|
5827
|
+
disabled={false}
|
|
5828
|
+
onBlur={[Function]}
|
|
5829
|
+
onClick={[Function]}
|
|
5830
|
+
onFocus={[Function]}
|
|
5831
|
+
onKeyDown={[Function]}
|
|
5832
|
+
onKeyUp={[Function]}
|
|
5833
|
+
onMouseDown={[Function]}
|
|
5834
|
+
onMouseEnter={[Function]}
|
|
5835
|
+
onMouseLeave={[Function]}
|
|
5836
|
+
onMouseUp={[Function]}
|
|
5837
|
+
onTouchCancel={[Function]}
|
|
5838
|
+
onTouchEnd={[Function]}
|
|
5839
|
+
onTouchStart={[Function]}
|
|
5840
|
+
style={
|
|
5841
|
+
{
|
|
5842
|
+
"::MozFocusInner": {
|
|
5843
|
+
"border": 0,
|
|
5844
|
+
},
|
|
5845
|
+
":focus": {
|
|
5846
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5847
|
+
},
|
|
5848
|
+
"alignItems": "center",
|
|
5849
|
+
"background": "none",
|
|
5850
|
+
"border": "none",
|
|
5851
|
+
"borderColor": "#1865f2",
|
|
5852
|
+
"borderRadius": 4,
|
|
5853
|
+
"borderStyle": "solid",
|
|
5854
|
+
"borderWidth": 2,
|
|
5855
|
+
"boxSizing": "border-box",
|
|
5856
|
+
"color": "#1865f2",
|
|
5857
|
+
"cursor": "pointer",
|
|
5858
|
+
"display": "inline-flex",
|
|
5859
|
+
"height": 24,
|
|
5860
|
+
"justifyContent": "center",
|
|
5861
|
+
"margin": -8,
|
|
5862
|
+
"outline": "none",
|
|
5863
|
+
"padding": 0,
|
|
5864
|
+
"position": "relative",
|
|
5865
|
+
"textDecoration": "none",
|
|
5866
|
+
"touchAction": "manipulation",
|
|
5867
|
+
"width": 24,
|
|
5868
|
+
}
|
|
5869
|
+
}
|
|
5870
|
+
tabIndex={0}
|
|
5871
|
+
type="button"
|
|
5872
|
+
>
|
|
5873
|
+
<svg
|
|
5874
|
+
className=""
|
|
5875
|
+
height={16}
|
|
5876
|
+
style={
|
|
5877
|
+
{
|
|
5878
|
+
"display": "inline-block",
|
|
5879
|
+
"flexGrow": 0,
|
|
5880
|
+
"flexShrink": 0,
|
|
5881
|
+
"verticalAlign": "text-bottom",
|
|
5882
|
+
}
|
|
5883
|
+
}
|
|
5884
|
+
viewBox="0 0 16 16"
|
|
5885
|
+
width={16}
|
|
5886
|
+
>
|
|
5887
|
+
<path
|
|
5888
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5889
|
+
fill="currentColor"
|
|
5890
|
+
/>
|
|
5891
|
+
</svg>
|
|
5892
|
+
</button>
|
|
5893
|
+
`;
|
|
5894
|
+
|
|
5895
|
+
exports[`IconButtonCore kind:tertiary color:default size:xsmall light:false pressed 1`] = `
|
|
5896
|
+
<button
|
|
5897
|
+
aria-label="search"
|
|
5898
|
+
className=""
|
|
5899
|
+
disabled={false}
|
|
5900
|
+
onBlur={[Function]}
|
|
5901
|
+
onClick={[Function]}
|
|
5902
|
+
onFocus={[Function]}
|
|
5903
|
+
onKeyDown={[Function]}
|
|
5904
|
+
onKeyUp={[Function]}
|
|
5905
|
+
onMouseDown={[Function]}
|
|
5906
|
+
onMouseEnter={[Function]}
|
|
5907
|
+
onMouseLeave={[Function]}
|
|
5908
|
+
onMouseUp={[Function]}
|
|
5909
|
+
onTouchCancel={[Function]}
|
|
5910
|
+
onTouchEnd={[Function]}
|
|
5911
|
+
onTouchStart={[Function]}
|
|
5912
|
+
style={
|
|
5913
|
+
{
|
|
5914
|
+
"::MozFocusInner": {
|
|
5915
|
+
"border": 0,
|
|
5916
|
+
},
|
|
5917
|
+
":focus": {
|
|
5918
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5919
|
+
},
|
|
5920
|
+
"alignItems": "center",
|
|
5921
|
+
"background": "none",
|
|
5922
|
+
"border": "none",
|
|
5923
|
+
"borderColor": "#1b50b3",
|
|
5924
|
+
"borderRadius": 4,
|
|
5925
|
+
"borderStyle": "solid",
|
|
5926
|
+
"borderWidth": 2,
|
|
5927
|
+
"boxSizing": "border-box",
|
|
5928
|
+
"color": "#1b50b3",
|
|
5929
|
+
"cursor": "pointer",
|
|
5930
|
+
"display": "inline-flex",
|
|
5931
|
+
"height": 24,
|
|
5932
|
+
"justifyContent": "center",
|
|
5933
|
+
"margin": -8,
|
|
5934
|
+
"outline": "none",
|
|
5935
|
+
"padding": 0,
|
|
5936
|
+
"position": "relative",
|
|
5937
|
+
"textDecoration": "none",
|
|
5938
|
+
"touchAction": "manipulation",
|
|
5939
|
+
"width": 24,
|
|
5940
|
+
}
|
|
5941
|
+
}
|
|
5942
|
+
tabIndex={0}
|
|
5943
|
+
type="button"
|
|
5944
|
+
>
|
|
5945
|
+
<svg
|
|
5946
|
+
className=""
|
|
5947
|
+
height={16}
|
|
5948
|
+
style={
|
|
5949
|
+
{
|
|
5950
|
+
"display": "inline-block",
|
|
5951
|
+
"flexGrow": 0,
|
|
5952
|
+
"flexShrink": 0,
|
|
5953
|
+
"verticalAlign": "text-bottom",
|
|
5954
|
+
}
|
|
5955
|
+
}
|
|
5956
|
+
viewBox="0 0 16 16"
|
|
5957
|
+
width={16}
|
|
5958
|
+
>
|
|
5959
|
+
<path
|
|
5960
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
5961
|
+
fill="currentColor"
|
|
5962
|
+
/>
|
|
5963
|
+
</svg>
|
|
5964
|
+
</button>
|
|
5965
|
+
`;
|
|
5966
|
+
|
|
5967
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false disabled 1`] = `
|
|
5968
|
+
<button
|
|
5969
|
+
aria-label="search"
|
|
5970
|
+
className=""
|
|
5971
|
+
disabled={true}
|
|
5972
|
+
onBlur={[Function]}
|
|
5973
|
+
onClick={[Function]}
|
|
5974
|
+
onFocus={[Function]}
|
|
5975
|
+
onKeyDown={[Function]}
|
|
5976
|
+
onKeyUp={[Function]}
|
|
5977
|
+
onMouseDown={[Function]}
|
|
5978
|
+
onMouseEnter={[Function]}
|
|
5979
|
+
onMouseLeave={[Function]}
|
|
5980
|
+
onMouseUp={[Function]}
|
|
5981
|
+
onTouchCancel={[Function]}
|
|
5982
|
+
onTouchEnd={[Function]}
|
|
5983
|
+
onTouchStart={[Function]}
|
|
5984
|
+
style={
|
|
5985
|
+
{
|
|
5986
|
+
"::MozFocusInner": {
|
|
5987
|
+
"border": 0,
|
|
5988
|
+
},
|
|
5989
|
+
":focus": {
|
|
5990
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
5991
|
+
},
|
|
5992
|
+
"alignItems": "center",
|
|
5993
|
+
"background": "none",
|
|
5994
|
+
"border": "none",
|
|
5995
|
+
"boxSizing": "border-box",
|
|
5996
|
+
"color": "rgba(33,36,44,0.32)",
|
|
5997
|
+
"cursor": "default",
|
|
5998
|
+
"display": "inline-flex",
|
|
5999
|
+
"height": 40,
|
|
6000
|
+
"justifyContent": "center",
|
|
6001
|
+
"margin": -8,
|
|
6002
|
+
"outline": "none",
|
|
6003
|
+
"padding": 0,
|
|
6004
|
+
"position": "relative",
|
|
6005
|
+
"textDecoration": "none",
|
|
6006
|
+
"touchAction": "manipulation",
|
|
6007
|
+
"width": 40,
|
|
6008
|
+
}
|
|
6009
|
+
}
|
|
6010
|
+
tabIndex={-1}
|
|
6011
|
+
type="button"
|
|
6012
|
+
>
|
|
6013
|
+
<svg
|
|
6014
|
+
className=""
|
|
6015
|
+
height={24}
|
|
6016
|
+
style={
|
|
6017
|
+
{
|
|
6018
|
+
"display": "inline-block",
|
|
6019
|
+
"flexGrow": 0,
|
|
6020
|
+
"flexShrink": 0,
|
|
6021
|
+
"verticalAlign": "text-bottom",
|
|
6022
|
+
}
|
|
6023
|
+
}
|
|
6024
|
+
viewBox="0 0 24 24"
|
|
6025
|
+
width={24}
|
|
6026
|
+
>
|
|
6027
|
+
<path
|
|
6028
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6029
|
+
fill="currentColor"
|
|
6030
|
+
/>
|
|
6031
|
+
</svg>
|
|
6032
|
+
</button>
|
|
6033
|
+
`;
|
|
6034
|
+
|
|
6035
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false focused 1`] = `
|
|
6036
|
+
<button
|
|
6037
|
+
aria-label="search"
|
|
6038
|
+
className=""
|
|
6039
|
+
disabled={false}
|
|
6040
|
+
onBlur={[Function]}
|
|
6041
|
+
onClick={[Function]}
|
|
6042
|
+
onFocus={[Function]}
|
|
6043
|
+
onKeyDown={[Function]}
|
|
6044
|
+
onKeyUp={[Function]}
|
|
6045
|
+
onMouseDown={[Function]}
|
|
6046
|
+
onMouseEnter={[Function]}
|
|
6047
|
+
onMouseLeave={[Function]}
|
|
6048
|
+
onMouseUp={[Function]}
|
|
6049
|
+
onTouchCancel={[Function]}
|
|
6050
|
+
onTouchEnd={[Function]}
|
|
6051
|
+
onTouchStart={[Function]}
|
|
6052
|
+
style={
|
|
6053
|
+
{
|
|
6054
|
+
"::MozFocusInner": {
|
|
6055
|
+
"border": 0,
|
|
6056
|
+
},
|
|
6057
|
+
":focus": {
|
|
6058
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6059
|
+
},
|
|
6060
|
+
"alignItems": "center",
|
|
6061
|
+
"background": "none",
|
|
6062
|
+
"border": "none",
|
|
6063
|
+
"borderColor": "#d92916",
|
|
6064
|
+
"borderRadius": 4,
|
|
6065
|
+
"borderStyle": "solid",
|
|
6066
|
+
"borderWidth": 2,
|
|
6067
|
+
"boxSizing": "border-box",
|
|
6068
|
+
"color": "#d92916",
|
|
6069
|
+
"cursor": "pointer",
|
|
6070
|
+
"display": "inline-flex",
|
|
6071
|
+
"height": 40,
|
|
6072
|
+
"justifyContent": "center",
|
|
6073
|
+
"margin": -8,
|
|
6074
|
+
"outline": "none",
|
|
6075
|
+
"padding": 0,
|
|
6076
|
+
"position": "relative",
|
|
6077
|
+
"textDecoration": "none",
|
|
6078
|
+
"touchAction": "manipulation",
|
|
6079
|
+
"width": 40,
|
|
6080
|
+
}
|
|
6081
|
+
}
|
|
6082
|
+
tabIndex={0}
|
|
6083
|
+
type="button"
|
|
6084
|
+
>
|
|
6085
|
+
<svg
|
|
6086
|
+
className=""
|
|
6087
|
+
height={24}
|
|
6088
|
+
style={
|
|
6089
|
+
{
|
|
6090
|
+
"display": "inline-block",
|
|
6091
|
+
"flexGrow": 0,
|
|
6092
|
+
"flexShrink": 0,
|
|
6093
|
+
"verticalAlign": "text-bottom",
|
|
6094
|
+
}
|
|
6095
|
+
}
|
|
6096
|
+
viewBox="0 0 24 24"
|
|
6097
|
+
width={24}
|
|
6098
|
+
>
|
|
6099
|
+
<path
|
|
6100
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6101
|
+
fill="currentColor"
|
|
6102
|
+
/>
|
|
6103
|
+
</svg>
|
|
6104
|
+
</button>
|
|
6105
|
+
`;
|
|
6106
|
+
|
|
6107
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false hovered 1`] = `
|
|
6108
|
+
<button
|
|
6109
|
+
aria-label="search"
|
|
6110
|
+
className=""
|
|
6111
|
+
disabled={false}
|
|
6112
|
+
onBlur={[Function]}
|
|
6113
|
+
onClick={[Function]}
|
|
6114
|
+
onFocus={[Function]}
|
|
6115
|
+
onKeyDown={[Function]}
|
|
6116
|
+
onKeyUp={[Function]}
|
|
6117
|
+
onMouseDown={[Function]}
|
|
6118
|
+
onMouseEnter={[Function]}
|
|
6119
|
+
onMouseLeave={[Function]}
|
|
6120
|
+
onMouseUp={[Function]}
|
|
6121
|
+
onTouchCancel={[Function]}
|
|
6122
|
+
onTouchEnd={[Function]}
|
|
6123
|
+
onTouchStart={[Function]}
|
|
6124
|
+
style={
|
|
6125
|
+
{
|
|
6126
|
+
"::MozFocusInner": {
|
|
6127
|
+
"border": 0,
|
|
6128
|
+
},
|
|
6129
|
+
":focus": {
|
|
6130
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6131
|
+
},
|
|
6132
|
+
"alignItems": "center",
|
|
6133
|
+
"background": "none",
|
|
6134
|
+
"border": "none",
|
|
6135
|
+
"borderColor": "#d92916",
|
|
6136
|
+
"borderRadius": 4,
|
|
6137
|
+
"borderStyle": "solid",
|
|
6138
|
+
"borderWidth": 2,
|
|
6139
|
+
"boxSizing": "border-box",
|
|
6140
|
+
"color": "#d92916",
|
|
6141
|
+
"cursor": "pointer",
|
|
6142
|
+
"display": "inline-flex",
|
|
6143
|
+
"height": 40,
|
|
6144
|
+
"justifyContent": "center",
|
|
6145
|
+
"margin": -8,
|
|
6146
|
+
"outline": "none",
|
|
6147
|
+
"padding": 0,
|
|
6148
|
+
"position": "relative",
|
|
6149
|
+
"textDecoration": "none",
|
|
6150
|
+
"touchAction": "manipulation",
|
|
6151
|
+
"width": 40,
|
|
6152
|
+
}
|
|
6153
|
+
}
|
|
6154
|
+
tabIndex={0}
|
|
6155
|
+
type="button"
|
|
6156
|
+
>
|
|
6157
|
+
<svg
|
|
6158
|
+
className=""
|
|
6159
|
+
height={24}
|
|
6160
|
+
style={
|
|
6161
|
+
{
|
|
6162
|
+
"display": "inline-block",
|
|
6163
|
+
"flexGrow": 0,
|
|
6164
|
+
"flexShrink": 0,
|
|
6165
|
+
"verticalAlign": "text-bottom",
|
|
6166
|
+
}
|
|
6167
|
+
}
|
|
6168
|
+
viewBox="0 0 24 24"
|
|
6169
|
+
width={24}
|
|
6170
|
+
>
|
|
6171
|
+
<path
|
|
6172
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6173
|
+
fill="currentColor"
|
|
6174
|
+
/>
|
|
6175
|
+
</svg>
|
|
6176
|
+
</button>
|
|
6177
|
+
`;
|
|
6178
|
+
|
|
6179
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:medium light:false pressed 1`] = `
|
|
6180
|
+
<button
|
|
6181
|
+
aria-label="search"
|
|
6182
|
+
className=""
|
|
6183
|
+
disabled={false}
|
|
6184
|
+
onBlur={[Function]}
|
|
6185
|
+
onClick={[Function]}
|
|
6186
|
+
onFocus={[Function]}
|
|
6187
|
+
onKeyDown={[Function]}
|
|
6188
|
+
onKeyUp={[Function]}
|
|
6189
|
+
onMouseDown={[Function]}
|
|
6190
|
+
onMouseEnter={[Function]}
|
|
6191
|
+
onMouseLeave={[Function]}
|
|
6192
|
+
onMouseUp={[Function]}
|
|
6193
|
+
onTouchCancel={[Function]}
|
|
6194
|
+
onTouchEnd={[Function]}
|
|
6195
|
+
onTouchStart={[Function]}
|
|
6196
|
+
style={
|
|
6197
|
+
{
|
|
6198
|
+
"::MozFocusInner": {
|
|
6199
|
+
"border": 0,
|
|
6200
|
+
},
|
|
6201
|
+
":focus": {
|
|
6202
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6203
|
+
},
|
|
6204
|
+
"alignItems": "center",
|
|
6205
|
+
"background": "none",
|
|
6206
|
+
"border": "none",
|
|
6207
|
+
"borderColor": "#9e271d",
|
|
6208
|
+
"borderRadius": 4,
|
|
6209
|
+
"borderStyle": "solid",
|
|
6210
|
+
"borderWidth": 2,
|
|
6211
|
+
"boxSizing": "border-box",
|
|
6212
|
+
"color": "#9e271d",
|
|
6213
|
+
"cursor": "pointer",
|
|
6214
|
+
"display": "inline-flex",
|
|
6215
|
+
"height": 40,
|
|
6216
|
+
"justifyContent": "center",
|
|
6217
|
+
"margin": -8,
|
|
6218
|
+
"outline": "none",
|
|
6219
|
+
"padding": 0,
|
|
6220
|
+
"position": "relative",
|
|
6221
|
+
"textDecoration": "none",
|
|
6222
|
+
"touchAction": "manipulation",
|
|
6223
|
+
"width": 40,
|
|
6224
|
+
}
|
|
6225
|
+
}
|
|
6226
|
+
tabIndex={0}
|
|
6227
|
+
type="button"
|
|
6228
|
+
>
|
|
6229
|
+
<svg
|
|
6230
|
+
className=""
|
|
6231
|
+
height={24}
|
|
6232
|
+
style={
|
|
6233
|
+
{
|
|
6234
|
+
"display": "inline-block",
|
|
6235
|
+
"flexGrow": 0,
|
|
6236
|
+
"flexShrink": 0,
|
|
6237
|
+
"verticalAlign": "text-bottom",
|
|
6238
|
+
}
|
|
6239
|
+
}
|
|
6240
|
+
viewBox="0 0 24 24"
|
|
6241
|
+
width={24}
|
|
6242
|
+
>
|
|
6243
|
+
<path
|
|
6244
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6245
|
+
fill="currentColor"
|
|
6246
|
+
/>
|
|
6247
|
+
</svg>
|
|
6248
|
+
</button>
|
|
6249
|
+
`;
|
|
6250
|
+
|
|
6251
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:small light:false disabled 1`] = `
|
|
6252
|
+
<button
|
|
6253
|
+
aria-label="search"
|
|
6254
|
+
className=""
|
|
6255
|
+
disabled={true}
|
|
6256
|
+
onBlur={[Function]}
|
|
6257
|
+
onClick={[Function]}
|
|
6258
|
+
onFocus={[Function]}
|
|
6259
|
+
onKeyDown={[Function]}
|
|
6260
|
+
onKeyUp={[Function]}
|
|
6261
|
+
onMouseDown={[Function]}
|
|
6262
|
+
onMouseEnter={[Function]}
|
|
6263
|
+
onMouseLeave={[Function]}
|
|
6264
|
+
onMouseUp={[Function]}
|
|
6265
|
+
onTouchCancel={[Function]}
|
|
6266
|
+
onTouchEnd={[Function]}
|
|
6267
|
+
onTouchStart={[Function]}
|
|
6268
|
+
style={
|
|
6269
|
+
{
|
|
6270
|
+
"::MozFocusInner": {
|
|
6271
|
+
"border": 0,
|
|
6272
|
+
},
|
|
6273
|
+
":focus": {
|
|
6274
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6275
|
+
},
|
|
6276
|
+
"alignItems": "center",
|
|
6277
|
+
"background": "none",
|
|
6278
|
+
"border": "none",
|
|
6279
|
+
"boxSizing": "border-box",
|
|
6280
|
+
"color": "rgba(33,36,44,0.32)",
|
|
6281
|
+
"cursor": "default",
|
|
6282
|
+
"display": "inline-flex",
|
|
6283
|
+
"height": 32,
|
|
6284
|
+
"justifyContent": "center",
|
|
6285
|
+
"margin": -8,
|
|
6286
|
+
"outline": "none",
|
|
6287
|
+
"padding": 0,
|
|
6288
|
+
"position": "relative",
|
|
6289
|
+
"textDecoration": "none",
|
|
6290
|
+
"touchAction": "manipulation",
|
|
6291
|
+
"width": 32,
|
|
6292
|
+
}
|
|
6293
|
+
}
|
|
6294
|
+
tabIndex={-1}
|
|
6295
|
+
type="button"
|
|
6296
|
+
>
|
|
6297
|
+
<svg
|
|
6298
|
+
className=""
|
|
6299
|
+
height={24}
|
|
6300
|
+
style={
|
|
6301
|
+
{
|
|
6302
|
+
"display": "inline-block",
|
|
6303
|
+
"flexGrow": 0,
|
|
6304
|
+
"flexShrink": 0,
|
|
6305
|
+
"verticalAlign": "text-bottom",
|
|
6306
|
+
}
|
|
6307
|
+
}
|
|
6308
|
+
viewBox="0 0 24 24"
|
|
6309
|
+
width={24}
|
|
6310
|
+
>
|
|
6311
|
+
<path
|
|
6312
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6313
|
+
fill="currentColor"
|
|
6314
|
+
/>
|
|
6315
|
+
</svg>
|
|
6316
|
+
</button>
|
|
6317
|
+
`;
|
|
6318
|
+
|
|
6319
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:small light:false focused 1`] = `
|
|
6320
|
+
<button
|
|
6321
|
+
aria-label="search"
|
|
6322
|
+
className=""
|
|
6323
|
+
disabled={false}
|
|
6324
|
+
onBlur={[Function]}
|
|
6325
|
+
onClick={[Function]}
|
|
6326
|
+
onFocus={[Function]}
|
|
6327
|
+
onKeyDown={[Function]}
|
|
6328
|
+
onKeyUp={[Function]}
|
|
6329
|
+
onMouseDown={[Function]}
|
|
6330
|
+
onMouseEnter={[Function]}
|
|
6331
|
+
onMouseLeave={[Function]}
|
|
6332
|
+
onMouseUp={[Function]}
|
|
6333
|
+
onTouchCancel={[Function]}
|
|
6334
|
+
onTouchEnd={[Function]}
|
|
6335
|
+
onTouchStart={[Function]}
|
|
6336
|
+
style={
|
|
6337
|
+
{
|
|
6338
|
+
"::MozFocusInner": {
|
|
6339
|
+
"border": 0,
|
|
6340
|
+
},
|
|
6341
|
+
":focus": {
|
|
6342
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6343
|
+
},
|
|
6344
|
+
"alignItems": "center",
|
|
6345
|
+
"background": "none",
|
|
6346
|
+
"border": "none",
|
|
6347
|
+
"borderColor": "#d92916",
|
|
6348
|
+
"borderRadius": 4,
|
|
6349
|
+
"borderStyle": "solid",
|
|
6350
|
+
"borderWidth": 2,
|
|
6351
|
+
"boxSizing": "border-box",
|
|
6352
|
+
"color": "#d92916",
|
|
6353
|
+
"cursor": "pointer",
|
|
6354
|
+
"display": "inline-flex",
|
|
6355
|
+
"height": 32,
|
|
6356
|
+
"justifyContent": "center",
|
|
6357
|
+
"margin": -8,
|
|
6358
|
+
"outline": "none",
|
|
6359
|
+
"padding": 0,
|
|
6360
|
+
"position": "relative",
|
|
6361
|
+
"textDecoration": "none",
|
|
6362
|
+
"touchAction": "manipulation",
|
|
6363
|
+
"width": 32,
|
|
6364
|
+
}
|
|
6365
|
+
}
|
|
6366
|
+
tabIndex={0}
|
|
6367
|
+
type="button"
|
|
6368
|
+
>
|
|
6369
|
+
<svg
|
|
6370
|
+
className=""
|
|
6371
|
+
height={24}
|
|
6372
|
+
style={
|
|
6373
|
+
{
|
|
6374
|
+
"display": "inline-block",
|
|
6375
|
+
"flexGrow": 0,
|
|
6376
|
+
"flexShrink": 0,
|
|
6377
|
+
"verticalAlign": "text-bottom",
|
|
6378
|
+
}
|
|
6379
|
+
}
|
|
6380
|
+
viewBox="0 0 24 24"
|
|
6381
|
+
width={24}
|
|
6382
|
+
>
|
|
6383
|
+
<path
|
|
6384
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6385
|
+
fill="currentColor"
|
|
6386
|
+
/>
|
|
6387
|
+
</svg>
|
|
6388
|
+
</button>
|
|
6389
|
+
`;
|
|
6390
|
+
|
|
6391
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:small light:false hovered 1`] = `
|
|
6392
|
+
<button
|
|
6393
|
+
aria-label="search"
|
|
6394
|
+
className=""
|
|
6395
|
+
disabled={false}
|
|
6396
|
+
onBlur={[Function]}
|
|
6397
|
+
onClick={[Function]}
|
|
6398
|
+
onFocus={[Function]}
|
|
6399
|
+
onKeyDown={[Function]}
|
|
6400
|
+
onKeyUp={[Function]}
|
|
6401
|
+
onMouseDown={[Function]}
|
|
6402
|
+
onMouseEnter={[Function]}
|
|
6403
|
+
onMouseLeave={[Function]}
|
|
6404
|
+
onMouseUp={[Function]}
|
|
6405
|
+
onTouchCancel={[Function]}
|
|
6406
|
+
onTouchEnd={[Function]}
|
|
6407
|
+
onTouchStart={[Function]}
|
|
6408
|
+
style={
|
|
6409
|
+
{
|
|
6410
|
+
"::MozFocusInner": {
|
|
6411
|
+
"border": 0,
|
|
6412
|
+
},
|
|
6413
|
+
":focus": {
|
|
6414
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6415
|
+
},
|
|
6416
|
+
"alignItems": "center",
|
|
6417
|
+
"background": "none",
|
|
6418
|
+
"border": "none",
|
|
6419
|
+
"borderColor": "#d92916",
|
|
6420
|
+
"borderRadius": 4,
|
|
6421
|
+
"borderStyle": "solid",
|
|
6422
|
+
"borderWidth": 2,
|
|
6423
|
+
"boxSizing": "border-box",
|
|
6424
|
+
"color": "#d92916",
|
|
6425
|
+
"cursor": "pointer",
|
|
6426
|
+
"display": "inline-flex",
|
|
6427
|
+
"height": 32,
|
|
6428
|
+
"justifyContent": "center",
|
|
6429
|
+
"margin": -8,
|
|
6430
|
+
"outline": "none",
|
|
6431
|
+
"padding": 0,
|
|
6432
|
+
"position": "relative",
|
|
6433
|
+
"textDecoration": "none",
|
|
6434
|
+
"touchAction": "manipulation",
|
|
6435
|
+
"width": 32,
|
|
6436
|
+
}
|
|
6437
|
+
}
|
|
6438
|
+
tabIndex={0}
|
|
6439
|
+
type="button"
|
|
6440
|
+
>
|
|
6441
|
+
<svg
|
|
6442
|
+
className=""
|
|
6443
|
+
height={24}
|
|
6444
|
+
style={
|
|
6445
|
+
{
|
|
6446
|
+
"display": "inline-block",
|
|
6447
|
+
"flexGrow": 0,
|
|
6448
|
+
"flexShrink": 0,
|
|
6449
|
+
"verticalAlign": "text-bottom",
|
|
6450
|
+
}
|
|
6451
|
+
}
|
|
6452
|
+
viewBox="0 0 24 24"
|
|
6453
|
+
width={24}
|
|
6454
|
+
>
|
|
6455
|
+
<path
|
|
6456
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6457
|
+
fill="currentColor"
|
|
6458
|
+
/>
|
|
6459
|
+
</svg>
|
|
6460
|
+
</button>
|
|
6461
|
+
`;
|
|
6462
|
+
|
|
6463
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:small light:false pressed 1`] = `
|
|
6464
|
+
<button
|
|
6465
|
+
aria-label="search"
|
|
6466
|
+
className=""
|
|
6467
|
+
disabled={false}
|
|
6468
|
+
onBlur={[Function]}
|
|
6469
|
+
onClick={[Function]}
|
|
6470
|
+
onFocus={[Function]}
|
|
6471
|
+
onKeyDown={[Function]}
|
|
6472
|
+
onKeyUp={[Function]}
|
|
6473
|
+
onMouseDown={[Function]}
|
|
6474
|
+
onMouseEnter={[Function]}
|
|
6475
|
+
onMouseLeave={[Function]}
|
|
6476
|
+
onMouseUp={[Function]}
|
|
6477
|
+
onTouchCancel={[Function]}
|
|
6478
|
+
onTouchEnd={[Function]}
|
|
6479
|
+
onTouchStart={[Function]}
|
|
6480
|
+
style={
|
|
6481
|
+
{
|
|
6482
|
+
"::MozFocusInner": {
|
|
6483
|
+
"border": 0,
|
|
6484
|
+
},
|
|
6485
|
+
":focus": {
|
|
6486
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6487
|
+
},
|
|
6488
|
+
"alignItems": "center",
|
|
6489
|
+
"background": "none",
|
|
6490
|
+
"border": "none",
|
|
6491
|
+
"borderColor": "#9e271d",
|
|
6492
|
+
"borderRadius": 4,
|
|
6493
|
+
"borderStyle": "solid",
|
|
6494
|
+
"borderWidth": 2,
|
|
6495
|
+
"boxSizing": "border-box",
|
|
6496
|
+
"color": "#9e271d",
|
|
6497
|
+
"cursor": "pointer",
|
|
6498
|
+
"display": "inline-flex",
|
|
6499
|
+
"height": 32,
|
|
6500
|
+
"justifyContent": "center",
|
|
6501
|
+
"margin": -8,
|
|
6502
|
+
"outline": "none",
|
|
6503
|
+
"padding": 0,
|
|
6504
|
+
"position": "relative",
|
|
6505
|
+
"textDecoration": "none",
|
|
6506
|
+
"touchAction": "manipulation",
|
|
6507
|
+
"width": 32,
|
|
6508
|
+
}
|
|
6509
|
+
}
|
|
6510
|
+
tabIndex={0}
|
|
6511
|
+
type="button"
|
|
6512
|
+
>
|
|
6513
|
+
<svg
|
|
6514
|
+
className=""
|
|
6515
|
+
height={24}
|
|
6516
|
+
style={
|
|
6517
|
+
{
|
|
6518
|
+
"display": "inline-block",
|
|
6519
|
+
"flexGrow": 0,
|
|
6520
|
+
"flexShrink": 0,
|
|
6521
|
+
"verticalAlign": "text-bottom",
|
|
6522
|
+
}
|
|
6523
|
+
}
|
|
6524
|
+
viewBox="0 0 24 24"
|
|
6525
|
+
width={24}
|
|
6526
|
+
>
|
|
6527
|
+
<path
|
|
6528
|
+
d="M11 17a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm6.32-1.094l3.387 3.387a1 1 0 0 1-1.414 1.414l-3.387-3.387a8 8 0 1 1 1.414-1.414z"
|
|
6529
|
+
fill="currentColor"
|
|
6530
|
+
/>
|
|
6531
|
+
</svg>
|
|
6532
|
+
</button>
|
|
6533
|
+
`;
|
|
6534
|
+
|
|
6535
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false disabled 1`] = `
|
|
6536
|
+
<button
|
|
6537
|
+
aria-label="search"
|
|
6538
|
+
className=""
|
|
6539
|
+
disabled={true}
|
|
6540
|
+
onBlur={[Function]}
|
|
6541
|
+
onClick={[Function]}
|
|
6542
|
+
onFocus={[Function]}
|
|
6543
|
+
onKeyDown={[Function]}
|
|
6544
|
+
onKeyUp={[Function]}
|
|
6545
|
+
onMouseDown={[Function]}
|
|
6546
|
+
onMouseEnter={[Function]}
|
|
6547
|
+
onMouseLeave={[Function]}
|
|
6548
|
+
onMouseUp={[Function]}
|
|
6549
|
+
onTouchCancel={[Function]}
|
|
6550
|
+
onTouchEnd={[Function]}
|
|
6551
|
+
onTouchStart={[Function]}
|
|
6552
|
+
style={
|
|
6553
|
+
{
|
|
6554
|
+
"::MozFocusInner": {
|
|
6555
|
+
"border": 0,
|
|
6556
|
+
},
|
|
6557
|
+
":focus": {
|
|
6558
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6559
|
+
},
|
|
6560
|
+
"alignItems": "center",
|
|
6561
|
+
"background": "none",
|
|
6562
|
+
"border": "none",
|
|
6563
|
+
"boxSizing": "border-box",
|
|
6564
|
+
"color": "rgba(33,36,44,0.32)",
|
|
6565
|
+
"cursor": "default",
|
|
6566
|
+
"display": "inline-flex",
|
|
6567
|
+
"height": 24,
|
|
6568
|
+
"justifyContent": "center",
|
|
6569
|
+
"margin": -8,
|
|
6570
|
+
"outline": "none",
|
|
6571
|
+
"padding": 0,
|
|
6572
|
+
"position": "relative",
|
|
6573
|
+
"textDecoration": "none",
|
|
6574
|
+
"touchAction": "manipulation",
|
|
6575
|
+
"width": 24,
|
|
6576
|
+
}
|
|
6577
|
+
}
|
|
6578
|
+
tabIndex={-1}
|
|
6579
|
+
type="button"
|
|
6580
|
+
>
|
|
6581
|
+
<svg
|
|
6582
|
+
className=""
|
|
6583
|
+
height={16}
|
|
6584
|
+
style={
|
|
6585
|
+
{
|
|
6586
|
+
"display": "inline-block",
|
|
6587
|
+
"flexGrow": 0,
|
|
6588
|
+
"flexShrink": 0,
|
|
6589
|
+
"verticalAlign": "text-bottom",
|
|
6590
|
+
}
|
|
6591
|
+
}
|
|
6592
|
+
viewBox="0 0 16 16"
|
|
6593
|
+
width={16}
|
|
6594
|
+
>
|
|
6595
|
+
<path
|
|
6596
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
6597
|
+
fill="currentColor"
|
|
6598
|
+
/>
|
|
6599
|
+
</svg>
|
|
6600
|
+
</button>
|
|
6601
|
+
`;
|
|
6602
|
+
|
|
6603
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false focused 1`] = `
|
|
6604
|
+
<button
|
|
6605
|
+
aria-label="search"
|
|
6606
|
+
className=""
|
|
6607
|
+
disabled={false}
|
|
6608
|
+
onBlur={[Function]}
|
|
6609
|
+
onClick={[Function]}
|
|
6610
|
+
onFocus={[Function]}
|
|
6611
|
+
onKeyDown={[Function]}
|
|
6612
|
+
onKeyUp={[Function]}
|
|
6613
|
+
onMouseDown={[Function]}
|
|
6614
|
+
onMouseEnter={[Function]}
|
|
6615
|
+
onMouseLeave={[Function]}
|
|
6616
|
+
onMouseUp={[Function]}
|
|
6617
|
+
onTouchCancel={[Function]}
|
|
6618
|
+
onTouchEnd={[Function]}
|
|
6619
|
+
onTouchStart={[Function]}
|
|
6620
|
+
style={
|
|
6621
|
+
{
|
|
6622
|
+
"::MozFocusInner": {
|
|
6623
|
+
"border": 0,
|
|
6624
|
+
},
|
|
6625
|
+
":focus": {
|
|
6626
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6627
|
+
},
|
|
6628
|
+
"alignItems": "center",
|
|
6629
|
+
"background": "none",
|
|
6630
|
+
"border": "none",
|
|
6631
|
+
"borderColor": "#d92916",
|
|
6632
|
+
"borderRadius": 4,
|
|
6633
|
+
"borderStyle": "solid",
|
|
6634
|
+
"borderWidth": 2,
|
|
6635
|
+
"boxSizing": "border-box",
|
|
6636
|
+
"color": "#d92916",
|
|
6637
|
+
"cursor": "pointer",
|
|
6638
|
+
"display": "inline-flex",
|
|
6639
|
+
"height": 24,
|
|
6640
|
+
"justifyContent": "center",
|
|
6641
|
+
"margin": -8,
|
|
6642
|
+
"outline": "none",
|
|
6643
|
+
"padding": 0,
|
|
6644
|
+
"position": "relative",
|
|
6645
|
+
"textDecoration": "none",
|
|
6646
|
+
"touchAction": "manipulation",
|
|
6647
|
+
"width": 24,
|
|
6648
|
+
}
|
|
6649
|
+
}
|
|
6650
|
+
tabIndex={0}
|
|
6651
|
+
type="button"
|
|
6652
|
+
>
|
|
6653
|
+
<svg
|
|
6654
|
+
className=""
|
|
6655
|
+
height={16}
|
|
6656
|
+
style={
|
|
6657
|
+
{
|
|
6658
|
+
"display": "inline-block",
|
|
6659
|
+
"flexGrow": 0,
|
|
6660
|
+
"flexShrink": 0,
|
|
6661
|
+
"verticalAlign": "text-bottom",
|
|
6662
|
+
}
|
|
6663
|
+
}
|
|
6664
|
+
viewBox="0 0 16 16"
|
|
6665
|
+
width={16}
|
|
6666
|
+
>
|
|
6667
|
+
<path
|
|
6668
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
6669
|
+
fill="currentColor"
|
|
6670
|
+
/>
|
|
6671
|
+
</svg>
|
|
6672
|
+
</button>
|
|
6673
|
+
`;
|
|
6674
|
+
|
|
6675
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false hovered 1`] = `
|
|
6676
|
+
<button
|
|
6677
|
+
aria-label="search"
|
|
6678
|
+
className=""
|
|
6679
|
+
disabled={false}
|
|
6680
|
+
onBlur={[Function]}
|
|
6681
|
+
onClick={[Function]}
|
|
6682
|
+
onFocus={[Function]}
|
|
6683
|
+
onKeyDown={[Function]}
|
|
6684
|
+
onKeyUp={[Function]}
|
|
6685
|
+
onMouseDown={[Function]}
|
|
6686
|
+
onMouseEnter={[Function]}
|
|
6687
|
+
onMouseLeave={[Function]}
|
|
6688
|
+
onMouseUp={[Function]}
|
|
6689
|
+
onTouchCancel={[Function]}
|
|
6690
|
+
onTouchEnd={[Function]}
|
|
6691
|
+
onTouchStart={[Function]}
|
|
6692
|
+
style={
|
|
6693
|
+
{
|
|
6694
|
+
"::MozFocusInner": {
|
|
6695
|
+
"border": 0,
|
|
6696
|
+
},
|
|
6697
|
+
":focus": {
|
|
6698
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6699
|
+
},
|
|
6700
|
+
"alignItems": "center",
|
|
6701
|
+
"background": "none",
|
|
6702
|
+
"border": "none",
|
|
6703
|
+
"borderColor": "#d92916",
|
|
6704
|
+
"borderRadius": 4,
|
|
6705
|
+
"borderStyle": "solid",
|
|
6706
|
+
"borderWidth": 2,
|
|
6707
|
+
"boxSizing": "border-box",
|
|
6708
|
+
"color": "#d92916",
|
|
6709
|
+
"cursor": "pointer",
|
|
6710
|
+
"display": "inline-flex",
|
|
6711
|
+
"height": 24,
|
|
6712
|
+
"justifyContent": "center",
|
|
6713
|
+
"margin": -8,
|
|
6714
|
+
"outline": "none",
|
|
6715
|
+
"padding": 0,
|
|
6716
|
+
"position": "relative",
|
|
6717
|
+
"textDecoration": "none",
|
|
6718
|
+
"touchAction": "manipulation",
|
|
6719
|
+
"width": 24,
|
|
6720
|
+
}
|
|
6721
|
+
}
|
|
6722
|
+
tabIndex={0}
|
|
6723
|
+
type="button"
|
|
6724
|
+
>
|
|
6725
|
+
<svg
|
|
6726
|
+
className=""
|
|
6727
|
+
height={16}
|
|
6728
|
+
style={
|
|
6729
|
+
{
|
|
6730
|
+
"display": "inline-block",
|
|
6731
|
+
"flexGrow": 0,
|
|
6732
|
+
"flexShrink": 0,
|
|
6733
|
+
"verticalAlign": "text-bottom",
|
|
6734
|
+
}
|
|
6735
|
+
}
|
|
6736
|
+
viewBox="0 0 16 16"
|
|
6737
|
+
width={16}
|
|
6738
|
+
>
|
|
6739
|
+
<path
|
|
6740
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
6741
|
+
fill="currentColor"
|
|
6742
|
+
/>
|
|
6743
|
+
</svg>
|
|
6744
|
+
</button>
|
|
6745
|
+
`;
|
|
6746
|
+
|
|
6747
|
+
exports[`IconButtonCore kind:tertiary color:destructive size:xsmall light:false pressed 1`] = `
|
|
6748
|
+
<button
|
|
6749
|
+
aria-label="search"
|
|
6750
|
+
className=""
|
|
6751
|
+
disabled={false}
|
|
6752
|
+
onBlur={[Function]}
|
|
6753
|
+
onClick={[Function]}
|
|
6754
|
+
onFocus={[Function]}
|
|
6755
|
+
onKeyDown={[Function]}
|
|
6756
|
+
onKeyUp={[Function]}
|
|
6757
|
+
onMouseDown={[Function]}
|
|
6758
|
+
onMouseEnter={[Function]}
|
|
6759
|
+
onMouseLeave={[Function]}
|
|
6760
|
+
onMouseUp={[Function]}
|
|
6761
|
+
onTouchCancel={[Function]}
|
|
6762
|
+
onTouchEnd={[Function]}
|
|
6763
|
+
onTouchStart={[Function]}
|
|
6764
|
+
style={
|
|
6765
|
+
{
|
|
6766
|
+
"::MozFocusInner": {
|
|
6767
|
+
"border": 0,
|
|
6768
|
+
},
|
|
6769
|
+
":focus": {
|
|
6770
|
+
"WebkitTapHighlightColor": "rgba(0,0,0,0)",
|
|
6771
|
+
},
|
|
6772
|
+
"alignItems": "center",
|
|
6773
|
+
"background": "none",
|
|
6774
|
+
"border": "none",
|
|
6775
|
+
"borderColor": "#9e271d",
|
|
6776
|
+
"borderRadius": 4,
|
|
6777
|
+
"borderStyle": "solid",
|
|
6778
|
+
"borderWidth": 2,
|
|
6779
|
+
"boxSizing": "border-box",
|
|
6780
|
+
"color": "#9e271d",
|
|
6781
|
+
"cursor": "pointer",
|
|
6782
|
+
"display": "inline-flex",
|
|
6783
|
+
"height": 24,
|
|
6784
|
+
"justifyContent": "center",
|
|
6785
|
+
"margin": -8,
|
|
6786
|
+
"outline": "none",
|
|
6787
|
+
"padding": 0,
|
|
6788
|
+
"position": "relative",
|
|
6789
|
+
"textDecoration": "none",
|
|
6790
|
+
"touchAction": "manipulation",
|
|
6791
|
+
"width": 24,
|
|
6792
|
+
}
|
|
6793
|
+
}
|
|
6794
|
+
tabIndex={0}
|
|
6795
|
+
type="button"
|
|
6796
|
+
>
|
|
6797
|
+
<svg
|
|
6798
|
+
className=""
|
|
6799
|
+
height={16}
|
|
6800
|
+
style={
|
|
6801
|
+
{
|
|
6802
|
+
"display": "inline-block",
|
|
6803
|
+
"flexGrow": 0,
|
|
6804
|
+
"flexShrink": 0,
|
|
6805
|
+
"verticalAlign": "text-bottom",
|
|
6806
|
+
}
|
|
6807
|
+
}
|
|
6808
|
+
viewBox="0 0 16 16"
|
|
6809
|
+
width={16}
|
|
6810
|
+
>
|
|
6811
|
+
<path
|
|
6812
|
+
d="M11.172 9.757l2.535 2.536a1 1 0 0 1-1.414 1.414l-2.536-2.535a5 5 0 1 1 1.414-1.414zM7 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"
|
|
6813
|
+
fill="currentColor"
|
|
6814
|
+
/>
|
|
6815
|
+
</svg>
|
|
6816
|
+
</button>
|
|
6817
|
+
`;
|