@innovaccer/design-system 2.7.0-1 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/core/accessibility/utils/useAccessibilityProps.ts +30 -6
  3. package/core/components/atoms/_chip/__tests__/__snapshots__/_chip.test.tsx.snap +8 -0
  4. package/core/components/atoms/avatarGroup/AvatarGroup.tsx +1 -0
  5. package/core/components/atoms/avatarGroup/__stories__/index.story.tsx +1 -1
  6. package/core/components/atoms/button/__tests__/__snapshots__/Button.test.tsx.snap +9 -0
  7. package/core/components/atoms/checkbox/__tests__/__snapshots__/Checkbox.test.tsx.snap +6 -0
  8. package/core/components/atoms/chipGroup/__tests__/__snapshots__/chipGroup.test.tsx.snap +4 -0
  9. package/core/components/atoms/dropdown/__tests__/__snapshots__/Dropdown.test.tsx.snap +29 -0
  10. package/core/components/atoms/input/__tests__/__snapshots__/Input.test.tsx.snap +5 -0
  11. package/core/components/atoms/message/__tests__/__snapshots__/Message.test.tsx.snap +4 -0
  12. package/core/components/atoms/metaList/__tests__/__snapshots__/MetaList.test.tsx.snap +296 -0
  13. package/core/components/atoms/metricInput/__tests__/__snapshots__/MetricInput.test.tsx.snap +2 -0
  14. package/core/components/atoms/multiSlider/Handle.tsx +1 -0
  15. package/core/components/atoms/toast/__tests__/__snapshots__/Toast.test.tsx.snap +12 -0
  16. package/core/components/molecules/dialog/__tests__/__snapshots__/Dialog.test.tsx.snap +13 -0
  17. package/core/components/molecules/dropzone/Dropzone.tsx +16 -9
  18. package/core/components/molecules/dropzone/__stories__/index.story.tsx +15 -1
  19. package/core/components/molecules/dropzone/__tests__/__snapshots__/Dropzone.test.tsx.snap +68 -70
  20. package/core/components/molecules/editableDropdown/__tests__/__snapshots__/EditableDropdown.test.tsx.snap +1 -0
  21. package/core/components/molecules/fileList/__tests__/__snapshots__/FileList.test.tsx.snap +5 -0
  22. package/core/components/molecules/fileUploader/__tests__/__snapshots__/FileUploader.test.tsx.snap +6 -0
  23. package/core/components/molecules/fileUploader/__tests__/__snapshots__/FileUploaderList.test.tsx.snap +5 -0
  24. package/core/components/molecules/fullscreenModal/__tests__/__snapshots__/Fullscreen.test.tsx.snap +6 -0
  25. package/core/components/molecules/modal/__tests__/__snapshots__/Modal.test.tsx.snap +30 -0
  26. package/core/components/molecules/overlayHeader/__tests__/__snapshots__/OverlayHeader.test.tsx.snap +1 -0
  27. package/core/components/molecules/pagination/__tests__/__snapshots__/Pagination.test.tsx.snap +8 -0
  28. package/core/components/molecules/sidesheet/__tests__/__snapshots__/Sidesheet.test.tsx.snap +2 -0
  29. package/core/components/molecules/stepper/__tests__/__snapshots__/Stepper.test.tsx.snap +4 -0
  30. package/core/components/molecules/tabs/__tests__/__snapshots__/Tabs.test.tsx.snap +2 -0
  31. package/core/components/organisms/calendar/__tests__/__snapshots__/Calendar.test.tsx.snap +98 -0
  32. package/core/components/organisms/datePicker/__tests__/__snapshots__/DatePicker.test.tsx.snap +34 -0
  33. package/core/components/organisms/dateRangePicker/__tests__/__snapshots__/DateRangePicker.test.tsx.snap +606 -0
  34. package/core/components/organisms/horizontalNav/__tests__/__snapshots__/HorizontalNav.test.tsx.snap +1 -0
  35. package/core/components/organisms/inlineMessage/__tests__/__snapshots__/InlineMessage.test.tsx.snap +4 -0
  36. package/core/components/organisms/navigation/__tests__/__snapshots__/Navigation.test.tsx.snap +2 -0
  37. package/core/components/organisms/table/__tests__/__snapshots__/Table.test.tsx.snap +1800 -0
  38. package/core/components/organisms/verticalNav/__tests__/__snapshots__/VerticalNav.test.tsx.snap +14 -0
  39. package/core/utils/__tests__/__snapshots__/TS.test.tsx.snap +19 -0
  40. package/dist/core/accessibility/utils/useAccessibilityProps.d.ts +4 -3
  41. package/dist/index.esm.js +40 -18
  42. package/dist/index.js +39 -17
  43. package/dist/index.js.map +1 -1
  44. package/dist/index.umd.js +1 -1
  45. package/dist/index.umd.js.br +0 -0
  46. package/dist/index.umd.js.gz +0 -0
  47. package/package.json +1 -1
@@ -29,6 +29,7 @@ exports[`DateRangePicker component
29
29
  <i
30
30
  class="material-icons material-icons-round Icon Icon--disabled"
31
31
  data-test="DesignSystem-Button--Icon"
32
+ role="button"
32
33
  style="font-size: 16px; width: 16px;"
33
34
  >
34
35
  arrow_back_round
@@ -49,6 +50,7 @@ exports[`DateRangePicker component
49
50
  </h5>
50
51
  <i
51
52
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53
+ role="button"
52
54
  style="font-size: 16px; width: 16px;"
53
55
  >
54
56
  keyboard_arrow_down_round
@@ -65,6 +67,7 @@ exports[`DateRangePicker component
65
67
  </h5>
66
68
  <i
67
69
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
70
+ role="button"
68
71
  style="font-size: 16px; width: 16px;"
69
72
  >
70
73
  keyboard_arrow_down_round
@@ -83,6 +86,7 @@ exports[`DateRangePicker component
83
86
  <i
84
87
  class="material-icons material-icons-round Icon Icon--default"
85
88
  data-test="DesignSystem-Button--Icon"
89
+ role="button"
86
90
  style="font-size: 16px; width: 16px;"
87
91
  >
88
92
  arrow_forward_round
@@ -665,6 +669,7 @@ exports[`DateRangePicker component
665
669
  <i
666
670
  class="material-icons material-icons-round Icon Icon--disabled"
667
671
  data-test="DesignSystem-Button--Icon"
672
+ role="button"
668
673
  style="font-size: 16px; width: 16px;"
669
674
  >
670
675
  arrow_back_round
@@ -685,6 +690,7 @@ exports[`DateRangePicker component
685
690
  </h5>
686
691
  <i
687
692
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
693
+ role="button"
688
694
  style="font-size: 16px; width: 16px;"
689
695
  >
690
696
  keyboard_arrow_down_round
@@ -701,6 +707,7 @@ exports[`DateRangePicker component
701
707
  </h5>
702
708
  <i
703
709
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
710
+ role="button"
704
711
  style="font-size: 16px; width: 16px;"
705
712
  >
706
713
  keyboard_arrow_down_round
@@ -719,6 +726,7 @@ exports[`DateRangePicker component
719
726
  <i
720
727
  class="material-icons material-icons-round Icon Icon--default"
721
728
  data-test="DesignSystem-Button--Icon"
729
+ role="button"
722
730
  style="font-size: 16px; width: 16px;"
723
731
  >
724
732
  arrow_forward_round
@@ -1300,6 +1308,7 @@ exports[`DateRangePicker component
1300
1308
  <i
1301
1309
  class="material-icons material-icons-round Icon Icon--default"
1302
1310
  data-test="DesignSystem-Button--Icon"
1311
+ role="button"
1303
1312
  style="font-size: 16px; width: 16px;"
1304
1313
  >
1305
1314
  arrow_back_round
@@ -1320,6 +1329,7 @@ exports[`DateRangePicker component
1320
1329
  </h5>
1321
1330
  <i
1322
1331
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
1332
+ role="button"
1323
1333
  style="font-size: 16px; width: 16px;"
1324
1334
  >
1325
1335
  keyboard_arrow_down_round
@@ -1336,6 +1346,7 @@ exports[`DateRangePicker component
1336
1346
  </h5>
1337
1347
  <i
1338
1348
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
1349
+ role="button"
1339
1350
  style="font-size: 16px; width: 16px;"
1340
1351
  >
1341
1352
  keyboard_arrow_down_round
@@ -1354,6 +1365,7 @@ exports[`DateRangePicker component
1354
1365
  <i
1355
1366
  class="material-icons material-icons-round Icon Icon--default"
1356
1367
  data-test="DesignSystem-Button--Icon"
1368
+ role="button"
1357
1369
  style="font-size: 16px; width: 16px;"
1358
1370
  >
1359
1371
  arrow_forward_round
@@ -1935,6 +1947,7 @@ exports[`DateRangePicker component
1935
1947
  <i
1936
1948
  class="material-icons material-icons-round Icon Icon--default"
1937
1949
  data-test="DesignSystem-Button--Icon"
1950
+ role="button"
1938
1951
  style="font-size: 16px; width: 16px;"
1939
1952
  >
1940
1953
  arrow_back_round
@@ -1955,6 +1968,7 @@ exports[`DateRangePicker component
1955
1968
  </h5>
1956
1969
  <i
1957
1970
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
1971
+ role="button"
1958
1972
  style="font-size: 16px; width: 16px;"
1959
1973
  >
1960
1974
  keyboard_arrow_down_round
@@ -1971,6 +1985,7 @@ exports[`DateRangePicker component
1971
1985
  </h5>
1972
1986
  <i
1973
1987
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
1988
+ role="button"
1974
1989
  style="font-size: 16px; width: 16px;"
1975
1990
  >
1976
1991
  keyboard_arrow_down_round
@@ -1989,6 +2004,7 @@ exports[`DateRangePicker component
1989
2004
  <i
1990
2005
  class="material-icons material-icons-round Icon Icon--default"
1991
2006
  data-test="DesignSystem-Button--Icon"
2007
+ role="button"
1992
2008
  style="font-size: 16px; width: 16px;"
1993
2009
  >
1994
2010
  arrow_forward_round
@@ -2570,6 +2586,7 @@ exports[`DateRangePicker component
2570
2586
  <i
2571
2587
  class="material-icons material-icons-round Icon Icon--default"
2572
2588
  data-test="DesignSystem-Button--Icon"
2589
+ role="button"
2573
2590
  style="font-size: 16px; width: 16px;"
2574
2591
  >
2575
2592
  arrow_back_round
@@ -2590,6 +2607,7 @@ exports[`DateRangePicker component
2590
2607
  </h5>
2591
2608
  <i
2592
2609
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
2610
+ role="button"
2593
2611
  style="font-size: 16px; width: 16px;"
2594
2612
  >
2595
2613
  keyboard_arrow_down_round
@@ -2606,6 +2624,7 @@ exports[`DateRangePicker component
2606
2624
  </h5>
2607
2625
  <i
2608
2626
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
2627
+ role="button"
2609
2628
  style="font-size: 16px; width: 16px;"
2610
2629
  >
2611
2630
  keyboard_arrow_down_round
@@ -2624,6 +2643,7 @@ exports[`DateRangePicker component
2624
2643
  <i
2625
2644
  class="material-icons material-icons-round Icon Icon--default"
2626
2645
  data-test="DesignSystem-Button--Icon"
2646
+ role="button"
2627
2647
  style="font-size: 16px; width: 16px;"
2628
2648
  >
2629
2649
  arrow_forward_round
@@ -3205,6 +3225,7 @@ exports[`DateRangePicker component
3205
3225
  <i
3206
3226
  class="material-icons material-icons-round Icon Icon--default"
3207
3227
  data-test="DesignSystem-Button--Icon"
3228
+ role="button"
3208
3229
  style="font-size: 16px; width: 16px;"
3209
3230
  >
3210
3231
  arrow_back_round
@@ -3225,6 +3246,7 @@ exports[`DateRangePicker component
3225
3246
  </h5>
3226
3247
  <i
3227
3248
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
3249
+ role="button"
3228
3250
  style="font-size: 16px; width: 16px;"
3229
3251
  >
3230
3252
  keyboard_arrow_down_round
@@ -3241,6 +3263,7 @@ exports[`DateRangePicker component
3241
3263
  </h5>
3242
3264
  <i
3243
3265
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
3266
+ role="button"
3244
3267
  style="font-size: 16px; width: 16px;"
3245
3268
  >
3246
3269
  keyboard_arrow_down_round
@@ -3259,6 +3282,7 @@ exports[`DateRangePicker component
3259
3282
  <i
3260
3283
  class="material-icons material-icons-round Icon Icon--default"
3261
3284
  data-test="DesignSystem-Button--Icon"
3285
+ role="button"
3262
3286
  style="font-size: 16px; width: 16px;"
3263
3287
  >
3264
3288
  arrow_forward_round
@@ -3840,6 +3864,7 @@ exports[`DateRangePicker component
3840
3864
  <i
3841
3865
  class="material-icons material-icons-round Icon Icon--default"
3842
3866
  data-test="DesignSystem-Button--Icon"
3867
+ role="button"
3843
3868
  style="font-size: 16px; width: 16px;"
3844
3869
  >
3845
3870
  arrow_back_round
@@ -3860,6 +3885,7 @@ exports[`DateRangePicker component
3860
3885
  </h5>
3861
3886
  <i
3862
3887
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
3888
+ role="button"
3863
3889
  style="font-size: 16px; width: 16px;"
3864
3890
  >
3865
3891
  keyboard_arrow_down_round
@@ -3876,6 +3902,7 @@ exports[`DateRangePicker component
3876
3902
  </h5>
3877
3903
  <i
3878
3904
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
3905
+ role="button"
3879
3906
  style="font-size: 16px; width: 16px;"
3880
3907
  >
3881
3908
  keyboard_arrow_down_round
@@ -3894,6 +3921,7 @@ exports[`DateRangePicker component
3894
3921
  <i
3895
3922
  class="material-icons material-icons-round Icon Icon--default"
3896
3923
  data-test="DesignSystem-Button--Icon"
3924
+ role="button"
3897
3925
  style="font-size: 16px; width: 16px;"
3898
3926
  >
3899
3927
  arrow_forward_round
@@ -4475,6 +4503,7 @@ exports[`DateRangePicker component
4475
4503
  <i
4476
4504
  class="material-icons material-icons-round Icon Icon--default"
4477
4505
  data-test="DesignSystem-Button--Icon"
4506
+ role="button"
4478
4507
  style="font-size: 16px; width: 16px;"
4479
4508
  >
4480
4509
  arrow_back_round
@@ -4495,6 +4524,7 @@ exports[`DateRangePicker component
4495
4524
  </h5>
4496
4525
  <i
4497
4526
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
4527
+ role="button"
4498
4528
  style="font-size: 16px; width: 16px;"
4499
4529
  >
4500
4530
  keyboard_arrow_down_round
@@ -4511,6 +4541,7 @@ exports[`DateRangePicker component
4511
4541
  </h5>
4512
4542
  <i
4513
4543
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
4544
+ role="button"
4514
4545
  style="font-size: 16px; width: 16px;"
4515
4546
  >
4516
4547
  keyboard_arrow_down_round
@@ -4529,6 +4560,7 @@ exports[`DateRangePicker component
4529
4560
  <i
4530
4561
  class="material-icons material-icons-round Icon Icon--default"
4531
4562
  data-test="DesignSystem-Button--Icon"
4563
+ role="button"
4532
4564
  style="font-size: 16px; width: 16px;"
4533
4565
  >
4534
4566
  arrow_forward_round
@@ -5110,6 +5142,7 @@ exports[`DateRangePicker component
5110
5142
  <i
5111
5143
  class="material-icons material-icons-round Icon Icon--default"
5112
5144
  data-test="DesignSystem-Button--Icon"
5145
+ role="button"
5113
5146
  style="font-size: 16px; width: 16px;"
5114
5147
  >
5115
5148
  arrow_back_round
@@ -5130,6 +5163,7 @@ exports[`DateRangePicker component
5130
5163
  </h5>
5131
5164
  <i
5132
5165
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
5166
+ role="button"
5133
5167
  style="font-size: 16px; width: 16px;"
5134
5168
  >
5135
5169
  keyboard_arrow_down_round
@@ -5146,6 +5180,7 @@ exports[`DateRangePicker component
5146
5180
  </h5>
5147
5181
  <i
5148
5182
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
5183
+ role="button"
5149
5184
  style="font-size: 16px; width: 16px;"
5150
5185
  >
5151
5186
  keyboard_arrow_down_round
@@ -5164,6 +5199,7 @@ exports[`DateRangePicker component
5164
5199
  <i
5165
5200
  class="material-icons material-icons-round Icon Icon--default"
5166
5201
  data-test="DesignSystem-Button--Icon"
5202
+ role="button"
5167
5203
  style="font-size: 16px; width: 16px;"
5168
5204
  >
5169
5205
  arrow_forward_round
@@ -5745,6 +5781,7 @@ exports[`DateRangePicker component
5745
5781
  <i
5746
5782
  class="material-icons material-icons-round Icon Icon--default"
5747
5783
  data-test="DesignSystem-Button--Icon"
5784
+ role="button"
5748
5785
  style="font-size: 16px; width: 16px;"
5749
5786
  >
5750
5787
  arrow_back_round
@@ -5765,6 +5802,7 @@ exports[`DateRangePicker component
5765
5802
  </h5>
5766
5803
  <i
5767
5804
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
5805
+ role="button"
5768
5806
  style="font-size: 16px; width: 16px;"
5769
5807
  >
5770
5808
  keyboard_arrow_down_round
@@ -5781,6 +5819,7 @@ exports[`DateRangePicker component
5781
5819
  </h5>
5782
5820
  <i
5783
5821
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
5822
+ role="button"
5784
5823
  style="font-size: 16px; width: 16px;"
5785
5824
  >
5786
5825
  keyboard_arrow_down_round
@@ -5799,6 +5838,7 @@ exports[`DateRangePicker component
5799
5838
  <i
5800
5839
  class="material-icons material-icons-round Icon Icon--default"
5801
5840
  data-test="DesignSystem-Button--Icon"
5841
+ role="button"
5802
5842
  style="font-size: 16px; width: 16px;"
5803
5843
  >
5804
5844
  arrow_forward_round
@@ -6380,6 +6420,7 @@ exports[`DateRangePicker component
6380
6420
  <i
6381
6421
  class="material-icons material-icons-round Icon Icon--default"
6382
6422
  data-test="DesignSystem-Button--Icon"
6423
+ role="button"
6383
6424
  style="font-size: 16px; width: 16px;"
6384
6425
  >
6385
6426
  arrow_back_round
@@ -6400,6 +6441,7 @@ exports[`DateRangePicker component
6400
6441
  </h5>
6401
6442
  <i
6402
6443
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
6444
+ role="button"
6403
6445
  style="font-size: 16px; width: 16px;"
6404
6446
  >
6405
6447
  keyboard_arrow_down_round
@@ -6416,6 +6458,7 @@ exports[`DateRangePicker component
6416
6458
  </h5>
6417
6459
  <i
6418
6460
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
6461
+ role="button"
6419
6462
  style="font-size: 16px; width: 16px;"
6420
6463
  >
6421
6464
  keyboard_arrow_down_round
@@ -6434,6 +6477,7 @@ exports[`DateRangePicker component
6434
6477
  <i
6435
6478
  class="material-icons material-icons-round Icon Icon--default"
6436
6479
  data-test="DesignSystem-Button--Icon"
6480
+ role="button"
6437
6481
  style="font-size: 16px; width: 16px;"
6438
6482
  >
6439
6483
  arrow_forward_round
@@ -7015,6 +7059,7 @@ exports[`DateRangePicker component
7015
7059
  <i
7016
7060
  class="material-icons material-icons-round Icon Icon--default"
7017
7061
  data-test="DesignSystem-Button--Icon"
7062
+ role="button"
7018
7063
  style="font-size: 16px; width: 16px;"
7019
7064
  >
7020
7065
  arrow_back_round
@@ -7035,6 +7080,7 @@ exports[`DateRangePicker component
7035
7080
  </h5>
7036
7081
  <i
7037
7082
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
7083
+ role="button"
7038
7084
  style="font-size: 16px; width: 16px;"
7039
7085
  >
7040
7086
  keyboard_arrow_down_round
@@ -7051,6 +7097,7 @@ exports[`DateRangePicker component
7051
7097
  </h5>
7052
7098
  <i
7053
7099
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
7100
+ role="button"
7054
7101
  style="font-size: 16px; width: 16px;"
7055
7102
  >
7056
7103
  keyboard_arrow_down_round
@@ -7069,6 +7116,7 @@ exports[`DateRangePicker component
7069
7116
  <i
7070
7117
  class="material-icons material-icons-round Icon Icon--default"
7071
7118
  data-test="DesignSystem-Button--Icon"
7119
+ role="button"
7072
7120
  style="font-size: 16px; width: 16px;"
7073
7121
  >
7074
7122
  arrow_forward_round
@@ -7650,6 +7698,7 @@ exports[`DateRangePicker component
7650
7698
  <i
7651
7699
  class="material-icons material-icons-round Icon Icon--default"
7652
7700
  data-test="DesignSystem-Button--Icon"
7701
+ role="button"
7653
7702
  style="font-size: 16px; width: 16px;"
7654
7703
  >
7655
7704
  arrow_back_round
@@ -7670,6 +7719,7 @@ exports[`DateRangePicker component
7670
7719
  </h5>
7671
7720
  <i
7672
7721
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
7722
+ role="button"
7673
7723
  style="font-size: 16px; width: 16px;"
7674
7724
  >
7675
7725
  keyboard_arrow_down_round
@@ -7686,6 +7736,7 @@ exports[`DateRangePicker component
7686
7736
  </h5>
7687
7737
  <i
7688
7738
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
7739
+ role="button"
7689
7740
  style="font-size: 16px; width: 16px;"
7690
7741
  >
7691
7742
  keyboard_arrow_down_round
@@ -7704,6 +7755,7 @@ exports[`DateRangePicker component
7704
7755
  <i
7705
7756
  class="material-icons material-icons-round Icon Icon--default"
7706
7757
  data-test="DesignSystem-Button--Icon"
7758
+ role="button"
7707
7759
  style="font-size: 16px; width: 16px;"
7708
7760
  >
7709
7761
  arrow_forward_round
@@ -8285,6 +8337,7 @@ exports[`DateRangePicker component
8285
8337
  <i
8286
8338
  class="material-icons material-icons-round Icon Icon--default"
8287
8339
  data-test="DesignSystem-Button--Icon"
8340
+ role="button"
8288
8341
  style="font-size: 16px; width: 16px;"
8289
8342
  >
8290
8343
  arrow_back_round
@@ -8305,6 +8358,7 @@ exports[`DateRangePicker component
8305
8358
  </h5>
8306
8359
  <i
8307
8360
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
8361
+ role="button"
8308
8362
  style="font-size: 16px; width: 16px;"
8309
8363
  >
8310
8364
  keyboard_arrow_down_round
@@ -8321,6 +8375,7 @@ exports[`DateRangePicker component
8321
8375
  </h5>
8322
8376
  <i
8323
8377
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
8378
+ role="button"
8324
8379
  style="font-size: 16px; width: 16px;"
8325
8380
  >
8326
8381
  keyboard_arrow_down_round
@@ -8339,6 +8394,7 @@ exports[`DateRangePicker component
8339
8394
  <i
8340
8395
  class="material-icons material-icons-round Icon Icon--default"
8341
8396
  data-test="DesignSystem-Button--Icon"
8397
+ role="button"
8342
8398
  style="font-size: 16px; width: 16px;"
8343
8399
  >
8344
8400
  arrow_forward_round
@@ -8920,6 +8976,7 @@ exports[`DateRangePicker component
8920
8976
  <i
8921
8977
  class="material-icons material-icons-round Icon Icon--default"
8922
8978
  data-test="DesignSystem-Button--Icon"
8979
+ role="button"
8923
8980
  style="font-size: 16px; width: 16px;"
8924
8981
  >
8925
8982
  arrow_back_round
@@ -8940,6 +8997,7 @@ exports[`DateRangePicker component
8940
8997
  </h5>
8941
8998
  <i
8942
8999
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
9000
+ role="button"
8943
9001
  style="font-size: 16px; width: 16px;"
8944
9002
  >
8945
9003
  keyboard_arrow_down_round
@@ -8956,6 +9014,7 @@ exports[`DateRangePicker component
8956
9014
  </h5>
8957
9015
  <i
8958
9016
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
9017
+ role="button"
8959
9018
  style="font-size: 16px; width: 16px;"
8960
9019
  >
8961
9020
  keyboard_arrow_down_round
@@ -8974,6 +9033,7 @@ exports[`DateRangePicker component
8974
9033
  <i
8975
9034
  class="material-icons material-icons-round Icon Icon--default"
8976
9035
  data-test="DesignSystem-Button--Icon"
9036
+ role="button"
8977
9037
  style="font-size: 16px; width: 16px;"
8978
9038
  >
8979
9039
  arrow_forward_round
@@ -9555,6 +9615,7 @@ exports[`DateRangePicker component
9555
9615
  <i
9556
9616
  class="material-icons material-icons-round Icon Icon--default"
9557
9617
  data-test="DesignSystem-Button--Icon"
9618
+ role="button"
9558
9619
  style="font-size: 16px; width: 16px;"
9559
9620
  >
9560
9621
  arrow_back_round
@@ -9575,6 +9636,7 @@ exports[`DateRangePicker component
9575
9636
  </h5>
9576
9637
  <i
9577
9638
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
9639
+ role="button"
9578
9640
  style="font-size: 16px; width: 16px;"
9579
9641
  >
9580
9642
  keyboard_arrow_down_round
@@ -9591,6 +9653,7 @@ exports[`DateRangePicker component
9591
9653
  </h5>
9592
9654
  <i
9593
9655
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
9656
+ role="button"
9594
9657
  style="font-size: 16px; width: 16px;"
9595
9658
  >
9596
9659
  keyboard_arrow_down_round
@@ -9609,6 +9672,7 @@ exports[`DateRangePicker component
9609
9672
  <i
9610
9673
  class="material-icons material-icons-round Icon Icon--default"
9611
9674
  data-test="DesignSystem-Button--Icon"
9675
+ role="button"
9612
9676
  style="font-size: 16px; width: 16px;"
9613
9677
  >
9614
9678
  arrow_forward_round
@@ -10190,6 +10254,7 @@ exports[`DateRangePicker component
10190
10254
  <i
10191
10255
  class="material-icons material-icons-round Icon Icon--default"
10192
10256
  data-test="DesignSystem-Button--Icon"
10257
+ role="button"
10193
10258
  style="font-size: 16px; width: 16px;"
10194
10259
  >
10195
10260
  arrow_back_round
@@ -10210,6 +10275,7 @@ exports[`DateRangePicker component
10210
10275
  </h5>
10211
10276
  <i
10212
10277
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
10278
+ role="button"
10213
10279
  style="font-size: 16px; width: 16px;"
10214
10280
  >
10215
10281
  keyboard_arrow_down_round
@@ -10226,6 +10292,7 @@ exports[`DateRangePicker component
10226
10292
  </h5>
10227
10293
  <i
10228
10294
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
10295
+ role="button"
10229
10296
  style="font-size: 16px; width: 16px;"
10230
10297
  >
10231
10298
  keyboard_arrow_down_round
@@ -10244,6 +10311,7 @@ exports[`DateRangePicker component
10244
10311
  <i
10245
10312
  class="material-icons material-icons-round Icon Icon--default"
10246
10313
  data-test="DesignSystem-Button--Icon"
10314
+ role="button"
10247
10315
  style="font-size: 16px; width: 16px;"
10248
10316
  >
10249
10317
  arrow_forward_round
@@ -10825,6 +10893,7 @@ exports[`DateRangePicker component
10825
10893
  <i
10826
10894
  class="material-icons material-icons-round Icon Icon--default"
10827
10895
  data-test="DesignSystem-Button--Icon"
10896
+ role="button"
10828
10897
  style="font-size: 16px; width: 16px;"
10829
10898
  >
10830
10899
  arrow_back_round
@@ -10845,6 +10914,7 @@ exports[`DateRangePicker component
10845
10914
  </h5>
10846
10915
  <i
10847
10916
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
10917
+ role="button"
10848
10918
  style="font-size: 16px; width: 16px;"
10849
10919
  >
10850
10920
  keyboard_arrow_down_round
@@ -10861,6 +10931,7 @@ exports[`DateRangePicker component
10861
10931
  </h5>
10862
10932
  <i
10863
10933
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
10934
+ role="button"
10864
10935
  style="font-size: 16px; width: 16px;"
10865
10936
  >
10866
10937
  keyboard_arrow_down_round
@@ -10879,6 +10950,7 @@ exports[`DateRangePicker component
10879
10950
  <i
10880
10951
  class="material-icons material-icons-round Icon Icon--default"
10881
10952
  data-test="DesignSystem-Button--Icon"
10953
+ role="button"
10882
10954
  style="font-size: 16px; width: 16px;"
10883
10955
  >
10884
10956
  arrow_forward_round
@@ -11460,6 +11532,7 @@ exports[`DateRangePicker component
11460
11532
  <i
11461
11533
  class="material-icons material-icons-round Icon Icon--default"
11462
11534
  data-test="DesignSystem-Button--Icon"
11535
+ role="button"
11463
11536
  style="font-size: 16px; width: 16px;"
11464
11537
  >
11465
11538
  arrow_back_round
@@ -11480,6 +11553,7 @@ exports[`DateRangePicker component
11480
11553
  </h5>
11481
11554
  <i
11482
11555
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
11556
+ role="button"
11483
11557
  style="font-size: 16px; width: 16px;"
11484
11558
  >
11485
11559
  keyboard_arrow_down_round
@@ -11496,6 +11570,7 @@ exports[`DateRangePicker component
11496
11570
  </h5>
11497
11571
  <i
11498
11572
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
11573
+ role="button"
11499
11574
  style="font-size: 16px; width: 16px;"
11500
11575
  >
11501
11576
  keyboard_arrow_down_round
@@ -11514,6 +11589,7 @@ exports[`DateRangePicker component
11514
11589
  <i
11515
11590
  class="material-icons material-icons-round Icon Icon--default"
11516
11591
  data-test="DesignSystem-Button--Icon"
11592
+ role="button"
11517
11593
  style="font-size: 16px; width: 16px;"
11518
11594
  >
11519
11595
  arrow_forward_round
@@ -12095,6 +12171,7 @@ exports[`DateRangePicker component
12095
12171
  <i
12096
12172
  class="material-icons material-icons-round Icon Icon--default"
12097
12173
  data-test="DesignSystem-Button--Icon"
12174
+ role="button"
12098
12175
  style="font-size: 16px; width: 16px;"
12099
12176
  >
12100
12177
  arrow_back_round
@@ -12115,6 +12192,7 @@ exports[`DateRangePicker component
12115
12192
  </h5>
12116
12193
  <i
12117
12194
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
12195
+ role="button"
12118
12196
  style="font-size: 16px; width: 16px;"
12119
12197
  >
12120
12198
  keyboard_arrow_down_round
@@ -12131,6 +12209,7 @@ exports[`DateRangePicker component
12131
12209
  </h5>
12132
12210
  <i
12133
12211
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
12212
+ role="button"
12134
12213
  style="font-size: 16px; width: 16px;"
12135
12214
  >
12136
12215
  keyboard_arrow_down_round
@@ -12149,6 +12228,7 @@ exports[`DateRangePicker component
12149
12228
  <i
12150
12229
  class="material-icons material-icons-round Icon Icon--default"
12151
12230
  data-test="DesignSystem-Button--Icon"
12231
+ role="button"
12152
12232
  style="font-size: 16px; width: 16px;"
12153
12233
  >
12154
12234
  arrow_forward_round
@@ -12730,6 +12810,7 @@ exports[`DateRangePicker component
12730
12810
  <i
12731
12811
  class="material-icons material-icons-round Icon Icon--default"
12732
12812
  data-test="DesignSystem-Button--Icon"
12813
+ role="button"
12733
12814
  style="font-size: 16px; width: 16px;"
12734
12815
  >
12735
12816
  arrow_back_round
@@ -12750,6 +12831,7 @@ exports[`DateRangePicker component
12750
12831
  </h5>
12751
12832
  <i
12752
12833
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
12834
+ role="button"
12753
12835
  style="font-size: 16px; width: 16px;"
12754
12836
  >
12755
12837
  keyboard_arrow_down_round
@@ -12766,6 +12848,7 @@ exports[`DateRangePicker component
12766
12848
  </h5>
12767
12849
  <i
12768
12850
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
12851
+ role="button"
12769
12852
  style="font-size: 16px; width: 16px;"
12770
12853
  >
12771
12854
  keyboard_arrow_down_round
@@ -12784,6 +12867,7 @@ exports[`DateRangePicker component
12784
12867
  <i
12785
12868
  class="material-icons material-icons-round Icon Icon--default"
12786
12869
  data-test="DesignSystem-Button--Icon"
12870
+ role="button"
12787
12871
  style="font-size: 16px; width: 16px;"
12788
12872
  >
12789
12873
  arrow_forward_round
@@ -13365,6 +13449,7 @@ exports[`DateRangePicker component
13365
13449
  <i
13366
13450
  class="material-icons material-icons-round Icon Icon--default"
13367
13451
  data-test="DesignSystem-Button--Icon"
13452
+ role="button"
13368
13453
  style="font-size: 16px; width: 16px;"
13369
13454
  >
13370
13455
  arrow_back_round
@@ -13385,6 +13470,7 @@ exports[`DateRangePicker component
13385
13470
  </h5>
13386
13471
  <i
13387
13472
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
13473
+ role="button"
13388
13474
  style="font-size: 16px; width: 16px;"
13389
13475
  >
13390
13476
  keyboard_arrow_down_round
@@ -13401,6 +13487,7 @@ exports[`DateRangePicker component
13401
13487
  </h5>
13402
13488
  <i
13403
13489
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
13490
+ role="button"
13404
13491
  style="font-size: 16px; width: 16px;"
13405
13492
  >
13406
13493
  keyboard_arrow_down_round
@@ -13419,6 +13506,7 @@ exports[`DateRangePicker component
13419
13506
  <i
13420
13507
  class="material-icons material-icons-round Icon Icon--default"
13421
13508
  data-test="DesignSystem-Button--Icon"
13509
+ role="button"
13422
13510
  style="font-size: 16px; width: 16px;"
13423
13511
  >
13424
13512
  arrow_forward_round
@@ -14000,6 +14088,7 @@ exports[`DateRangePicker component
14000
14088
  <i
14001
14089
  class="material-icons material-icons-round Icon Icon--default"
14002
14090
  data-test="DesignSystem-Button--Icon"
14091
+ role="button"
14003
14092
  style="font-size: 16px; width: 16px;"
14004
14093
  >
14005
14094
  arrow_back_round
@@ -14020,6 +14109,7 @@ exports[`DateRangePicker component
14020
14109
  </h5>
14021
14110
  <i
14022
14111
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
14112
+ role="button"
14023
14113
  style="font-size: 16px; width: 16px;"
14024
14114
  >
14025
14115
  keyboard_arrow_down_round
@@ -14036,6 +14126,7 @@ exports[`DateRangePicker component
14036
14126
  </h5>
14037
14127
  <i
14038
14128
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
14129
+ role="button"
14039
14130
  style="font-size: 16px; width: 16px;"
14040
14131
  >
14041
14132
  keyboard_arrow_down_round
@@ -14054,6 +14145,7 @@ exports[`DateRangePicker component
14054
14145
  <i
14055
14146
  class="material-icons material-icons-round Icon Icon--default"
14056
14147
  data-test="DesignSystem-Button--Icon"
14148
+ role="button"
14057
14149
  style="font-size: 16px; width: 16px;"
14058
14150
  >
14059
14151
  arrow_forward_round
@@ -14635,6 +14727,7 @@ exports[`DateRangePicker component
14635
14727
  <i
14636
14728
  class="material-icons material-icons-round Icon Icon--default"
14637
14729
  data-test="DesignSystem-Button--Icon"
14730
+ role="button"
14638
14731
  style="font-size: 16px; width: 16px;"
14639
14732
  >
14640
14733
  arrow_back_round
@@ -14655,6 +14748,7 @@ exports[`DateRangePicker component
14655
14748
  </h5>
14656
14749
  <i
14657
14750
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
14751
+ role="button"
14658
14752
  style="font-size: 16px; width: 16px;"
14659
14753
  >
14660
14754
  keyboard_arrow_down_round
@@ -14671,6 +14765,7 @@ exports[`DateRangePicker component
14671
14765
  </h5>
14672
14766
  <i
14673
14767
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
14768
+ role="button"
14674
14769
  style="font-size: 16px; width: 16px;"
14675
14770
  >
14676
14771
  keyboard_arrow_down_round
@@ -14689,6 +14784,7 @@ exports[`DateRangePicker component
14689
14784
  <i
14690
14785
  class="material-icons material-icons-round Icon Icon--default"
14691
14786
  data-test="DesignSystem-Button--Icon"
14787
+ role="button"
14692
14788
  style="font-size: 16px; width: 16px;"
14693
14789
  >
14694
14790
  arrow_forward_round
@@ -15270,6 +15366,7 @@ exports[`DateRangePicker component
15270
15366
  <i
15271
15367
  class="material-icons material-icons-round Icon Icon--default"
15272
15368
  data-test="DesignSystem-Button--Icon"
15369
+ role="button"
15273
15370
  style="font-size: 16px; width: 16px;"
15274
15371
  >
15275
15372
  arrow_back_round
@@ -15290,6 +15387,7 @@ exports[`DateRangePicker component
15290
15387
  </h5>
15291
15388
  <i
15292
15389
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
15390
+ role="button"
15293
15391
  style="font-size: 16px; width: 16px;"
15294
15392
  >
15295
15393
  keyboard_arrow_down_round
@@ -15306,6 +15404,7 @@ exports[`DateRangePicker component
15306
15404
  </h5>
15307
15405
  <i
15308
15406
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
15407
+ role="button"
15309
15408
  style="font-size: 16px; width: 16px;"
15310
15409
  >
15311
15410
  keyboard_arrow_down_round
@@ -15324,6 +15423,7 @@ exports[`DateRangePicker component
15324
15423
  <i
15325
15424
  class="material-icons material-icons-round Icon Icon--default"
15326
15425
  data-test="DesignSystem-Button--Icon"
15426
+ role="button"
15327
15427
  style="font-size: 16px; width: 16px;"
15328
15428
  >
15329
15429
  arrow_forward_round
@@ -15905,6 +16005,7 @@ exports[`DateRangePicker component
15905
16005
  <i
15906
16006
  class="material-icons material-icons-round Icon Icon--default"
15907
16007
  data-test="DesignSystem-Button--Icon"
16008
+ role="button"
15908
16009
  style="font-size: 16px; width: 16px;"
15909
16010
  >
15910
16011
  arrow_back_round
@@ -15925,6 +16026,7 @@ exports[`DateRangePicker component
15925
16026
  </h5>
15926
16027
  <i
15927
16028
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
16029
+ role="button"
15928
16030
  style="font-size: 16px; width: 16px;"
15929
16031
  >
15930
16032
  keyboard_arrow_down_round
@@ -15941,6 +16043,7 @@ exports[`DateRangePicker component
15941
16043
  </h5>
15942
16044
  <i
15943
16045
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
16046
+ role="button"
15944
16047
  style="font-size: 16px; width: 16px;"
15945
16048
  >
15946
16049
  keyboard_arrow_down_round
@@ -15959,6 +16062,7 @@ exports[`DateRangePicker component
15959
16062
  <i
15960
16063
  class="material-icons material-icons-round Icon Icon--default"
15961
16064
  data-test="DesignSystem-Button--Icon"
16065
+ role="button"
15962
16066
  style="font-size: 16px; width: 16px;"
15963
16067
  >
15964
16068
  arrow_forward_round
@@ -16540,6 +16644,7 @@ exports[`DateRangePicker component
16540
16644
  <i
16541
16645
  class="material-icons material-icons-round Icon Icon--default"
16542
16646
  data-test="DesignSystem-Button--Icon"
16647
+ role="button"
16543
16648
  style="font-size: 16px; width: 16px;"
16544
16649
  >
16545
16650
  arrow_back_round
@@ -16560,6 +16665,7 @@ exports[`DateRangePicker component
16560
16665
  </h5>
16561
16666
  <i
16562
16667
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
16668
+ role="button"
16563
16669
  style="font-size: 16px; width: 16px;"
16564
16670
  >
16565
16671
  keyboard_arrow_down_round
@@ -16576,6 +16682,7 @@ exports[`DateRangePicker component
16576
16682
  </h5>
16577
16683
  <i
16578
16684
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
16685
+ role="button"
16579
16686
  style="font-size: 16px; width: 16px;"
16580
16687
  >
16581
16688
  keyboard_arrow_down_round
@@ -16594,6 +16701,7 @@ exports[`DateRangePicker component
16594
16701
  <i
16595
16702
  class="material-icons material-icons-round Icon Icon--default"
16596
16703
  data-test="DesignSystem-Button--Icon"
16704
+ role="button"
16597
16705
  style="font-size: 16px; width: 16px;"
16598
16706
  >
16599
16707
  arrow_forward_round
@@ -17175,6 +17283,7 @@ exports[`DateRangePicker component
17175
17283
  <i
17176
17284
  class="material-icons material-icons-round Icon Icon--default"
17177
17285
  data-test="DesignSystem-Button--Icon"
17286
+ role="button"
17178
17287
  style="font-size: 16px; width: 16px;"
17179
17288
  >
17180
17289
  arrow_back_round
@@ -17195,6 +17304,7 @@ exports[`DateRangePicker component
17195
17304
  </h5>
17196
17305
  <i
17197
17306
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
17307
+ role="button"
17198
17308
  style="font-size: 16px; width: 16px;"
17199
17309
  >
17200
17310
  keyboard_arrow_down_round
@@ -17211,6 +17321,7 @@ exports[`DateRangePicker component
17211
17321
  </h5>
17212
17322
  <i
17213
17323
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
17324
+ role="button"
17214
17325
  style="font-size: 16px; width: 16px;"
17215
17326
  >
17216
17327
  keyboard_arrow_down_round
@@ -17229,6 +17340,7 @@ exports[`DateRangePicker component
17229
17340
  <i
17230
17341
  class="material-icons material-icons-round Icon Icon--default"
17231
17342
  data-test="DesignSystem-Button--Icon"
17343
+ role="button"
17232
17344
  style="font-size: 16px; width: 16px;"
17233
17345
  >
17234
17346
  arrow_forward_round
@@ -17810,6 +17922,7 @@ exports[`DateRangePicker component
17810
17922
  <i
17811
17923
  class="material-icons material-icons-round Icon Icon--default"
17812
17924
  data-test="DesignSystem-Button--Icon"
17925
+ role="button"
17813
17926
  style="font-size: 16px; width: 16px;"
17814
17927
  >
17815
17928
  arrow_back_round
@@ -17830,6 +17943,7 @@ exports[`DateRangePicker component
17830
17943
  </h5>
17831
17944
  <i
17832
17945
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
17946
+ role="button"
17833
17947
  style="font-size: 16px; width: 16px;"
17834
17948
  >
17835
17949
  keyboard_arrow_down_round
@@ -17846,6 +17960,7 @@ exports[`DateRangePicker component
17846
17960
  </h5>
17847
17961
  <i
17848
17962
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
17963
+ role="button"
17849
17964
  style="font-size: 16px; width: 16px;"
17850
17965
  >
17851
17966
  keyboard_arrow_down_round
@@ -17864,6 +17979,7 @@ exports[`DateRangePicker component
17864
17979
  <i
17865
17980
  class="material-icons material-icons-round Icon Icon--default"
17866
17981
  data-test="DesignSystem-Button--Icon"
17982
+ role="button"
17867
17983
  style="font-size: 16px; width: 16px;"
17868
17984
  >
17869
17985
  arrow_forward_round
@@ -18445,6 +18561,7 @@ exports[`DateRangePicker component
18445
18561
  <i
18446
18562
  class="material-icons material-icons-round Icon Icon--default"
18447
18563
  data-test="DesignSystem-Button--Icon"
18564
+ role="button"
18448
18565
  style="font-size: 16px; width: 16px;"
18449
18566
  >
18450
18567
  arrow_back_round
@@ -18465,6 +18582,7 @@ exports[`DateRangePicker component
18465
18582
  </h5>
18466
18583
  <i
18467
18584
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
18585
+ role="button"
18468
18586
  style="font-size: 16px; width: 16px;"
18469
18587
  >
18470
18588
  keyboard_arrow_down_round
@@ -18481,6 +18599,7 @@ exports[`DateRangePicker component
18481
18599
  </h5>
18482
18600
  <i
18483
18601
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
18602
+ role="button"
18484
18603
  style="font-size: 16px; width: 16px;"
18485
18604
  >
18486
18605
  keyboard_arrow_down_round
@@ -18499,6 +18618,7 @@ exports[`DateRangePicker component
18499
18618
  <i
18500
18619
  class="material-icons material-icons-round Icon Icon--default"
18501
18620
  data-test="DesignSystem-Button--Icon"
18621
+ role="button"
18502
18622
  style="font-size: 16px; width: 16px;"
18503
18623
  >
18504
18624
  arrow_forward_round
@@ -19080,6 +19200,7 @@ exports[`DateRangePicker component
19080
19200
  <i
19081
19201
  class="material-icons material-icons-round Icon Icon--default"
19082
19202
  data-test="DesignSystem-Button--Icon"
19203
+ role="button"
19083
19204
  style="font-size: 16px; width: 16px;"
19084
19205
  >
19085
19206
  arrow_back_round
@@ -19100,6 +19221,7 @@ exports[`DateRangePicker component
19100
19221
  </h5>
19101
19222
  <i
19102
19223
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
19224
+ role="button"
19103
19225
  style="font-size: 16px; width: 16px;"
19104
19226
  >
19105
19227
  keyboard_arrow_down_round
@@ -19116,6 +19238,7 @@ exports[`DateRangePicker component
19116
19238
  </h5>
19117
19239
  <i
19118
19240
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
19241
+ role="button"
19119
19242
  style="font-size: 16px; width: 16px;"
19120
19243
  >
19121
19244
  keyboard_arrow_down_round
@@ -19134,6 +19257,7 @@ exports[`DateRangePicker component
19134
19257
  <i
19135
19258
  class="material-icons material-icons-round Icon Icon--default"
19136
19259
  data-test="DesignSystem-Button--Icon"
19260
+ role="button"
19137
19261
  style="font-size: 16px; width: 16px;"
19138
19262
  >
19139
19263
  arrow_forward_round
@@ -19715,6 +19839,7 @@ exports[`DateRangePicker component
19715
19839
  <i
19716
19840
  class="material-icons material-icons-round Icon Icon--default"
19717
19841
  data-test="DesignSystem-Button--Icon"
19842
+ role="button"
19718
19843
  style="font-size: 16px; width: 16px;"
19719
19844
  >
19720
19845
  arrow_back_round
@@ -19735,6 +19860,7 @@ exports[`DateRangePicker component
19735
19860
  </h5>
19736
19861
  <i
19737
19862
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
19863
+ role="button"
19738
19864
  style="font-size: 16px; width: 16px;"
19739
19865
  >
19740
19866
  keyboard_arrow_down_round
@@ -19751,6 +19877,7 @@ exports[`DateRangePicker component
19751
19877
  </h5>
19752
19878
  <i
19753
19879
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
19880
+ role="button"
19754
19881
  style="font-size: 16px; width: 16px;"
19755
19882
  >
19756
19883
  keyboard_arrow_down_round
@@ -19769,6 +19896,7 @@ exports[`DateRangePicker component
19769
19896
  <i
19770
19897
  class="material-icons material-icons-round Icon Icon--default"
19771
19898
  data-test="DesignSystem-Button--Icon"
19899
+ role="button"
19772
19900
  style="font-size: 16px; width: 16px;"
19773
19901
  >
19774
19902
  arrow_forward_round
@@ -20350,6 +20478,7 @@ exports[`DateRangePicker component
20350
20478
  <i
20351
20479
  class="material-icons material-icons-round Icon Icon--default"
20352
20480
  data-test="DesignSystem-Button--Icon"
20481
+ role="button"
20353
20482
  style="font-size: 16px; width: 16px;"
20354
20483
  >
20355
20484
  arrow_back_round
@@ -20370,6 +20499,7 @@ exports[`DateRangePicker component
20370
20499
  </h5>
20371
20500
  <i
20372
20501
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
20502
+ role="button"
20373
20503
  style="font-size: 16px; width: 16px;"
20374
20504
  >
20375
20505
  keyboard_arrow_down_round
@@ -20386,6 +20516,7 @@ exports[`DateRangePicker component
20386
20516
  </h5>
20387
20517
  <i
20388
20518
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
20519
+ role="button"
20389
20520
  style="font-size: 16px; width: 16px;"
20390
20521
  >
20391
20522
  keyboard_arrow_down_round
@@ -20404,6 +20535,7 @@ exports[`DateRangePicker component
20404
20535
  <i
20405
20536
  class="material-icons material-icons-round Icon Icon--default"
20406
20537
  data-test="DesignSystem-Button--Icon"
20538
+ role="button"
20407
20539
  style="font-size: 16px; width: 16px;"
20408
20540
  >
20409
20541
  arrow_forward_round
@@ -20985,6 +21117,7 @@ exports[`DateRangePicker component
20985
21117
  <i
20986
21118
  class="material-icons material-icons-round Icon Icon--default"
20987
21119
  data-test="DesignSystem-Button--Icon"
21120
+ role="button"
20988
21121
  style="font-size: 16px; width: 16px;"
20989
21122
  >
20990
21123
  arrow_back_round
@@ -21005,6 +21138,7 @@ exports[`DateRangePicker component
21005
21138
  </h5>
21006
21139
  <i
21007
21140
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
21141
+ role="button"
21008
21142
  style="font-size: 16px; width: 16px;"
21009
21143
  >
21010
21144
  keyboard_arrow_down_round
@@ -21021,6 +21155,7 @@ exports[`DateRangePicker component
21021
21155
  </h5>
21022
21156
  <i
21023
21157
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
21158
+ role="button"
21024
21159
  style="font-size: 16px; width: 16px;"
21025
21160
  >
21026
21161
  keyboard_arrow_down_round
@@ -21039,6 +21174,7 @@ exports[`DateRangePicker component
21039
21174
  <i
21040
21175
  class="material-icons material-icons-round Icon Icon--default"
21041
21176
  data-test="DesignSystem-Button--Icon"
21177
+ role="button"
21042
21178
  style="font-size: 16px; width: 16px;"
21043
21179
  >
21044
21180
  arrow_forward_round
@@ -21620,6 +21756,7 @@ exports[`DateRangePicker component
21620
21756
  <i
21621
21757
  class="material-icons material-icons-round Icon Icon--default"
21622
21758
  data-test="DesignSystem-Button--Icon"
21759
+ role="button"
21623
21760
  style="font-size: 16px; width: 16px;"
21624
21761
  >
21625
21762
  arrow_back_round
@@ -21640,6 +21777,7 @@ exports[`DateRangePicker component
21640
21777
  </h5>
21641
21778
  <i
21642
21779
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
21780
+ role="button"
21643
21781
  style="font-size: 16px; width: 16px;"
21644
21782
  >
21645
21783
  keyboard_arrow_down_round
@@ -21656,6 +21794,7 @@ exports[`DateRangePicker component
21656
21794
  </h5>
21657
21795
  <i
21658
21796
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
21797
+ role="button"
21659
21798
  style="font-size: 16px; width: 16px;"
21660
21799
  >
21661
21800
  keyboard_arrow_down_round
@@ -21674,6 +21813,7 @@ exports[`DateRangePicker component
21674
21813
  <i
21675
21814
  class="material-icons material-icons-round Icon Icon--default"
21676
21815
  data-test="DesignSystem-Button--Icon"
21816
+ role="button"
21677
21817
  style="font-size: 16px; width: 16px;"
21678
21818
  >
21679
21819
  arrow_forward_round
@@ -22255,6 +22395,7 @@ exports[`DateRangePicker component
22255
22395
  <i
22256
22396
  class="material-icons material-icons-round Icon Icon--default"
22257
22397
  data-test="DesignSystem-Button--Icon"
22398
+ role="button"
22258
22399
  style="font-size: 16px; width: 16px;"
22259
22400
  >
22260
22401
  arrow_back_round
@@ -22275,6 +22416,7 @@ exports[`DateRangePicker component
22275
22416
  </h5>
22276
22417
  <i
22277
22418
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
22419
+ role="button"
22278
22420
  style="font-size: 16px; width: 16px;"
22279
22421
  >
22280
22422
  keyboard_arrow_down_round
@@ -22291,6 +22433,7 @@ exports[`DateRangePicker component
22291
22433
  </h5>
22292
22434
  <i
22293
22435
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
22436
+ role="button"
22294
22437
  style="font-size: 16px; width: 16px;"
22295
22438
  >
22296
22439
  keyboard_arrow_down_round
@@ -22309,6 +22452,7 @@ exports[`DateRangePicker component
22309
22452
  <i
22310
22453
  class="material-icons material-icons-round Icon Icon--default"
22311
22454
  data-test="DesignSystem-Button--Icon"
22455
+ role="button"
22312
22456
  style="font-size: 16px; width: 16px;"
22313
22457
  >
22314
22458
  arrow_forward_round
@@ -22890,6 +23034,7 @@ exports[`DateRangePicker component
22890
23034
  <i
22891
23035
  class="material-icons material-icons-round Icon Icon--default"
22892
23036
  data-test="DesignSystem-Button--Icon"
23037
+ role="button"
22893
23038
  style="font-size: 16px; width: 16px;"
22894
23039
  >
22895
23040
  arrow_back_round
@@ -22910,6 +23055,7 @@ exports[`DateRangePicker component
22910
23055
  </h5>
22911
23056
  <i
22912
23057
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
23058
+ role="button"
22913
23059
  style="font-size: 16px; width: 16px;"
22914
23060
  >
22915
23061
  keyboard_arrow_down_round
@@ -22926,6 +23072,7 @@ exports[`DateRangePicker component
22926
23072
  </h5>
22927
23073
  <i
22928
23074
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
23075
+ role="button"
22929
23076
  style="font-size: 16px; width: 16px;"
22930
23077
  >
22931
23078
  keyboard_arrow_down_round
@@ -22944,6 +23091,7 @@ exports[`DateRangePicker component
22944
23091
  <i
22945
23092
  class="material-icons material-icons-round Icon Icon--default"
22946
23093
  data-test="DesignSystem-Button--Icon"
23094
+ role="button"
22947
23095
  style="font-size: 16px; width: 16px;"
22948
23096
  >
22949
23097
  arrow_forward_round
@@ -23525,6 +23673,7 @@ exports[`DateRangePicker component
23525
23673
  <i
23526
23674
  class="material-icons material-icons-round Icon Icon--default"
23527
23675
  data-test="DesignSystem-Button--Icon"
23676
+ role="button"
23528
23677
  style="font-size: 16px; width: 16px;"
23529
23678
  >
23530
23679
  arrow_back_round
@@ -23545,6 +23694,7 @@ exports[`DateRangePicker component
23545
23694
  </h5>
23546
23695
  <i
23547
23696
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
23697
+ role="button"
23548
23698
  style="font-size: 16px; width: 16px;"
23549
23699
  >
23550
23700
  keyboard_arrow_down_round
@@ -23561,6 +23711,7 @@ exports[`DateRangePicker component
23561
23711
  </h5>
23562
23712
  <i
23563
23713
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
23714
+ role="button"
23564
23715
  style="font-size: 16px; width: 16px;"
23565
23716
  >
23566
23717
  keyboard_arrow_down_round
@@ -23579,6 +23730,7 @@ exports[`DateRangePicker component
23579
23730
  <i
23580
23731
  class="material-icons material-icons-round Icon Icon--default"
23581
23732
  data-test="DesignSystem-Button--Icon"
23733
+ role="button"
23582
23734
  style="font-size: 16px; width: 16px;"
23583
23735
  >
23584
23736
  arrow_forward_round
@@ -24160,6 +24312,7 @@ exports[`DateRangePicker component
24160
24312
  <i
24161
24313
  class="material-icons material-icons-round Icon Icon--default"
24162
24314
  data-test="DesignSystem-Button--Icon"
24315
+ role="button"
24163
24316
  style="font-size: 16px; width: 16px;"
24164
24317
  >
24165
24318
  arrow_back_round
@@ -24180,6 +24333,7 @@ exports[`DateRangePicker component
24180
24333
  </h5>
24181
24334
  <i
24182
24335
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
24336
+ role="button"
24183
24337
  style="font-size: 16px; width: 16px;"
24184
24338
  >
24185
24339
  keyboard_arrow_down_round
@@ -24196,6 +24350,7 @@ exports[`DateRangePicker component
24196
24350
  </h5>
24197
24351
  <i
24198
24352
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
24353
+ role="button"
24199
24354
  style="font-size: 16px; width: 16px;"
24200
24355
  >
24201
24356
  keyboard_arrow_down_round
@@ -24214,6 +24369,7 @@ exports[`DateRangePicker component
24214
24369
  <i
24215
24370
  class="material-icons material-icons-round Icon Icon--default"
24216
24371
  data-test="DesignSystem-Button--Icon"
24372
+ role="button"
24217
24373
  style="font-size: 16px; width: 16px;"
24218
24374
  >
24219
24375
  arrow_forward_round
@@ -24795,6 +24951,7 @@ exports[`DateRangePicker component
24795
24951
  <i
24796
24952
  class="material-icons material-icons-round Icon Icon--default"
24797
24953
  data-test="DesignSystem-Button--Icon"
24954
+ role="button"
24798
24955
  style="font-size: 16px; width: 16px;"
24799
24956
  >
24800
24957
  arrow_back_round
@@ -24815,6 +24972,7 @@ exports[`DateRangePicker component
24815
24972
  </h5>
24816
24973
  <i
24817
24974
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
24975
+ role="button"
24818
24976
  style="font-size: 16px; width: 16px;"
24819
24977
  >
24820
24978
  keyboard_arrow_down_round
@@ -24831,6 +24989,7 @@ exports[`DateRangePicker component
24831
24989
  </h5>
24832
24990
  <i
24833
24991
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
24992
+ role="button"
24834
24993
  style="font-size: 16px; width: 16px;"
24835
24994
  >
24836
24995
  keyboard_arrow_down_round
@@ -24849,6 +25008,7 @@ exports[`DateRangePicker component
24849
25008
  <i
24850
25009
  class="material-icons material-icons-round Icon Icon--default"
24851
25010
  data-test="DesignSystem-Button--Icon"
25011
+ role="button"
24852
25012
  style="font-size: 16px; width: 16px;"
24853
25013
  >
24854
25014
  arrow_forward_round
@@ -25430,6 +25590,7 @@ exports[`DateRangePicker component
25430
25590
  <i
25431
25591
  class="material-icons material-icons-round Icon Icon--default"
25432
25592
  data-test="DesignSystem-Button--Icon"
25593
+ role="button"
25433
25594
  style="font-size: 16px; width: 16px;"
25434
25595
  >
25435
25596
  arrow_back_round
@@ -25450,6 +25611,7 @@ exports[`DateRangePicker component
25450
25611
  </h5>
25451
25612
  <i
25452
25613
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
25614
+ role="button"
25453
25615
  style="font-size: 16px; width: 16px;"
25454
25616
  >
25455
25617
  keyboard_arrow_down_round
@@ -25466,6 +25628,7 @@ exports[`DateRangePicker component
25466
25628
  </h5>
25467
25629
  <i
25468
25630
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
25631
+ role="button"
25469
25632
  style="font-size: 16px; width: 16px;"
25470
25633
  >
25471
25634
  keyboard_arrow_down_round
@@ -25484,6 +25647,7 @@ exports[`DateRangePicker component
25484
25647
  <i
25485
25648
  class="material-icons material-icons-round Icon Icon--default"
25486
25649
  data-test="DesignSystem-Button--Icon"
25650
+ role="button"
25487
25651
  style="font-size: 16px; width: 16px;"
25488
25652
  >
25489
25653
  arrow_forward_round
@@ -26065,6 +26229,7 @@ exports[`DateRangePicker component
26065
26229
  <i
26066
26230
  class="material-icons material-icons-round Icon Icon--default"
26067
26231
  data-test="DesignSystem-Button--Icon"
26232
+ role="button"
26068
26233
  style="font-size: 16px; width: 16px;"
26069
26234
  >
26070
26235
  arrow_back_round
@@ -26085,6 +26250,7 @@ exports[`DateRangePicker component
26085
26250
  </h5>
26086
26251
  <i
26087
26252
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
26253
+ role="button"
26088
26254
  style="font-size: 16px; width: 16px;"
26089
26255
  >
26090
26256
  keyboard_arrow_down_round
@@ -26101,6 +26267,7 @@ exports[`DateRangePicker component
26101
26267
  </h5>
26102
26268
  <i
26103
26269
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
26270
+ role="button"
26104
26271
  style="font-size: 16px; width: 16px;"
26105
26272
  >
26106
26273
  keyboard_arrow_down_round
@@ -26119,6 +26286,7 @@ exports[`DateRangePicker component
26119
26286
  <i
26120
26287
  class="material-icons material-icons-round Icon Icon--default"
26121
26288
  data-test="DesignSystem-Button--Icon"
26289
+ role="button"
26122
26290
  style="font-size: 16px; width: 16px;"
26123
26291
  >
26124
26292
  arrow_forward_round
@@ -26700,6 +26868,7 @@ exports[`DateRangePicker component
26700
26868
  <i
26701
26869
  class="material-icons material-icons-round Icon Icon--default"
26702
26870
  data-test="DesignSystem-Button--Icon"
26871
+ role="button"
26703
26872
  style="font-size: 16px; width: 16px;"
26704
26873
  >
26705
26874
  arrow_back_round
@@ -26720,6 +26889,7 @@ exports[`DateRangePicker component
26720
26889
  </h5>
26721
26890
  <i
26722
26891
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
26892
+ role="button"
26723
26893
  style="font-size: 16px; width: 16px;"
26724
26894
  >
26725
26895
  keyboard_arrow_down_round
@@ -26736,6 +26906,7 @@ exports[`DateRangePicker component
26736
26906
  </h5>
26737
26907
  <i
26738
26908
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
26909
+ role="button"
26739
26910
  style="font-size: 16px; width: 16px;"
26740
26911
  >
26741
26912
  keyboard_arrow_down_round
@@ -26754,6 +26925,7 @@ exports[`DateRangePicker component
26754
26925
  <i
26755
26926
  class="material-icons material-icons-round Icon Icon--default"
26756
26927
  data-test="DesignSystem-Button--Icon"
26928
+ role="button"
26757
26929
  style="font-size: 16px; width: 16px;"
26758
26930
  >
26759
26931
  arrow_forward_round
@@ -27335,6 +27507,7 @@ exports[`DateRangePicker component
27335
27507
  <i
27336
27508
  class="material-icons material-icons-round Icon Icon--default"
27337
27509
  data-test="DesignSystem-Button--Icon"
27510
+ role="button"
27338
27511
  style="font-size: 16px; width: 16px;"
27339
27512
  >
27340
27513
  arrow_back_round
@@ -27355,6 +27528,7 @@ exports[`DateRangePicker component
27355
27528
  </h5>
27356
27529
  <i
27357
27530
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
27531
+ role="button"
27358
27532
  style="font-size: 16px; width: 16px;"
27359
27533
  >
27360
27534
  keyboard_arrow_down_round
@@ -27371,6 +27545,7 @@ exports[`DateRangePicker component
27371
27545
  </h5>
27372
27546
  <i
27373
27547
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
27548
+ role="button"
27374
27549
  style="font-size: 16px; width: 16px;"
27375
27550
  >
27376
27551
  keyboard_arrow_down_round
@@ -27389,6 +27564,7 @@ exports[`DateRangePicker component
27389
27564
  <i
27390
27565
  class="material-icons material-icons-round Icon Icon--default"
27391
27566
  data-test="DesignSystem-Button--Icon"
27567
+ role="button"
27392
27568
  style="font-size: 16px; width: 16px;"
27393
27569
  >
27394
27570
  arrow_forward_round
@@ -27970,6 +28146,7 @@ exports[`DateRangePicker component
27970
28146
  <i
27971
28147
  class="material-icons material-icons-round Icon Icon--default"
27972
28148
  data-test="DesignSystem-Button--Icon"
28149
+ role="button"
27973
28150
  style="font-size: 16px; width: 16px;"
27974
28151
  >
27975
28152
  arrow_back_round
@@ -27990,6 +28167,7 @@ exports[`DateRangePicker component
27990
28167
  </h5>
27991
28168
  <i
27992
28169
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
28170
+ role="button"
27993
28171
  style="font-size: 16px; width: 16px;"
27994
28172
  >
27995
28173
  keyboard_arrow_down_round
@@ -28006,6 +28184,7 @@ exports[`DateRangePicker component
28006
28184
  </h5>
28007
28185
  <i
28008
28186
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
28187
+ role="button"
28009
28188
  style="font-size: 16px; width: 16px;"
28010
28189
  >
28011
28190
  keyboard_arrow_down_round
@@ -28024,6 +28203,7 @@ exports[`DateRangePicker component
28024
28203
  <i
28025
28204
  class="material-icons material-icons-round Icon Icon--default"
28026
28205
  data-test="DesignSystem-Button--Icon"
28206
+ role="button"
28027
28207
  style="font-size: 16px; width: 16px;"
28028
28208
  >
28029
28209
  arrow_forward_round
@@ -28605,6 +28785,7 @@ exports[`DateRangePicker component
28605
28785
  <i
28606
28786
  class="material-icons material-icons-round Icon Icon--default"
28607
28787
  data-test="DesignSystem-Button--Icon"
28788
+ role="button"
28608
28789
  style="font-size: 16px; width: 16px;"
28609
28790
  >
28610
28791
  arrow_back_round
@@ -28625,6 +28806,7 @@ exports[`DateRangePicker component
28625
28806
  </h5>
28626
28807
  <i
28627
28808
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
28809
+ role="button"
28628
28810
  style="font-size: 16px; width: 16px;"
28629
28811
  >
28630
28812
  keyboard_arrow_down_round
@@ -28641,6 +28823,7 @@ exports[`DateRangePicker component
28641
28823
  </h5>
28642
28824
  <i
28643
28825
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
28826
+ role="button"
28644
28827
  style="font-size: 16px; width: 16px;"
28645
28828
  >
28646
28829
  keyboard_arrow_down_round
@@ -28659,6 +28842,7 @@ exports[`DateRangePicker component
28659
28842
  <i
28660
28843
  class="material-icons material-icons-round Icon Icon--default"
28661
28844
  data-test="DesignSystem-Button--Icon"
28845
+ role="button"
28662
28846
  style="font-size: 16px; width: 16px;"
28663
28847
  >
28664
28848
  arrow_forward_round
@@ -29240,6 +29424,7 @@ exports[`DateRangePicker component
29240
29424
  <i
29241
29425
  class="material-icons material-icons-round Icon Icon--default"
29242
29426
  data-test="DesignSystem-Button--Icon"
29427
+ role="button"
29243
29428
  style="font-size: 16px; width: 16px;"
29244
29429
  >
29245
29430
  arrow_back_round
@@ -29260,6 +29445,7 @@ exports[`DateRangePicker component
29260
29445
  </h5>
29261
29446
  <i
29262
29447
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
29448
+ role="button"
29263
29449
  style="font-size: 16px; width: 16px;"
29264
29450
  >
29265
29451
  keyboard_arrow_down_round
@@ -29276,6 +29462,7 @@ exports[`DateRangePicker component
29276
29462
  </h5>
29277
29463
  <i
29278
29464
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
29465
+ role="button"
29279
29466
  style="font-size: 16px; width: 16px;"
29280
29467
  >
29281
29468
  keyboard_arrow_down_round
@@ -29722,6 +29909,7 @@ exports[`DateRangePicker component
29722
29909
  </h5>
29723
29910
  <i
29724
29911
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
29912
+ role="button"
29725
29913
  style="font-size: 16px; width: 16px;"
29726
29914
  >
29727
29915
  keyboard_arrow_down_round
@@ -29738,6 +29926,7 @@ exports[`DateRangePicker component
29738
29926
  </h5>
29739
29927
  <i
29740
29928
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
29929
+ role="button"
29741
29930
  style="font-size: 16px; width: 16px;"
29742
29931
  >
29743
29932
  keyboard_arrow_down_round
@@ -29756,6 +29945,7 @@ exports[`DateRangePicker component
29756
29945
  <i
29757
29946
  class="material-icons material-icons-round Icon Icon--default"
29758
29947
  data-test="DesignSystem-Button--Icon"
29948
+ role="button"
29759
29949
  style="font-size: 16px; width: 16px;"
29760
29950
  >
29761
29951
  arrow_forward_round
@@ -30249,6 +30439,7 @@ exports[`DateRangePicker component
30249
30439
  <i
30250
30440
  class="material-icons material-icons-round Icon Icon--default"
30251
30441
  data-test="DesignSystem-Button--Icon"
30442
+ role="button"
30252
30443
  style="font-size: 16px; width: 16px;"
30253
30444
  >
30254
30445
  arrow_back_round
@@ -30269,6 +30460,7 @@ exports[`DateRangePicker component
30269
30460
  </h5>
30270
30461
  <i
30271
30462
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
30463
+ role="button"
30272
30464
  style="font-size: 16px; width: 16px;"
30273
30465
  >
30274
30466
  keyboard_arrow_down_round
@@ -30285,6 +30477,7 @@ exports[`DateRangePicker component
30285
30477
  </h5>
30286
30478
  <i
30287
30479
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
30480
+ role="button"
30288
30481
  style="font-size: 16px; width: 16px;"
30289
30482
  >
30290
30483
  keyboard_arrow_down_round
@@ -30731,6 +30924,7 @@ exports[`DateRangePicker component
30731
30924
  </h5>
30732
30925
  <i
30733
30926
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
30927
+ role="button"
30734
30928
  style="font-size: 16px; width: 16px;"
30735
30929
  >
30736
30930
  keyboard_arrow_down_round
@@ -30747,6 +30941,7 @@ exports[`DateRangePicker component
30747
30941
  </h5>
30748
30942
  <i
30749
30943
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
30944
+ role="button"
30750
30945
  style="font-size: 16px; width: 16px;"
30751
30946
  >
30752
30947
  keyboard_arrow_down_round
@@ -31207,6 +31402,7 @@ exports[`DateRangePicker component
31207
31402
  </h5>
31208
31403
  <i
31209
31404
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
31405
+ role="button"
31210
31406
  style="font-size: 16px; width: 16px;"
31211
31407
  >
31212
31408
  keyboard_arrow_down_round
@@ -31223,6 +31419,7 @@ exports[`DateRangePicker component
31223
31419
  </h5>
31224
31420
  <i
31225
31421
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
31422
+ role="button"
31226
31423
  style="font-size: 16px; width: 16px;"
31227
31424
  >
31228
31425
  keyboard_arrow_down_round
@@ -31241,6 +31438,7 @@ exports[`DateRangePicker component
31241
31438
  <i
31242
31439
  class="material-icons material-icons-round Icon Icon--default"
31243
31440
  data-test="DesignSystem-Button--Icon"
31441
+ role="button"
31244
31442
  style="font-size: 16px; width: 16px;"
31245
31443
  >
31246
31444
  arrow_forward_round
@@ -31713,6 +31911,7 @@ exports[`DateRangePicker component
31713
31911
  <i
31714
31912
  class="material-icons material-icons-round Icon Icon--default"
31715
31913
  data-test="DesignSystem-Button--Icon"
31914
+ role="button"
31716
31915
  style="font-size: 16px; width: 16px;"
31717
31916
  >
31718
31917
  arrow_back_round
@@ -31733,6 +31932,7 @@ exports[`DateRangePicker component
31733
31932
  </h5>
31734
31933
  <i
31735
31934
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
31935
+ role="button"
31736
31936
  style="font-size: 16px; width: 16px;"
31737
31937
  >
31738
31938
  keyboard_arrow_down_round
@@ -31749,6 +31949,7 @@ exports[`DateRangePicker component
31749
31949
  </h5>
31750
31950
  <i
31751
31951
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
31952
+ role="button"
31752
31953
  style="font-size: 16px; width: 16px;"
31753
31954
  >
31754
31955
  keyboard_arrow_down_round
@@ -31767,6 +31968,7 @@ exports[`DateRangePicker component
31767
31968
  <i
31768
31969
  class="material-icons material-icons-round Icon Icon--default"
31769
31970
  data-test="DesignSystem-Button--Icon"
31971
+ role="button"
31770
31972
  style="font-size: 16px; width: 16px;"
31771
31973
  >
31772
31974
  arrow_forward_round
@@ -32348,6 +32550,7 @@ exports[`DateRangePicker component
32348
32550
  <i
32349
32551
  class="material-icons material-icons-round Icon Icon--default"
32350
32552
  data-test="DesignSystem-Button--Icon"
32553
+ role="button"
32351
32554
  style="font-size: 16px; width: 16px;"
32352
32555
  >
32353
32556
  arrow_back_round
@@ -32368,6 +32571,7 @@ exports[`DateRangePicker component
32368
32571
  </h5>
32369
32572
  <i
32370
32573
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
32574
+ role="button"
32371
32575
  style="font-size: 16px; width: 16px;"
32372
32576
  >
32373
32577
  keyboard_arrow_down_round
@@ -32384,6 +32588,7 @@ exports[`DateRangePicker component
32384
32588
  </h5>
32385
32589
  <i
32386
32590
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
32591
+ role="button"
32387
32592
  style="font-size: 16px; width: 16px;"
32388
32593
  >
32389
32594
  keyboard_arrow_down_round
@@ -32851,6 +33056,7 @@ exports[`DateRangePicker component
32851
33056
  </h5>
32852
33057
  <i
32853
33058
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
33059
+ role="button"
32854
33060
  style="font-size: 16px; width: 16px;"
32855
33061
  >
32856
33062
  keyboard_arrow_down_round
@@ -32867,6 +33073,7 @@ exports[`DateRangePicker component
32867
33073
  </h5>
32868
33074
  <i
32869
33075
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
33076
+ role="button"
32870
33077
  style="font-size: 16px; width: 16px;"
32871
33078
  >
32872
33079
  keyboard_arrow_down_round
@@ -32885,6 +33092,7 @@ exports[`DateRangePicker component
32885
33092
  <i
32886
33093
  class="material-icons material-icons-round Icon Icon--default"
32887
33094
  data-test="DesignSystem-Button--Icon"
33095
+ role="button"
32888
33096
  style="font-size: 16px; width: 16px;"
32889
33097
  >
32890
33098
  arrow_forward_round
@@ -33357,6 +33565,7 @@ exports[`DateRangePicker component
33357
33565
  <i
33358
33566
  class="material-icons material-icons-round Icon Icon--default"
33359
33567
  data-test="DesignSystem-Button--Icon"
33568
+ role="button"
33360
33569
  style="font-size: 16px; width: 16px;"
33361
33570
  >
33362
33571
  arrow_back_round
@@ -33377,6 +33586,7 @@ exports[`DateRangePicker component
33377
33586
  </h5>
33378
33587
  <i
33379
33588
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
33589
+ role="button"
33380
33590
  style="font-size: 16px; width: 16px;"
33381
33591
  >
33382
33592
  keyboard_arrow_down_round
@@ -33393,6 +33603,7 @@ exports[`DateRangePicker component
33393
33603
  </h5>
33394
33604
  <i
33395
33605
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
33606
+ role="button"
33396
33607
  style="font-size: 16px; width: 16px;"
33397
33608
  >
33398
33609
  keyboard_arrow_down_round
@@ -33860,6 +34071,7 @@ exports[`DateRangePicker component
33860
34071
  </h5>
33861
34072
  <i
33862
34073
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
34074
+ role="button"
33863
34075
  style="font-size: 16px; width: 16px;"
33864
34076
  >
33865
34077
  keyboard_arrow_down_round
@@ -33876,6 +34088,7 @@ exports[`DateRangePicker component
33876
34088
  </h5>
33877
34089
  <i
33878
34090
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
34091
+ role="button"
33879
34092
  style="font-size: 16px; width: 16px;"
33880
34093
  >
33881
34094
  keyboard_arrow_down_round
@@ -34329,6 +34542,7 @@ exports[`DateRangePicker component
34329
34542
  </h5>
34330
34543
  <i
34331
34544
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
34545
+ role="button"
34332
34546
  style="font-size: 16px; width: 16px;"
34333
34547
  >
34334
34548
  keyboard_arrow_down_round
@@ -34345,6 +34559,7 @@ exports[`DateRangePicker component
34345
34559
  </h5>
34346
34560
  <i
34347
34561
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
34562
+ role="button"
34348
34563
  style="font-size: 16px; width: 16px;"
34349
34564
  >
34350
34565
  keyboard_arrow_down_round
@@ -34363,6 +34578,7 @@ exports[`DateRangePicker component
34363
34578
  <i
34364
34579
  class="material-icons material-icons-round Icon Icon--default"
34365
34580
  data-test="DesignSystem-Button--Icon"
34581
+ role="button"
34366
34582
  style="font-size: 16px; width: 16px;"
34367
34583
  >
34368
34584
  arrow_forward_round
@@ -34902,6 +35118,7 @@ exports[`DateRangePicker component
34902
35118
  <i
34903
35119
  class="material-icons material-icons-round Icon Icon--default"
34904
35120
  data-test="DesignSystem-Button--Icon"
35121
+ role="button"
34905
35122
  style="font-size: 16px; width: 16px;"
34906
35123
  >
34907
35124
  arrow_back_round
@@ -34922,6 +35139,7 @@ exports[`DateRangePicker component
34922
35139
  </h5>
34923
35140
  <i
34924
35141
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
35142
+ role="button"
34925
35143
  style="font-size: 16px; width: 16px;"
34926
35144
  >
34927
35145
  keyboard_arrow_down_round
@@ -34938,6 +35156,7 @@ exports[`DateRangePicker component
34938
35156
  </h5>
34939
35157
  <i
34940
35158
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
35159
+ role="button"
34941
35160
  style="font-size: 16px; width: 16px;"
34942
35161
  >
34943
35162
  keyboard_arrow_down_round
@@ -34956,6 +35175,7 @@ exports[`DateRangePicker component
34956
35175
  <i
34957
35176
  class="material-icons material-icons-round Icon Icon--default"
34958
35177
  data-test="DesignSystem-Button--Icon"
35178
+ role="button"
34959
35179
  style="font-size: 16px; width: 16px;"
34960
35180
  >
34961
35181
  arrow_forward_round
@@ -35537,6 +35757,7 @@ exports[`DateRangePicker component
35537
35757
  <i
35538
35758
  class="material-icons material-icons-round Icon Icon--default"
35539
35759
  data-test="DesignSystem-Button--Icon"
35760
+ role="button"
35540
35761
  style="font-size: 16px; width: 16px;"
35541
35762
  >
35542
35763
  arrow_back_round
@@ -35557,6 +35778,7 @@ exports[`DateRangePicker component
35557
35778
  </h5>
35558
35779
  <i
35559
35780
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
35781
+ role="button"
35560
35782
  style="font-size: 16px; width: 16px;"
35561
35783
  >
35562
35784
  keyboard_arrow_down_round
@@ -35573,6 +35795,7 @@ exports[`DateRangePicker component
35573
35795
  </h5>
35574
35796
  <i
35575
35797
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
35798
+ role="button"
35576
35799
  style="font-size: 16px; width: 16px;"
35577
35800
  >
35578
35801
  keyboard_arrow_down_round
@@ -36054,6 +36277,7 @@ exports[`DateRangePicker component
36054
36277
  </h5>
36055
36278
  <i
36056
36279
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
36280
+ role="button"
36057
36281
  style="font-size: 16px; width: 16px;"
36058
36282
  >
36059
36283
  keyboard_arrow_down_round
@@ -36070,6 +36294,7 @@ exports[`DateRangePicker component
36070
36294
  </h5>
36071
36295
  <i
36072
36296
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
36297
+ role="button"
36073
36298
  style="font-size: 16px; width: 16px;"
36074
36299
  >
36075
36300
  keyboard_arrow_down_round
@@ -36088,6 +36313,7 @@ exports[`DateRangePicker component
36088
36313
  <i
36089
36314
  class="material-icons material-icons-round Icon Icon--default"
36090
36315
  data-test="DesignSystem-Button--Icon"
36316
+ role="button"
36091
36317
  style="font-size: 16px; width: 16px;"
36092
36318
  >
36093
36319
  arrow_forward_round
@@ -36627,6 +36853,7 @@ exports[`DateRangePicker component
36627
36853
  <i
36628
36854
  class="material-icons material-icons-round Icon Icon--default"
36629
36855
  data-test="DesignSystem-Button--Icon"
36856
+ role="button"
36630
36857
  style="font-size: 16px; width: 16px;"
36631
36858
  >
36632
36859
  arrow_back_round
@@ -36647,6 +36874,7 @@ exports[`DateRangePicker component
36647
36874
  </h5>
36648
36875
  <i
36649
36876
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
36877
+ role="button"
36650
36878
  style="font-size: 16px; width: 16px;"
36651
36879
  >
36652
36880
  keyboard_arrow_down_round
@@ -36663,6 +36891,7 @@ exports[`DateRangePicker component
36663
36891
  </h5>
36664
36892
  <i
36665
36893
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
36894
+ role="button"
36666
36895
  style="font-size: 16px; width: 16px;"
36667
36896
  >
36668
36897
  keyboard_arrow_down_round
@@ -37144,6 +37373,7 @@ exports[`DateRangePicker component
37144
37373
  </h5>
37145
37374
  <i
37146
37375
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
37376
+ role="button"
37147
37377
  style="font-size: 16px; width: 16px;"
37148
37378
  >
37149
37379
  keyboard_arrow_down_round
@@ -37160,6 +37390,7 @@ exports[`DateRangePicker component
37160
37390
  </h5>
37161
37391
  <i
37162
37392
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
37393
+ role="button"
37163
37394
  style="font-size: 16px; width: 16px;"
37164
37395
  >
37165
37396
  keyboard_arrow_down_round
@@ -37652,6 +37883,7 @@ exports[`DateRangePicker component
37652
37883
  </h5>
37653
37884
  <i
37654
37885
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
37886
+ role="button"
37655
37887
  style="font-size: 16px; width: 16px;"
37656
37888
  >
37657
37889
  keyboard_arrow_down_round
@@ -37668,6 +37900,7 @@ exports[`DateRangePicker component
37668
37900
  </h5>
37669
37901
  <i
37670
37902
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
37903
+ role="button"
37671
37904
  style="font-size: 16px; width: 16px;"
37672
37905
  >
37673
37906
  keyboard_arrow_down_round
@@ -37686,6 +37919,7 @@ exports[`DateRangePicker component
37686
37919
  <i
37687
37920
  class="material-icons material-icons-round Icon Icon--default"
37688
37921
  data-test="DesignSystem-Button--Icon"
37922
+ role="button"
37689
37923
  style="font-size: 16px; width: 16px;"
37690
37924
  >
37691
37925
  arrow_forward_round
@@ -38172,6 +38406,7 @@ exports[`DateRangePicker component
38172
38406
  <i
38173
38407
  class="material-icons material-icons-round Icon Icon--default"
38174
38408
  data-test="DesignSystem-Button--Icon"
38409
+ role="button"
38175
38410
  style="font-size: 16px; width: 16px;"
38176
38411
  >
38177
38412
  arrow_back_round
@@ -38192,6 +38427,7 @@ exports[`DateRangePicker component
38192
38427
  </h5>
38193
38428
  <i
38194
38429
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
38430
+ role="button"
38195
38431
  style="font-size: 16px; width: 16px;"
38196
38432
  >
38197
38433
  keyboard_arrow_down_round
@@ -38208,6 +38444,7 @@ exports[`DateRangePicker component
38208
38444
  </h5>
38209
38445
  <i
38210
38446
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
38447
+ role="button"
38211
38448
  style="font-size: 16px; width: 16px;"
38212
38449
  >
38213
38450
  keyboard_arrow_down_round
@@ -38226,6 +38463,7 @@ exports[`DateRangePicker component
38226
38463
  <i
38227
38464
  class="material-icons material-icons-round Icon Icon--default"
38228
38465
  data-test="DesignSystem-Button--Icon"
38466
+ role="button"
38229
38467
  style="font-size: 16px; width: 16px;"
38230
38468
  >
38231
38469
  arrow_forward_round
@@ -38807,6 +39045,7 @@ exports[`DateRangePicker component
38807
39045
  <i
38808
39046
  class="material-icons material-icons-round Icon Icon--default"
38809
39047
  data-test="DesignSystem-Button--Icon"
39048
+ role="button"
38810
39049
  style="font-size: 16px; width: 16px;"
38811
39050
  >
38812
39051
  arrow_back_round
@@ -38827,6 +39066,7 @@ exports[`DateRangePicker component
38827
39066
  </h5>
38828
39067
  <i
38829
39068
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
39069
+ role="button"
38830
39070
  style="font-size: 16px; width: 16px;"
38831
39071
  >
38832
39072
  keyboard_arrow_down_round
@@ -38845,6 +39085,7 @@ exports[`DateRangePicker component
38845
39085
  <i
38846
39086
  class="material-icons material-icons-round Icon Icon--default"
38847
39087
  data-test="DesignSystem-Button--Icon"
39088
+ role="button"
38848
39089
  style="font-size: 16px; width: 16px;"
38849
39090
  >
38850
39091
  arrow_forward_round
@@ -39038,6 +39279,7 @@ exports[`DateRangePicker component
39038
39279
  <i
39039
39280
  class="material-icons material-icons-round Icon Icon--default"
39040
39281
  data-test="DesignSystem-Button--Icon"
39282
+ role="button"
39041
39283
  style="font-size: 16px; width: 16px;"
39042
39284
  >
39043
39285
  arrow_back_round
@@ -39070,6 +39312,7 @@ exports[`DateRangePicker component
39070
39312
  <i
39071
39313
  class="material-icons material-icons-round Icon Icon--default"
39072
39314
  data-test="DesignSystem-Button--Icon"
39315
+ role="button"
39073
39316
  style="font-size: 16px; width: 16px;"
39074
39317
  >
39075
39318
  arrow_forward_round
@@ -39277,6 +39520,7 @@ exports[`DateRangePicker component
39277
39520
  >
39278
39521
  <i
39279
39522
  class="material-icons material-icons-round Icon"
39523
+ role="button"
39280
39524
  style="font-size: 16px; width: 16px;"
39281
39525
  >
39282
39526
  events_round
@@ -39346,6 +39590,7 @@ exports[`DateRangePicker component
39346
39590
  >
39347
39591
  <i
39348
39592
  class="material-icons material-icons-round Icon"
39593
+ role="button"
39349
39594
  style="font-size: 16px; width: 16px;"
39350
39595
  >
39351
39596
  events_round
@@ -39433,6 +39678,7 @@ exports[`DateRangePicker component
39433
39678
  >
39434
39679
  <i
39435
39680
  class="material-icons material-icons-round Icon"
39681
+ role="button"
39436
39682
  style="font-size: 16px; width: 16px;"
39437
39683
  >
39438
39684
  events_round
@@ -39502,6 +39748,7 @@ exports[`DateRangePicker component
39502
39748
  >
39503
39749
  <i
39504
39750
  class="material-icons material-icons-round Icon"
39751
+ role="button"
39505
39752
  style="font-size: 16px; width: 16px;"
39506
39753
  >
39507
39754
  events_round
@@ -39589,6 +39836,7 @@ exports[`DateRangePicker component
39589
39836
  >
39590
39837
  <i
39591
39838
  class="material-icons material-icons-round Icon"
39839
+ role="button"
39592
39840
  style="font-size: 16px; width: 16px;"
39593
39841
  >
39594
39842
  events_round
@@ -39658,6 +39906,7 @@ exports[`DateRangePicker component
39658
39906
  >
39659
39907
  <i
39660
39908
  class="material-icons material-icons-round Icon"
39909
+ role="button"
39661
39910
  style="font-size: 16px; width: 16px;"
39662
39911
  >
39663
39912
  events_round
@@ -39731,6 +39980,7 @@ exports[`DateRangePicker component
39731
39980
  <i
39732
39981
  class="material-icons material-icons-round Icon Icon--default"
39733
39982
  data-test="DesignSystem-Button--Icon"
39983
+ role="button"
39734
39984
  style="font-size: 12px; width: 12px;"
39735
39985
  >
39736
39986
  arrow_back_round
@@ -39751,6 +40001,7 @@ exports[`DateRangePicker component
39751
40001
  </span>
39752
40002
  <i
39753
40003
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
40004
+ role="button"
39754
40005
  style="font-size: 16px; width: 16px;"
39755
40006
  >
39756
40007
  keyboard_arrow_down_round
@@ -39767,6 +40018,7 @@ exports[`DateRangePicker component
39767
40018
  </span>
39768
40019
  <i
39769
40020
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
40021
+ role="button"
39770
40022
  style="font-size: 16px; width: 16px;"
39771
40023
  >
39772
40024
  keyboard_arrow_down_round
@@ -39785,6 +40037,7 @@ exports[`DateRangePicker component
39785
40037
  <i
39786
40038
  class="material-icons material-icons-round Icon Icon--default"
39787
40039
  data-test="DesignSystem-Button--Icon"
40040
+ role="button"
39788
40041
  style="font-size: 12px; width: 12px;"
39789
40042
  >
39790
40043
  arrow_forward_round
@@ -40366,6 +40619,7 @@ exports[`DateRangePicker component
40366
40619
  <i
40367
40620
  class="material-icons material-icons-round Icon Icon--default"
40368
40621
  data-test="DesignSystem-Button--Icon"
40622
+ role="button"
40369
40623
  style="font-size: 12px; width: 12px;"
40370
40624
  >
40371
40625
  arrow_back_round
@@ -40386,6 +40640,7 @@ exports[`DateRangePicker component
40386
40640
  </span>
40387
40641
  <i
40388
40642
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
40643
+ role="button"
40389
40644
  style="font-size: 16px; width: 16px;"
40390
40645
  >
40391
40646
  keyboard_arrow_down_round
@@ -40404,6 +40659,7 @@ exports[`DateRangePicker component
40404
40659
  <i
40405
40660
  class="material-icons material-icons-round Icon Icon--default"
40406
40661
  data-test="DesignSystem-Button--Icon"
40662
+ role="button"
40407
40663
  style="font-size: 12px; width: 12px;"
40408
40664
  >
40409
40665
  arrow_forward_round
@@ -40597,6 +40853,7 @@ exports[`DateRangePicker component
40597
40853
  <i
40598
40854
  class="material-icons material-icons-round Icon Icon--default"
40599
40855
  data-test="DesignSystem-Button--Icon"
40856
+ role="button"
40600
40857
  style="font-size: 12px; width: 12px;"
40601
40858
  >
40602
40859
  arrow_back_round
@@ -40629,6 +40886,7 @@ exports[`DateRangePicker component
40629
40886
  <i
40630
40887
  class="material-icons material-icons-round Icon Icon--default"
40631
40888
  data-test="DesignSystem-Button--Icon"
40889
+ role="button"
40632
40890
  style="font-size: 12px; width: 12px;"
40633
40891
  >
40634
40892
  arrow_forward_round
@@ -40836,6 +41094,7 @@ exports[`DateRangePicker component
40836
41094
  >
40837
41095
  <i
40838
41096
  class="material-icons material-icons-round Icon"
41097
+ role="button"
40839
41098
  style="font-size: 16px; width: 16px;"
40840
41099
  >
40841
41100
  events_round
@@ -40905,6 +41164,7 @@ exports[`DateRangePicker component
40905
41164
  >
40906
41165
  <i
40907
41166
  class="material-icons material-icons-round Icon"
41167
+ role="button"
40908
41168
  style="font-size: 16px; width: 16px;"
40909
41169
  >
40910
41170
  events_round
@@ -40992,6 +41252,7 @@ exports[`DateRangePicker component
40992
41252
  >
40993
41253
  <i
40994
41254
  class="material-icons material-icons-round Icon"
41255
+ role="button"
40995
41256
  style="font-size: 16px; width: 16px;"
40996
41257
  >
40997
41258
  events_round
@@ -41061,6 +41322,7 @@ exports[`DateRangePicker component
41061
41322
  >
41062
41323
  <i
41063
41324
  class="material-icons material-icons-round Icon"
41325
+ role="button"
41064
41326
  style="font-size: 16px; width: 16px;"
41065
41327
  >
41066
41328
  events_round
@@ -41148,6 +41410,7 @@ exports[`DateRangePicker component
41148
41410
  >
41149
41411
  <i
41150
41412
  class="material-icons material-icons-round Icon"
41413
+ role="button"
41151
41414
  style="font-size: 16px; width: 16px;"
41152
41415
  >
41153
41416
  events_round
@@ -41217,6 +41480,7 @@ exports[`DateRangePicker component
41217
41480
  >
41218
41481
  <i
41219
41482
  class="material-icons material-icons-round Icon"
41483
+ role="button"
41220
41484
  style="font-size: 16px; width: 16px;"
41221
41485
  >
41222
41486
  events_round
@@ -41290,6 +41554,7 @@ exports[`DateRangePicker component
41290
41554
  <i
41291
41555
  class="material-icons material-icons-round Icon Icon--default"
41292
41556
  data-test="DesignSystem-Button--Icon"
41557
+ role="button"
41293
41558
  style="font-size: 16px; width: 16px;"
41294
41559
  >
41295
41560
  arrow_back_round
@@ -41310,6 +41575,7 @@ exports[`DateRangePicker component
41310
41575
  </h5>
41311
41576
  <i
41312
41577
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
41578
+ role="button"
41313
41579
  style="font-size: 16px; width: 16px;"
41314
41580
  >
41315
41581
  keyboard_arrow_down_round
@@ -41326,6 +41592,7 @@ exports[`DateRangePicker component
41326
41592
  </h5>
41327
41593
  <i
41328
41594
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
41595
+ role="button"
41329
41596
  style="font-size: 16px; width: 16px;"
41330
41597
  >
41331
41598
  keyboard_arrow_down_round
@@ -41344,6 +41611,7 @@ exports[`DateRangePicker component
41344
41611
  <i
41345
41612
  class="material-icons material-icons-round Icon Icon--default"
41346
41613
  data-test="DesignSystem-Button--Icon"
41614
+ role="button"
41347
41615
  style="font-size: 16px; width: 16px;"
41348
41616
  >
41349
41617
  arrow_forward_round
@@ -41925,6 +42193,7 @@ exports[`DateRangePicker component
41925
42193
  <i
41926
42194
  class="material-icons material-icons-round Icon Icon--default"
41927
42195
  data-test="DesignSystem-Button--Icon"
42196
+ role="button"
41928
42197
  style="font-size: 16px; width: 16px;"
41929
42198
  >
41930
42199
  arrow_back_round
@@ -41945,6 +42214,7 @@ exports[`DateRangePicker component
41945
42214
  </h5>
41946
42215
  <i
41947
42216
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
42217
+ role="button"
41948
42218
  style="font-size: 16px; width: 16px;"
41949
42219
  >
41950
42220
  keyboard_arrow_down_round
@@ -41963,6 +42233,7 @@ exports[`DateRangePicker component
41963
42233
  <i
41964
42234
  class="material-icons material-icons-round Icon Icon--default"
41965
42235
  data-test="DesignSystem-Button--Icon"
42236
+ role="button"
41966
42237
  style="font-size: 16px; width: 16px;"
41967
42238
  >
41968
42239
  arrow_forward_round
@@ -42156,6 +42427,7 @@ exports[`DateRangePicker component
42156
42427
  <i
42157
42428
  class="material-icons material-icons-round Icon Icon--default"
42158
42429
  data-test="DesignSystem-Button--Icon"
42430
+ role="button"
42159
42431
  style="font-size: 16px; width: 16px;"
42160
42432
  >
42161
42433
  arrow_back_round
@@ -42188,6 +42460,7 @@ exports[`DateRangePicker component
42188
42460
  <i
42189
42461
  class="material-icons material-icons-round Icon Icon--default"
42190
42462
  data-test="DesignSystem-Button--Icon"
42463
+ role="button"
42191
42464
  style="font-size: 16px; width: 16px;"
42192
42465
  >
42193
42466
  arrow_forward_round
@@ -42395,6 +42668,7 @@ exports[`DateRangePicker component
42395
42668
  >
42396
42669
  <i
42397
42670
  class="material-icons material-icons-round Icon"
42671
+ role="button"
42398
42672
  style="font-size: 16px; width: 16px;"
42399
42673
  >
42400
42674
  events_round
@@ -42464,6 +42738,7 @@ exports[`DateRangePicker component
42464
42738
  >
42465
42739
  <i
42466
42740
  class="material-icons material-icons-round Icon"
42741
+ role="button"
42467
42742
  style="font-size: 16px; width: 16px;"
42468
42743
  >
42469
42744
  events_round
@@ -42535,6 +42810,7 @@ exports[`DateRangePicker component
42535
42810
  <i
42536
42811
  class="material-icons material-icons-round Icon Icon--default"
42537
42812
  data-test="DesignSystem-Button--Icon"
42813
+ role="button"
42538
42814
  style="font-size: 16px; width: 16px;"
42539
42815
  >
42540
42816
  arrow_back_round
@@ -42555,6 +42831,7 @@ exports[`DateRangePicker component
42555
42831
  </h5>
42556
42832
  <i
42557
42833
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
42834
+ role="button"
42558
42835
  style="font-size: 16px; width: 16px;"
42559
42836
  >
42560
42837
  keyboard_arrow_down_round
@@ -42571,6 +42848,7 @@ exports[`DateRangePicker component
42571
42848
  </h5>
42572
42849
  <i
42573
42850
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
42851
+ role="button"
42574
42852
  style="font-size: 16px; width: 16px;"
42575
42853
  >
42576
42854
  keyboard_arrow_down_round
@@ -43038,6 +43316,7 @@ exports[`DateRangePicker component
43038
43316
  </h5>
43039
43317
  <i
43040
43318
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
43319
+ role="button"
43041
43320
  style="font-size: 16px; width: 16px;"
43042
43321
  >
43043
43322
  keyboard_arrow_down_round
@@ -43054,6 +43333,7 @@ exports[`DateRangePicker component
43054
43333
  </h5>
43055
43334
  <i
43056
43335
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
43336
+ role="button"
43057
43337
  style="font-size: 16px; width: 16px;"
43058
43338
  >
43059
43339
  keyboard_arrow_down_round
@@ -43072,6 +43352,7 @@ exports[`DateRangePicker component
43072
43352
  <i
43073
43353
  class="material-icons material-icons-round Icon Icon--default"
43074
43354
  data-test="DesignSystem-Button--Icon"
43355
+ role="button"
43075
43356
  style="font-size: 16px; width: 16px;"
43076
43357
  >
43077
43358
  arrow_forward_round
@@ -43558,6 +43839,7 @@ exports[`DateRangePicker component
43558
43839
  >
43559
43840
  <i
43560
43841
  class="material-icons material-icons-round Icon"
43842
+ role="button"
43561
43843
  style="font-size: 16px; width: 16px;"
43562
43844
  >
43563
43845
  events_round
@@ -43627,6 +43909,7 @@ exports[`DateRangePicker component
43627
43909
  >
43628
43910
  <i
43629
43911
  class="material-icons material-icons-round Icon"
43912
+ role="button"
43630
43913
  style="font-size: 16px; width: 16px;"
43631
43914
  >
43632
43915
  events_round
@@ -43698,6 +43981,7 @@ exports[`DateRangePicker component
43698
43981
  <i
43699
43982
  class="material-icons material-icons-round Icon Icon--default"
43700
43983
  data-test="DesignSystem-Button--Icon"
43984
+ role="button"
43701
43985
  style="font-size: 16px; width: 16px;"
43702
43986
  >
43703
43987
  arrow_back_round
@@ -43718,6 +44002,7 @@ exports[`DateRangePicker component
43718
44002
  </h5>
43719
44003
  <i
43720
44004
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
44005
+ role="button"
43721
44006
  style="font-size: 16px; width: 16px;"
43722
44007
  >
43723
44008
  keyboard_arrow_down_round
@@ -43734,6 +44019,7 @@ exports[`DateRangePicker component
43734
44019
  </h5>
43735
44020
  <i
43736
44021
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
44022
+ role="button"
43737
44023
  style="font-size: 16px; width: 16px;"
43738
44024
  >
43739
44025
  keyboard_arrow_down_round
@@ -44201,6 +44487,7 @@ exports[`DateRangePicker component
44201
44487
  </h5>
44202
44488
  <i
44203
44489
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
44490
+ role="button"
44204
44491
  style="font-size: 16px; width: 16px;"
44205
44492
  >
44206
44493
  keyboard_arrow_down_round
@@ -44217,6 +44504,7 @@ exports[`DateRangePicker component
44217
44504
  </h5>
44218
44505
  <i
44219
44506
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
44507
+ role="button"
44220
44508
  style="font-size: 16px; width: 16px;"
44221
44509
  >
44222
44510
  keyboard_arrow_down_round
@@ -44235,6 +44523,7 @@ exports[`DateRangePicker component
44235
44523
  <i
44236
44524
  class="material-icons material-icons-round Icon Icon--default"
44237
44525
  data-test="DesignSystem-Button--Icon"
44526
+ role="button"
44238
44527
  style="font-size: 16px; width: 16px;"
44239
44528
  >
44240
44529
  arrow_forward_round
@@ -44721,6 +45010,7 @@ exports[`DateRangePicker component
44721
45010
  >
44722
45011
  <i
44723
45012
  class="material-icons material-icons-round Icon"
45013
+ role="button"
44724
45014
  style="font-size: 16px; width: 16px;"
44725
45015
  >
44726
45016
  events_round
@@ -44790,6 +45080,7 @@ exports[`DateRangePicker component
44790
45080
  >
44791
45081
  <i
44792
45082
  class="material-icons material-icons-round Icon"
45083
+ role="button"
44793
45084
  style="font-size: 16px; width: 16px;"
44794
45085
  >
44795
45086
  events_round
@@ -44861,6 +45152,7 @@ exports[`DateRangePicker component
44861
45152
  <i
44862
45153
  class="material-icons material-icons-round Icon Icon--default"
44863
45154
  data-test="DesignSystem-Button--Icon"
45155
+ role="button"
44864
45156
  style="font-size: 16px; width: 16px;"
44865
45157
  >
44866
45158
  arrow_back_round
@@ -44881,6 +45173,7 @@ exports[`DateRangePicker component
44881
45173
  </h5>
44882
45174
  <i
44883
45175
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
45176
+ role="button"
44884
45177
  style="font-size: 16px; width: 16px;"
44885
45178
  >
44886
45179
  keyboard_arrow_down_round
@@ -44897,6 +45190,7 @@ exports[`DateRangePicker component
44897
45190
  </h5>
44898
45191
  <i
44899
45192
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
45193
+ role="button"
44900
45194
  style="font-size: 16px; width: 16px;"
44901
45195
  >
44902
45196
  keyboard_arrow_down_round
@@ -45364,6 +45658,7 @@ exports[`DateRangePicker component
45364
45658
  </h5>
45365
45659
  <i
45366
45660
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
45661
+ role="button"
45367
45662
  style="font-size: 16px; width: 16px;"
45368
45663
  >
45369
45664
  keyboard_arrow_down_round
@@ -45380,6 +45675,7 @@ exports[`DateRangePicker component
45380
45675
  </h5>
45381
45676
  <i
45382
45677
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
45678
+ role="button"
45383
45679
  style="font-size: 16px; width: 16px;"
45384
45680
  >
45385
45681
  keyboard_arrow_down_round
@@ -45398,6 +45694,7 @@ exports[`DateRangePicker component
45398
45694
  <i
45399
45695
  class="material-icons material-icons-round Icon Icon--default"
45400
45696
  data-test="DesignSystem-Button--Icon"
45697
+ role="button"
45401
45698
  style="font-size: 16px; width: 16px;"
45402
45699
  >
45403
45700
  arrow_forward_round
@@ -45870,6 +46167,7 @@ exports[`DateRangePicker component
45870
46167
  <i
45871
46168
  class="material-icons material-icons-round Icon Icon--default"
45872
46169
  data-test="DesignSystem-Button--Icon"
46170
+ role="button"
45873
46171
  style="font-size: 12px; width: 12px;"
45874
46172
  >
45875
46173
  arrow_back_round
@@ -45890,6 +46188,7 @@ exports[`DateRangePicker component
45890
46188
  </span>
45891
46189
  <i
45892
46190
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
46191
+ role="button"
45893
46192
  style="font-size: 16px; width: 16px;"
45894
46193
  >
45895
46194
  keyboard_arrow_down_round
@@ -45906,6 +46205,7 @@ exports[`DateRangePicker component
45906
46205
  </span>
45907
46206
  <i
45908
46207
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
46208
+ role="button"
45909
46209
  style="font-size: 16px; width: 16px;"
45910
46210
  >
45911
46211
  keyboard_arrow_down_round
@@ -45924,6 +46224,7 @@ exports[`DateRangePicker component
45924
46224
  <i
45925
46225
  class="material-icons material-icons-round Icon Icon--default"
45926
46226
  data-test="DesignSystem-Button--Icon"
46227
+ role="button"
45927
46228
  style="font-size: 12px; width: 12px;"
45928
46229
  >
45929
46230
  arrow_forward_round
@@ -46505,6 +46806,7 @@ exports[`DateRangePicker component
46505
46806
  <i
46506
46807
  class="material-icons material-icons-round Icon Icon--default"
46507
46808
  data-test="DesignSystem-Button--Icon"
46809
+ role="button"
46508
46810
  style="font-size: 12px; width: 12px;"
46509
46811
  >
46510
46812
  arrow_back_round
@@ -46525,6 +46827,7 @@ exports[`DateRangePicker component
46525
46827
  </span>
46526
46828
  <i
46527
46829
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
46830
+ role="button"
46528
46831
  style="font-size: 16px; width: 16px;"
46529
46832
  >
46530
46833
  keyboard_arrow_down_round
@@ -46543,6 +46846,7 @@ exports[`DateRangePicker component
46543
46846
  <i
46544
46847
  class="material-icons material-icons-round Icon Icon--default"
46545
46848
  data-test="DesignSystem-Button--Icon"
46849
+ role="button"
46546
46850
  style="font-size: 12px; width: 12px;"
46547
46851
  >
46548
46852
  arrow_forward_round
@@ -46736,6 +47040,7 @@ exports[`DateRangePicker component
46736
47040
  <i
46737
47041
  class="material-icons material-icons-round Icon Icon--default"
46738
47042
  data-test="DesignSystem-Button--Icon"
47043
+ role="button"
46739
47044
  style="font-size: 12px; width: 12px;"
46740
47045
  >
46741
47046
  arrow_back_round
@@ -46768,6 +47073,7 @@ exports[`DateRangePicker component
46768
47073
  <i
46769
47074
  class="material-icons material-icons-round Icon Icon--default"
46770
47075
  data-test="DesignSystem-Button--Icon"
47076
+ role="button"
46771
47077
  style="font-size: 12px; width: 12px;"
46772
47078
  >
46773
47079
  arrow_forward_round
@@ -46975,6 +47281,7 @@ exports[`DateRangePicker component
46975
47281
  >
46976
47282
  <i
46977
47283
  class="material-icons material-icons-round Icon"
47284
+ role="button"
46978
47285
  style="font-size: 16px; width: 16px;"
46979
47286
  >
46980
47287
  events_round
@@ -47044,6 +47351,7 @@ exports[`DateRangePicker component
47044
47351
  >
47045
47352
  <i
47046
47353
  class="material-icons material-icons-round Icon"
47354
+ role="button"
47047
47355
  style="font-size: 16px; width: 16px;"
47048
47356
  >
47049
47357
  events_round
@@ -47115,6 +47423,7 @@ exports[`DateRangePicker component
47115
47423
  <i
47116
47424
  class="material-icons material-icons-round Icon Icon--default"
47117
47425
  data-test="DesignSystem-Button--Icon"
47426
+ role="button"
47118
47427
  style="font-size: 12px; width: 12px;"
47119
47428
  >
47120
47429
  arrow_back_round
@@ -47135,6 +47444,7 @@ exports[`DateRangePicker component
47135
47444
  </span>
47136
47445
  <i
47137
47446
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
47447
+ role="button"
47138
47448
  style="font-size: 16px; width: 16px;"
47139
47449
  >
47140
47450
  keyboard_arrow_down_round
@@ -47151,6 +47461,7 @@ exports[`DateRangePicker component
47151
47461
  </span>
47152
47462
  <i
47153
47463
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
47464
+ role="button"
47154
47465
  style="font-size: 16px; width: 16px;"
47155
47466
  >
47156
47467
  keyboard_arrow_down_round
@@ -47618,6 +47929,7 @@ exports[`DateRangePicker component
47618
47929
  </span>
47619
47930
  <i
47620
47931
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
47932
+ role="button"
47621
47933
  style="font-size: 16px; width: 16px;"
47622
47934
  >
47623
47935
  keyboard_arrow_down_round
@@ -47634,6 +47946,7 @@ exports[`DateRangePicker component
47634
47946
  </span>
47635
47947
  <i
47636
47948
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
47949
+ role="button"
47637
47950
  style="font-size: 16px; width: 16px;"
47638
47951
  >
47639
47952
  keyboard_arrow_down_round
@@ -47652,6 +47965,7 @@ exports[`DateRangePicker component
47652
47965
  <i
47653
47966
  class="material-icons material-icons-round Icon Icon--default"
47654
47967
  data-test="DesignSystem-Button--Icon"
47968
+ role="button"
47655
47969
  style="font-size: 12px; width: 12px;"
47656
47970
  >
47657
47971
  arrow_forward_round
@@ -48138,6 +48452,7 @@ exports[`DateRangePicker component
48138
48452
  >
48139
48453
  <i
48140
48454
  class="material-icons material-icons-round Icon"
48455
+ role="button"
48141
48456
  style="font-size: 16px; width: 16px;"
48142
48457
  >
48143
48458
  events_round
@@ -48207,6 +48522,7 @@ exports[`DateRangePicker component
48207
48522
  >
48208
48523
  <i
48209
48524
  class="material-icons material-icons-round Icon"
48525
+ role="button"
48210
48526
  style="font-size: 16px; width: 16px;"
48211
48527
  >
48212
48528
  events_round
@@ -48278,6 +48594,7 @@ exports[`DateRangePicker component
48278
48594
  <i
48279
48595
  class="material-icons material-icons-round Icon Icon--default"
48280
48596
  data-test="DesignSystem-Button--Icon"
48597
+ role="button"
48281
48598
  style="font-size: 12px; width: 12px;"
48282
48599
  >
48283
48600
  arrow_back_round
@@ -48298,6 +48615,7 @@ exports[`DateRangePicker component
48298
48615
  </span>
48299
48616
  <i
48300
48617
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
48618
+ role="button"
48301
48619
  style="font-size: 16px; width: 16px;"
48302
48620
  >
48303
48621
  keyboard_arrow_down_round
@@ -48314,6 +48632,7 @@ exports[`DateRangePicker component
48314
48632
  </span>
48315
48633
  <i
48316
48634
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
48635
+ role="button"
48317
48636
  style="font-size: 16px; width: 16px;"
48318
48637
  >
48319
48638
  keyboard_arrow_down_round
@@ -48781,6 +49100,7 @@ exports[`DateRangePicker component
48781
49100
  </span>
48782
49101
  <i
48783
49102
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
49103
+ role="button"
48784
49104
  style="font-size: 16px; width: 16px;"
48785
49105
  >
48786
49106
  keyboard_arrow_down_round
@@ -48797,6 +49117,7 @@ exports[`DateRangePicker component
48797
49117
  </span>
48798
49118
  <i
48799
49119
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
49120
+ role="button"
48800
49121
  style="font-size: 16px; width: 16px;"
48801
49122
  >
48802
49123
  keyboard_arrow_down_round
@@ -48815,6 +49136,7 @@ exports[`DateRangePicker component
48815
49136
  <i
48816
49137
  class="material-icons material-icons-round Icon Icon--default"
48817
49138
  data-test="DesignSystem-Button--Icon"
49139
+ role="button"
48818
49140
  style="font-size: 12px; width: 12px;"
48819
49141
  >
48820
49142
  arrow_forward_round
@@ -49301,6 +49623,7 @@ exports[`DateRangePicker component
49301
49623
  >
49302
49624
  <i
49303
49625
  class="material-icons material-icons-round Icon"
49626
+ role="button"
49304
49627
  style="font-size: 16px; width: 16px;"
49305
49628
  >
49306
49629
  events_round
@@ -49370,6 +49693,7 @@ exports[`DateRangePicker component
49370
49693
  >
49371
49694
  <i
49372
49695
  class="material-icons material-icons-round Icon"
49696
+ role="button"
49373
49697
  style="font-size: 16px; width: 16px;"
49374
49698
  >
49375
49699
  events_round
@@ -49441,6 +49765,7 @@ exports[`DateRangePicker component
49441
49765
  <i
49442
49766
  class="material-icons material-icons-round Icon Icon--default"
49443
49767
  data-test="DesignSystem-Button--Icon"
49768
+ role="button"
49444
49769
  style="font-size: 12px; width: 12px;"
49445
49770
  >
49446
49771
  arrow_back_round
@@ -49461,6 +49786,7 @@ exports[`DateRangePicker component
49461
49786
  </span>
49462
49787
  <i
49463
49788
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
49789
+ role="button"
49464
49790
  style="font-size: 16px; width: 16px;"
49465
49791
  >
49466
49792
  keyboard_arrow_down_round
@@ -49477,6 +49803,7 @@ exports[`DateRangePicker component
49477
49803
  </span>
49478
49804
  <i
49479
49805
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
49806
+ role="button"
49480
49807
  style="font-size: 16px; width: 16px;"
49481
49808
  >
49482
49809
  keyboard_arrow_down_round
@@ -49944,6 +50271,7 @@ exports[`DateRangePicker component
49944
50271
  </span>
49945
50272
  <i
49946
50273
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
50274
+ role="button"
49947
50275
  style="font-size: 16px; width: 16px;"
49948
50276
  >
49949
50277
  keyboard_arrow_down_round
@@ -49960,6 +50288,7 @@ exports[`DateRangePicker component
49960
50288
  </span>
49961
50289
  <i
49962
50290
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
50291
+ role="button"
49963
50292
  style="font-size: 16px; width: 16px;"
49964
50293
  >
49965
50294
  keyboard_arrow_down_round
@@ -49978,6 +50307,7 @@ exports[`DateRangePicker component
49978
50307
  <i
49979
50308
  class="material-icons material-icons-round Icon Icon--default"
49980
50309
  data-test="DesignSystem-Button--Icon"
50310
+ role="button"
49981
50311
  style="font-size: 12px; width: 12px;"
49982
50312
  >
49983
50313
  arrow_forward_round
@@ -50450,6 +50780,7 @@ exports[`DateRangePicker component
50450
50780
  <i
50451
50781
  class="material-icons material-icons-round Icon Icon--default"
50452
50782
  data-test="DesignSystem-Button--Icon"
50783
+ role="button"
50453
50784
  style="font-size: 16px; width: 16px;"
50454
50785
  >
50455
50786
  arrow_back_round
@@ -50470,6 +50801,7 @@ exports[`DateRangePicker component
50470
50801
  </h5>
50471
50802
  <i
50472
50803
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
50804
+ role="button"
50473
50805
  style="font-size: 16px; width: 16px;"
50474
50806
  >
50475
50807
  keyboard_arrow_down_round
@@ -50486,6 +50818,7 @@ exports[`DateRangePicker component
50486
50818
  </h5>
50487
50819
  <i
50488
50820
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
50821
+ role="button"
50489
50822
  style="font-size: 16px; width: 16px;"
50490
50823
  >
50491
50824
  keyboard_arrow_down_round
@@ -50504,6 +50837,7 @@ exports[`DateRangePicker component
50504
50837
  <i
50505
50838
  class="material-icons material-icons-round Icon Icon--default"
50506
50839
  data-test="DesignSystem-Button--Icon"
50840
+ role="button"
50507
50841
  style="font-size: 16px; width: 16px;"
50508
50842
  >
50509
50843
  arrow_forward_round
@@ -51085,6 +51419,7 @@ exports[`DateRangePicker component
51085
51419
  <i
51086
51420
  class="material-icons material-icons-round Icon Icon--default"
51087
51421
  data-test="DesignSystem-Button--Icon"
51422
+ role="button"
51088
51423
  style="font-size: 16px; width: 16px;"
51089
51424
  >
51090
51425
  arrow_back_round
@@ -51105,6 +51440,7 @@ exports[`DateRangePicker component
51105
51440
  </h5>
51106
51441
  <i
51107
51442
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
51443
+ role="button"
51108
51444
  style="font-size: 16px; width: 16px;"
51109
51445
  >
51110
51446
  keyboard_arrow_down_round
@@ -51121,6 +51457,7 @@ exports[`DateRangePicker component
51121
51457
  </h5>
51122
51458
  <i
51123
51459
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
51460
+ role="button"
51124
51461
  style="font-size: 16px; width: 16px;"
51125
51462
  >
51126
51463
  keyboard_arrow_down_round
@@ -51139,6 +51476,7 @@ exports[`DateRangePicker component
51139
51476
  <i
51140
51477
  class="material-icons material-icons-round Icon Icon--default"
51141
51478
  data-test="DesignSystem-Button--Icon"
51479
+ role="button"
51142
51480
  style="font-size: 16px; width: 16px;"
51143
51481
  >
51144
51482
  arrow_forward_round
@@ -51720,6 +52058,7 @@ exports[`DateRangePicker component
51720
52058
  <i
51721
52059
  class="material-icons material-icons-round Icon Icon--default"
51722
52060
  data-test="DesignSystem-Button--Icon"
52061
+ role="button"
51723
52062
  style="font-size: 16px; width: 16px;"
51724
52063
  >
51725
52064
  arrow_back_round
@@ -51738,6 +52077,7 @@ exports[`DateRangePicker component
51738
52077
  />
51739
52078
  <i
51740
52079
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52080
+ role="button"
51741
52081
  style="font-size: 16px; width: 16px;"
51742
52082
  >
51743
52083
  keyboard_arrow_down_round
@@ -51754,6 +52094,7 @@ exports[`DateRangePicker component
51754
52094
  </h5>
51755
52095
  <i
51756
52096
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52097
+ role="button"
51757
52098
  style="font-size: 16px; width: 16px;"
51758
52099
  >
51759
52100
  keyboard_arrow_down_round
@@ -51772,6 +52113,7 @@ exports[`DateRangePicker component
51772
52113
  <i
51773
52114
  class="material-icons material-icons-round Icon Icon--default"
51774
52115
  data-test="DesignSystem-Button--Icon"
52116
+ role="button"
51775
52117
  style="font-size: 16px; width: 16px;"
51776
52118
  >
51777
52119
  arrow_forward_round
@@ -51866,6 +52208,7 @@ exports[`DateRangePicker component
51866
52208
  <i
51867
52209
  class="material-icons material-icons-round Icon Icon--default"
51868
52210
  data-test="DesignSystem-Button--Icon"
52211
+ role="button"
51869
52212
  style="font-size: 16px; width: 16px;"
51870
52213
  >
51871
52214
  arrow_back_round
@@ -51884,6 +52227,7 @@ exports[`DateRangePicker component
51884
52227
  />
51885
52228
  <i
51886
52229
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52230
+ role="button"
51887
52231
  style="font-size: 16px; width: 16px;"
51888
52232
  >
51889
52233
  keyboard_arrow_down_round
@@ -51900,6 +52244,7 @@ exports[`DateRangePicker component
51900
52244
  </h5>
51901
52245
  <i
51902
52246
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52247
+ role="button"
51903
52248
  style="font-size: 16px; width: 16px;"
51904
52249
  >
51905
52250
  keyboard_arrow_down_round
@@ -51918,6 +52263,7 @@ exports[`DateRangePicker component
51918
52263
  <i
51919
52264
  class="material-icons material-icons-round Icon Icon--default"
51920
52265
  data-test="DesignSystem-Button--Icon"
52266
+ role="button"
51921
52267
  style="font-size: 16px; width: 16px;"
51922
52268
  >
51923
52269
  arrow_forward_round
@@ -52012,6 +52358,7 @@ exports[`DateRangePicker component
52012
52358
  <i
52013
52359
  class="material-icons material-icons-round Icon Icon--default"
52014
52360
  data-test="DesignSystem-Button--Icon"
52361
+ role="button"
52015
52362
  style="font-size: 16px; width: 16px;"
52016
52363
  >
52017
52364
  arrow_back_round
@@ -52030,6 +52377,7 @@ exports[`DateRangePicker component
52030
52377
  />
52031
52378
  <i
52032
52379
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52380
+ role="button"
52033
52381
  style="font-size: 16px; width: 16px;"
52034
52382
  >
52035
52383
  keyboard_arrow_down_round
@@ -52046,6 +52394,7 @@ exports[`DateRangePicker component
52046
52394
  </h5>
52047
52395
  <i
52048
52396
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52397
+ role="button"
52049
52398
  style="font-size: 16px; width: 16px;"
52050
52399
  >
52051
52400
  keyboard_arrow_down_round
@@ -52064,6 +52413,7 @@ exports[`DateRangePicker component
52064
52413
  <i
52065
52414
  class="material-icons material-icons-round Icon Icon--default"
52066
52415
  data-test="DesignSystem-Button--Icon"
52416
+ role="button"
52067
52417
  style="font-size: 16px; width: 16px;"
52068
52418
  >
52069
52419
  arrow_forward_round
@@ -52158,6 +52508,7 @@ exports[`DateRangePicker component
52158
52508
  <i
52159
52509
  class="material-icons material-icons-round Icon Icon--default"
52160
52510
  data-test="DesignSystem-Button--Icon"
52511
+ role="button"
52161
52512
  style="font-size: 16px; width: 16px;"
52162
52513
  >
52163
52514
  arrow_back_round
@@ -52176,6 +52527,7 @@ exports[`DateRangePicker component
52176
52527
  />
52177
52528
  <i
52178
52529
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52530
+ role="button"
52179
52531
  style="font-size: 16px; width: 16px;"
52180
52532
  >
52181
52533
  keyboard_arrow_down_round
@@ -52192,6 +52544,7 @@ exports[`DateRangePicker component
52192
52544
  </h5>
52193
52545
  <i
52194
52546
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52547
+ role="button"
52195
52548
  style="font-size: 16px; width: 16px;"
52196
52549
  >
52197
52550
  keyboard_arrow_down_round
@@ -52210,6 +52563,7 @@ exports[`DateRangePicker component
52210
52563
  <i
52211
52564
  class="material-icons material-icons-round Icon Icon--default"
52212
52565
  data-test="DesignSystem-Button--Icon"
52566
+ role="button"
52213
52567
  style="font-size: 16px; width: 16px;"
52214
52568
  >
52215
52569
  arrow_forward_round
@@ -52304,6 +52658,7 @@ exports[`DateRangePicker component
52304
52658
  <i
52305
52659
  class="material-icons material-icons-round Icon Icon--default"
52306
52660
  data-test="DesignSystem-Button--Icon"
52661
+ role="button"
52307
52662
  style="font-size: 16px; width: 16px;"
52308
52663
  >
52309
52664
  arrow_back_round
@@ -52322,6 +52677,7 @@ exports[`DateRangePicker component
52322
52677
  />
52323
52678
  <i
52324
52679
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52680
+ role="button"
52325
52681
  style="font-size: 16px; width: 16px;"
52326
52682
  >
52327
52683
  keyboard_arrow_down_round
@@ -52338,6 +52694,7 @@ exports[`DateRangePicker component
52338
52694
  </h5>
52339
52695
  <i
52340
52696
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52697
+ role="button"
52341
52698
  style="font-size: 16px; width: 16px;"
52342
52699
  >
52343
52700
  keyboard_arrow_down_round
@@ -52356,6 +52713,7 @@ exports[`DateRangePicker component
52356
52713
  <i
52357
52714
  class="material-icons material-icons-round Icon Icon--default"
52358
52715
  data-test="DesignSystem-Button--Icon"
52716
+ role="button"
52359
52717
  style="font-size: 16px; width: 16px;"
52360
52718
  >
52361
52719
  arrow_forward_round
@@ -52450,6 +52808,7 @@ exports[`DateRangePicker component
52450
52808
  <i
52451
52809
  class="material-icons material-icons-round Icon Icon--default"
52452
52810
  data-test="DesignSystem-Button--Icon"
52811
+ role="button"
52453
52812
  style="font-size: 16px; width: 16px;"
52454
52813
  >
52455
52814
  arrow_back_round
@@ -52468,6 +52827,7 @@ exports[`DateRangePicker component
52468
52827
  />
52469
52828
  <i
52470
52829
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52830
+ role="button"
52471
52831
  style="font-size: 16px; width: 16px;"
52472
52832
  >
52473
52833
  keyboard_arrow_down_round
@@ -52484,6 +52844,7 @@ exports[`DateRangePicker component
52484
52844
  </h5>
52485
52845
  <i
52486
52846
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52847
+ role="button"
52487
52848
  style="font-size: 16px; width: 16px;"
52488
52849
  >
52489
52850
  keyboard_arrow_down_round
@@ -52502,6 +52863,7 @@ exports[`DateRangePicker component
52502
52863
  <i
52503
52864
  class="material-icons material-icons-round Icon Icon--default"
52504
52865
  data-test="DesignSystem-Button--Icon"
52866
+ role="button"
52505
52867
  style="font-size: 16px; width: 16px;"
52506
52868
  >
52507
52869
  arrow_forward_round
@@ -52596,6 +52958,7 @@ exports[`DateRangePicker component
52596
52958
  <i
52597
52959
  class="material-icons material-icons-round Icon Icon--default"
52598
52960
  data-test="DesignSystem-Button--Icon"
52961
+ role="button"
52599
52962
  style="font-size: 16px; width: 16px;"
52600
52963
  >
52601
52964
  arrow_back_round
@@ -52614,6 +52977,7 @@ exports[`DateRangePicker component
52614
52977
  />
52615
52978
  <i
52616
52979
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52980
+ role="button"
52617
52981
  style="font-size: 16px; width: 16px;"
52618
52982
  >
52619
52983
  keyboard_arrow_down_round
@@ -52630,6 +52994,7 @@ exports[`DateRangePicker component
52630
52994
  </h5>
52631
52995
  <i
52632
52996
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
52997
+ role="button"
52633
52998
  style="font-size: 16px; width: 16px;"
52634
52999
  >
52635
53000
  keyboard_arrow_down_round
@@ -52648,6 +53013,7 @@ exports[`DateRangePicker component
52648
53013
  <i
52649
53014
  class="material-icons material-icons-round Icon Icon--default"
52650
53015
  data-test="DesignSystem-Button--Icon"
53016
+ role="button"
52651
53017
  style="font-size: 16px; width: 16px;"
52652
53018
  >
52653
53019
  arrow_forward_round
@@ -52742,6 +53108,7 @@ exports[`DateRangePicker component
52742
53108
  <i
52743
53109
  class="material-icons material-icons-round Icon Icon--default"
52744
53110
  data-test="DesignSystem-Button--Icon"
53111
+ role="button"
52745
53112
  style="font-size: 16px; width: 16px;"
52746
53113
  >
52747
53114
  arrow_back_round
@@ -52760,6 +53127,7 @@ exports[`DateRangePicker component
52760
53127
  />
52761
53128
  <i
52762
53129
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53130
+ role="button"
52763
53131
  style="font-size: 16px; width: 16px;"
52764
53132
  >
52765
53133
  keyboard_arrow_down_round
@@ -52776,6 +53144,7 @@ exports[`DateRangePicker component
52776
53144
  </h5>
52777
53145
  <i
52778
53146
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53147
+ role="button"
52779
53148
  style="font-size: 16px; width: 16px;"
52780
53149
  >
52781
53150
  keyboard_arrow_down_round
@@ -52794,6 +53163,7 @@ exports[`DateRangePicker component
52794
53163
  <i
52795
53164
  class="material-icons material-icons-round Icon Icon--default"
52796
53165
  data-test="DesignSystem-Button--Icon"
53166
+ role="button"
52797
53167
  style="font-size: 16px; width: 16px;"
52798
53168
  >
52799
53169
  arrow_forward_round
@@ -52888,6 +53258,7 @@ exports[`DateRangePicker component
52888
53258
  <i
52889
53259
  class="material-icons material-icons-round Icon Icon--default"
52890
53260
  data-test="DesignSystem-Button--Icon"
53261
+ role="button"
52891
53262
  style="font-size: 16px; width: 16px;"
52892
53263
  >
52893
53264
  arrow_back_round
@@ -52906,6 +53277,7 @@ exports[`DateRangePicker component
52906
53277
  />
52907
53278
  <i
52908
53279
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53280
+ role="button"
52909
53281
  style="font-size: 16px; width: 16px;"
52910
53282
  >
52911
53283
  keyboard_arrow_down_round
@@ -52922,6 +53294,7 @@ exports[`DateRangePicker component
52922
53294
  </h5>
52923
53295
  <i
52924
53296
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53297
+ role="button"
52925
53298
  style="font-size: 16px; width: 16px;"
52926
53299
  >
52927
53300
  keyboard_arrow_down_round
@@ -52940,6 +53313,7 @@ exports[`DateRangePicker component
52940
53313
  <i
52941
53314
  class="material-icons material-icons-round Icon Icon--default"
52942
53315
  data-test="DesignSystem-Button--Icon"
53316
+ role="button"
52943
53317
  style="font-size: 16px; width: 16px;"
52944
53318
  >
52945
53319
  arrow_forward_round
@@ -53034,6 +53408,7 @@ exports[`DateRangePicker component
53034
53408
  <i
53035
53409
  class="material-icons material-icons-round Icon Icon--default"
53036
53410
  data-test="DesignSystem-Button--Icon"
53411
+ role="button"
53037
53412
  style="font-size: 16px; width: 16px;"
53038
53413
  >
53039
53414
  arrow_back_round
@@ -53052,6 +53427,7 @@ exports[`DateRangePicker component
53052
53427
  />
53053
53428
  <i
53054
53429
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53430
+ role="button"
53055
53431
  style="font-size: 16px; width: 16px;"
53056
53432
  >
53057
53433
  keyboard_arrow_down_round
@@ -53068,6 +53444,7 @@ exports[`DateRangePicker component
53068
53444
  </h5>
53069
53445
  <i
53070
53446
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53447
+ role="button"
53071
53448
  style="font-size: 16px; width: 16px;"
53072
53449
  >
53073
53450
  keyboard_arrow_down_round
@@ -53086,6 +53463,7 @@ exports[`DateRangePicker component
53086
53463
  <i
53087
53464
  class="material-icons material-icons-round Icon Icon--default"
53088
53465
  data-test="DesignSystem-Button--Icon"
53466
+ role="button"
53089
53467
  style="font-size: 16px; width: 16px;"
53090
53468
  >
53091
53469
  arrow_forward_round
@@ -53180,6 +53558,7 @@ exports[`DateRangePicker component
53180
53558
  <i
53181
53559
  class="material-icons material-icons-round Icon Icon--default"
53182
53560
  data-test="DesignSystem-Button--Icon"
53561
+ role="button"
53183
53562
  style="font-size: 16px; width: 16px;"
53184
53563
  >
53185
53564
  arrow_back_round
@@ -53198,6 +53577,7 @@ exports[`DateRangePicker component
53198
53577
  />
53199
53578
  <i
53200
53579
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53580
+ role="button"
53201
53581
  style="font-size: 16px; width: 16px;"
53202
53582
  >
53203
53583
  keyboard_arrow_down_round
@@ -53214,6 +53594,7 @@ exports[`DateRangePicker component
53214
53594
  </h5>
53215
53595
  <i
53216
53596
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53597
+ role="button"
53217
53598
  style="font-size: 16px; width: 16px;"
53218
53599
  >
53219
53600
  keyboard_arrow_down_round
@@ -53232,6 +53613,7 @@ exports[`DateRangePicker component
53232
53613
  <i
53233
53614
  class="material-icons material-icons-round Icon Icon--default"
53234
53615
  data-test="DesignSystem-Button--Icon"
53616
+ role="button"
53235
53617
  style="font-size: 16px; width: 16px;"
53236
53618
  >
53237
53619
  arrow_forward_round
@@ -53326,6 +53708,7 @@ exports[`DateRangePicker component
53326
53708
  <i
53327
53709
  class="material-icons material-icons-round Icon Icon--default"
53328
53710
  data-test="DesignSystem-Button--Icon"
53711
+ role="button"
53329
53712
  style="font-size: 16px; width: 16px;"
53330
53713
  >
53331
53714
  arrow_back_round
@@ -53344,6 +53727,7 @@ exports[`DateRangePicker component
53344
53727
  />
53345
53728
  <i
53346
53729
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53730
+ role="button"
53347
53731
  style="font-size: 16px; width: 16px;"
53348
53732
  >
53349
53733
  keyboard_arrow_down_round
@@ -53360,6 +53744,7 @@ exports[`DateRangePicker component
53360
53744
  </h5>
53361
53745
  <i
53362
53746
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53747
+ role="button"
53363
53748
  style="font-size: 16px; width: 16px;"
53364
53749
  >
53365
53750
  keyboard_arrow_down_round
@@ -53378,6 +53763,7 @@ exports[`DateRangePicker component
53378
53763
  <i
53379
53764
  class="material-icons material-icons-round Icon Icon--default"
53380
53765
  data-test="DesignSystem-Button--Icon"
53766
+ role="button"
53381
53767
  style="font-size: 16px; width: 16px;"
53382
53768
  >
53383
53769
  arrow_forward_round
@@ -53472,6 +53858,7 @@ exports[`DateRangePicker component
53472
53858
  <i
53473
53859
  class="material-icons material-icons-round Icon Icon--default"
53474
53860
  data-test="DesignSystem-Button--Icon"
53861
+ role="button"
53475
53862
  style="font-size: 16px; width: 16px;"
53476
53863
  >
53477
53864
  arrow_back_round
@@ -53490,6 +53877,7 @@ exports[`DateRangePicker component
53490
53877
  />
53491
53878
  <i
53492
53879
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53880
+ role="button"
53493
53881
  style="font-size: 16px; width: 16px;"
53494
53882
  >
53495
53883
  keyboard_arrow_down_round
@@ -53506,6 +53894,7 @@ exports[`DateRangePicker component
53506
53894
  </h5>
53507
53895
  <i
53508
53896
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
53897
+ role="button"
53509
53898
  style="font-size: 16px; width: 16px;"
53510
53899
  >
53511
53900
  keyboard_arrow_down_round
@@ -53524,6 +53913,7 @@ exports[`DateRangePicker component
53524
53913
  <i
53525
53914
  class="material-icons material-icons-round Icon Icon--default"
53526
53915
  data-test="DesignSystem-Button--Icon"
53916
+ role="button"
53527
53917
  style="font-size: 16px; width: 16px;"
53528
53918
  >
53529
53919
  arrow_forward_round
@@ -53618,6 +54008,7 @@ exports[`DateRangePicker component
53618
54008
  <i
53619
54009
  class="material-icons material-icons-round Icon Icon--default"
53620
54010
  data-test="DesignSystem-Button--Icon"
54011
+ role="button"
53621
54012
  style="font-size: 16px; width: 16px;"
53622
54013
  >
53623
54014
  arrow_back_round
@@ -53636,6 +54027,7 @@ exports[`DateRangePicker component
53636
54027
  />
53637
54028
  <i
53638
54029
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54030
+ role="button"
53639
54031
  style="font-size: 16px; width: 16px;"
53640
54032
  >
53641
54033
  keyboard_arrow_down_round
@@ -53652,6 +54044,7 @@ exports[`DateRangePicker component
53652
54044
  </h5>
53653
54045
  <i
53654
54046
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54047
+ role="button"
53655
54048
  style="font-size: 16px; width: 16px;"
53656
54049
  >
53657
54050
  keyboard_arrow_down_round
@@ -53670,6 +54063,7 @@ exports[`DateRangePicker component
53670
54063
  <i
53671
54064
  class="material-icons material-icons-round Icon Icon--default"
53672
54065
  data-test="DesignSystem-Button--Icon"
54066
+ role="button"
53673
54067
  style="font-size: 16px; width: 16px;"
53674
54068
  >
53675
54069
  arrow_forward_round
@@ -53764,6 +54158,7 @@ exports[`DateRangePicker component
53764
54158
  <i
53765
54159
  class="material-icons material-icons-round Icon Icon--default"
53766
54160
  data-test="DesignSystem-Button--Icon"
54161
+ role="button"
53767
54162
  style="font-size: 16px; width: 16px;"
53768
54163
  >
53769
54164
  arrow_back_round
@@ -53782,6 +54177,7 @@ exports[`DateRangePicker component
53782
54177
  />
53783
54178
  <i
53784
54179
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54180
+ role="button"
53785
54181
  style="font-size: 16px; width: 16px;"
53786
54182
  >
53787
54183
  keyboard_arrow_down_round
@@ -53798,6 +54194,7 @@ exports[`DateRangePicker component
53798
54194
  </h5>
53799
54195
  <i
53800
54196
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54197
+ role="button"
53801
54198
  style="font-size: 16px; width: 16px;"
53802
54199
  >
53803
54200
  keyboard_arrow_down_round
@@ -53816,6 +54213,7 @@ exports[`DateRangePicker component
53816
54213
  <i
53817
54214
  class="material-icons material-icons-round Icon Icon--default"
53818
54215
  data-test="DesignSystem-Button--Icon"
54216
+ role="button"
53819
54217
  style="font-size: 16px; width: 16px;"
53820
54218
  >
53821
54219
  arrow_forward_round
@@ -53910,6 +54308,7 @@ exports[`DateRangePicker component
53910
54308
  <i
53911
54309
  class="material-icons material-icons-round Icon Icon--default"
53912
54310
  data-test="DesignSystem-Button--Icon"
54311
+ role="button"
53913
54312
  style="font-size: 16px; width: 16px;"
53914
54313
  >
53915
54314
  arrow_back_round
@@ -53928,6 +54327,7 @@ exports[`DateRangePicker component
53928
54327
  />
53929
54328
  <i
53930
54329
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54330
+ role="button"
53931
54331
  style="font-size: 16px; width: 16px;"
53932
54332
  >
53933
54333
  keyboard_arrow_down_round
@@ -53944,6 +54344,7 @@ exports[`DateRangePicker component
53944
54344
  </h5>
53945
54345
  <i
53946
54346
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54347
+ role="button"
53947
54348
  style="font-size: 16px; width: 16px;"
53948
54349
  >
53949
54350
  keyboard_arrow_down_round
@@ -53962,6 +54363,7 @@ exports[`DateRangePicker component
53962
54363
  <i
53963
54364
  class="material-icons material-icons-round Icon Icon--default"
53964
54365
  data-test="DesignSystem-Button--Icon"
54366
+ role="button"
53965
54367
  style="font-size: 16px; width: 16px;"
53966
54368
  >
53967
54369
  arrow_forward_round
@@ -54056,6 +54458,7 @@ exports[`DateRangePicker component
54056
54458
  <i
54057
54459
  class="material-icons material-icons-round Icon Icon--default"
54058
54460
  data-test="DesignSystem-Button--Icon"
54461
+ role="button"
54059
54462
  style="font-size: 16px; width: 16px;"
54060
54463
  >
54061
54464
  arrow_back_round
@@ -54076,6 +54479,7 @@ exports[`DateRangePicker component
54076
54479
  </h5>
54077
54480
  <i
54078
54481
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54482
+ role="button"
54079
54483
  style="font-size: 16px; width: 16px;"
54080
54484
  >
54081
54485
  keyboard_arrow_down_round
@@ -54092,6 +54496,7 @@ exports[`DateRangePicker component
54092
54496
  </h5>
54093
54497
  <i
54094
54498
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
54499
+ role="button"
54095
54500
  style="font-size: 16px; width: 16px;"
54096
54501
  >
54097
54502
  keyboard_arrow_down_round
@@ -54110,6 +54515,7 @@ exports[`DateRangePicker component
54110
54515
  <i
54111
54516
  class="material-icons material-icons-round Icon Icon--default"
54112
54517
  data-test="DesignSystem-Button--Icon"
54518
+ role="button"
54113
54519
  style="font-size: 16px; width: 16px;"
54114
54520
  >
54115
54521
  arrow_forward_round
@@ -54691,6 +55097,7 @@ exports[`DateRangePicker component
54691
55097
  <i
54692
55098
  class="material-icons material-icons-round Icon Icon--default"
54693
55099
  data-test="DesignSystem-Button--Icon"
55100
+ role="button"
54694
55101
  style="font-size: 16px; width: 16px;"
54695
55102
  >
54696
55103
  arrow_back_round
@@ -54711,6 +55118,7 @@ exports[`DateRangePicker component
54711
55118
  </h5>
54712
55119
  <i
54713
55120
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
55121
+ role="button"
54714
55122
  style="font-size: 16px; width: 16px;"
54715
55123
  >
54716
55124
  keyboard_arrow_down_round
@@ -54727,6 +55135,7 @@ exports[`DateRangePicker component
54727
55135
  </h5>
54728
55136
  <i
54729
55137
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
55138
+ role="button"
54730
55139
  style="font-size: 16px; width: 16px;"
54731
55140
  >
54732
55141
  keyboard_arrow_down_round
@@ -54745,6 +55154,7 @@ exports[`DateRangePicker component
54745
55154
  <i
54746
55155
  class="material-icons material-icons-round Icon Icon--default"
54747
55156
  data-test="DesignSystem-Button--Icon"
55157
+ role="button"
54748
55158
  style="font-size: 16px; width: 16px;"
54749
55159
  >
54750
55160
  arrow_forward_round
@@ -55326,6 +55736,7 @@ exports[`DateRangePicker component
55326
55736
  <i
55327
55737
  class="material-icons material-icons-round Icon Icon--default"
55328
55738
  data-test="DesignSystem-Button--Icon"
55739
+ role="button"
55329
55740
  style="font-size: 16px; width: 16px;"
55330
55741
  >
55331
55742
  arrow_back_round
@@ -55346,6 +55757,7 @@ exports[`DateRangePicker component
55346
55757
  </h5>
55347
55758
  <i
55348
55759
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
55760
+ role="button"
55349
55761
  style="font-size: 16px; width: 16px;"
55350
55762
  >
55351
55763
  keyboard_arrow_down_round
@@ -55362,6 +55774,7 @@ exports[`DateRangePicker component
55362
55774
  </h5>
55363
55775
  <i
55364
55776
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
55777
+ role="button"
55365
55778
  style="font-size: 16px; width: 16px;"
55366
55779
  >
55367
55780
  keyboard_arrow_down_round
@@ -55380,6 +55793,7 @@ exports[`DateRangePicker component
55380
55793
  <i
55381
55794
  class="material-icons material-icons-round Icon Icon--default"
55382
55795
  data-test="DesignSystem-Button--Icon"
55796
+ role="button"
55383
55797
  style="font-size: 16px; width: 16px;"
55384
55798
  >
55385
55799
  arrow_forward_round
@@ -55961,6 +56375,7 @@ exports[`DateRangePicker component
55961
56375
  <i
55962
56376
  class="material-icons material-icons-round Icon Icon--default"
55963
56377
  data-test="DesignSystem-Button--Icon"
56378
+ role="button"
55964
56379
  style="font-size: 16px; width: 16px;"
55965
56380
  >
55966
56381
  arrow_back_round
@@ -55981,6 +56396,7 @@ exports[`DateRangePicker component
55981
56396
  </h5>
55982
56397
  <i
55983
56398
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
56399
+ role="button"
55984
56400
  style="font-size: 16px; width: 16px;"
55985
56401
  >
55986
56402
  keyboard_arrow_down_round
@@ -55997,6 +56413,7 @@ exports[`DateRangePicker component
55997
56413
  </h5>
55998
56414
  <i
55999
56415
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
56416
+ role="button"
56000
56417
  style="font-size: 16px; width: 16px;"
56001
56418
  >
56002
56419
  keyboard_arrow_down_round
@@ -56015,6 +56432,7 @@ exports[`DateRangePicker component
56015
56432
  <i
56016
56433
  class="material-icons material-icons-round Icon Icon--default"
56017
56434
  data-test="DesignSystem-Button--Icon"
56435
+ role="button"
56018
56436
  style="font-size: 16px; width: 16px;"
56019
56437
  >
56020
56438
  arrow_forward_round
@@ -56596,6 +57014,7 @@ exports[`DateRangePicker component
56596
57014
  <i
56597
57015
  class="material-icons material-icons-round Icon Icon--default"
56598
57016
  data-test="DesignSystem-Button--Icon"
57017
+ role="button"
56599
57018
  style="font-size: 16px; width: 16px;"
56600
57019
  >
56601
57020
  arrow_back_round
@@ -56616,6 +57035,7 @@ exports[`DateRangePicker component
56616
57035
  </h5>
56617
57036
  <i
56618
57037
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
57038
+ role="button"
56619
57039
  style="font-size: 16px; width: 16px;"
56620
57040
  >
56621
57041
  keyboard_arrow_down_round
@@ -56632,6 +57052,7 @@ exports[`DateRangePicker component
56632
57052
  </h5>
56633
57053
  <i
56634
57054
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
57055
+ role="button"
56635
57056
  style="font-size: 16px; width: 16px;"
56636
57057
  >
56637
57058
  keyboard_arrow_down_round
@@ -56650,6 +57071,7 @@ exports[`DateRangePicker component
56650
57071
  <i
56651
57072
  class="material-icons material-icons-round Icon Icon--default"
56652
57073
  data-test="DesignSystem-Button--Icon"
57074
+ role="button"
56653
57075
  style="font-size: 16px; width: 16px;"
56654
57076
  >
56655
57077
  arrow_forward_round
@@ -57231,6 +57653,7 @@ exports[`DateRangePicker component
57231
57653
  <i
57232
57654
  class="material-icons material-icons-round Icon Icon--default"
57233
57655
  data-test="DesignSystem-Button--Icon"
57656
+ role="button"
57234
57657
  style="font-size: 16px; width: 16px;"
57235
57658
  >
57236
57659
  arrow_back_round
@@ -57251,6 +57674,7 @@ exports[`DateRangePicker component
57251
57674
  </h5>
57252
57675
  <i
57253
57676
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
57677
+ role="button"
57254
57678
  style="font-size: 16px; width: 16px;"
57255
57679
  >
57256
57680
  keyboard_arrow_down_round
@@ -57267,6 +57691,7 @@ exports[`DateRangePicker component
57267
57691
  </h5>
57268
57692
  <i
57269
57693
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
57694
+ role="button"
57270
57695
  style="font-size: 16px; width: 16px;"
57271
57696
  >
57272
57697
  keyboard_arrow_down_round
@@ -57285,6 +57710,7 @@ exports[`DateRangePicker component
57285
57710
  <i
57286
57711
  class="material-icons material-icons-round Icon Icon--default"
57287
57712
  data-test="DesignSystem-Button--Icon"
57713
+ role="button"
57288
57714
  style="font-size: 16px; width: 16px;"
57289
57715
  >
57290
57716
  arrow_forward_round
@@ -57866,6 +58292,7 @@ exports[`DateRangePicker component
57866
58292
  <i
57867
58293
  class="material-icons material-icons-round Icon Icon--default"
57868
58294
  data-test="DesignSystem-Button--Icon"
58295
+ role="button"
57869
58296
  style="font-size: 16px; width: 16px;"
57870
58297
  >
57871
58298
  arrow_back_round
@@ -57886,6 +58313,7 @@ exports[`DateRangePicker component
57886
58313
  </h5>
57887
58314
  <i
57888
58315
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
58316
+ role="button"
57889
58317
  style="font-size: 16px; width: 16px;"
57890
58318
  >
57891
58319
  keyboard_arrow_down_round
@@ -57902,6 +58330,7 @@ exports[`DateRangePicker component
57902
58330
  </h5>
57903
58331
  <i
57904
58332
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
58333
+ role="button"
57905
58334
  style="font-size: 16px; width: 16px;"
57906
58335
  >
57907
58336
  keyboard_arrow_down_round
@@ -57920,6 +58349,7 @@ exports[`DateRangePicker component
57920
58349
  <i
57921
58350
  class="material-icons material-icons-round Icon Icon--default"
57922
58351
  data-test="DesignSystem-Button--Icon"
58352
+ role="button"
57923
58353
  style="font-size: 16px; width: 16px;"
57924
58354
  >
57925
58355
  arrow_forward_round
@@ -58501,6 +58931,7 @@ exports[`DateRangePicker component
58501
58931
  <i
58502
58932
  class="material-icons material-icons-round Icon Icon--default"
58503
58933
  data-test="DesignSystem-Button--Icon"
58934
+ role="button"
58504
58935
  style="font-size: 16px; width: 16px;"
58505
58936
  >
58506
58937
  arrow_back_round
@@ -58521,6 +58952,7 @@ exports[`DateRangePicker component
58521
58952
  </h5>
58522
58953
  <i
58523
58954
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
58955
+ role="button"
58524
58956
  style="font-size: 16px; width: 16px;"
58525
58957
  >
58526
58958
  keyboard_arrow_down_round
@@ -58537,6 +58969,7 @@ exports[`DateRangePicker component
58537
58969
  </h5>
58538
58970
  <i
58539
58971
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
58972
+ role="button"
58540
58973
  style="font-size: 16px; width: 16px;"
58541
58974
  >
58542
58975
  keyboard_arrow_down_round
@@ -58555,6 +58988,7 @@ exports[`DateRangePicker component
58555
58988
  <i
58556
58989
  class="material-icons material-icons-round Icon Icon--default"
58557
58990
  data-test="DesignSystem-Button--Icon"
58991
+ role="button"
58558
58992
  style="font-size: 16px; width: 16px;"
58559
58993
  >
58560
58994
  arrow_forward_round
@@ -59136,6 +59570,7 @@ exports[`DateRangePicker component
59136
59570
  <i
59137
59571
  class="material-icons material-icons-round Icon Icon--default"
59138
59572
  data-test="DesignSystem-Button--Icon"
59573
+ role="button"
59139
59574
  style="font-size: 16px; width: 16px;"
59140
59575
  >
59141
59576
  arrow_back_round
@@ -59156,6 +59591,7 @@ exports[`DateRangePicker component
59156
59591
  </h5>
59157
59592
  <i
59158
59593
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
59594
+ role="button"
59159
59595
  style="font-size: 16px; width: 16px;"
59160
59596
  >
59161
59597
  keyboard_arrow_down_round
@@ -59172,6 +59608,7 @@ exports[`DateRangePicker component
59172
59608
  </h5>
59173
59609
  <i
59174
59610
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
59611
+ role="button"
59175
59612
  style="font-size: 16px; width: 16px;"
59176
59613
  >
59177
59614
  keyboard_arrow_down_round
@@ -59190,6 +59627,7 @@ exports[`DateRangePicker component
59190
59627
  <i
59191
59628
  class="material-icons material-icons-round Icon Icon--default"
59192
59629
  data-test="DesignSystem-Button--Icon"
59630
+ role="button"
59193
59631
  style="font-size: 16px; width: 16px;"
59194
59632
  >
59195
59633
  arrow_forward_round
@@ -59771,6 +60209,7 @@ exports[`DateRangePicker component
59771
60209
  <i
59772
60210
  class="material-icons material-icons-round Icon Icon--default"
59773
60211
  data-test="DesignSystem-Button--Icon"
60212
+ role="button"
59774
60213
  style="font-size: 16px; width: 16px;"
59775
60214
  >
59776
60215
  arrow_back_round
@@ -59791,6 +60230,7 @@ exports[`DateRangePicker component
59791
60230
  </h5>
59792
60231
  <i
59793
60232
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
60233
+ role="button"
59794
60234
  style="font-size: 16px; width: 16px;"
59795
60235
  >
59796
60236
  keyboard_arrow_down_round
@@ -59807,6 +60247,7 @@ exports[`DateRangePicker component
59807
60247
  </h5>
59808
60248
  <i
59809
60249
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
60250
+ role="button"
59810
60251
  style="font-size: 16px; width: 16px;"
59811
60252
  >
59812
60253
  keyboard_arrow_down_round
@@ -59825,6 +60266,7 @@ exports[`DateRangePicker component
59825
60266
  <i
59826
60267
  class="material-icons material-icons-round Icon Icon--default"
59827
60268
  data-test="DesignSystem-Button--Icon"
60269
+ role="button"
59828
60270
  style="font-size: 16px; width: 16px;"
59829
60271
  >
59830
60272
  arrow_forward_round
@@ -60406,6 +60848,7 @@ exports[`DateRangePicker component
60406
60848
  <i
60407
60849
  class="material-icons material-icons-round Icon Icon--default"
60408
60850
  data-test="DesignSystem-Button--Icon"
60851
+ role="button"
60409
60852
  style="font-size: 16px; width: 16px;"
60410
60853
  >
60411
60854
  arrow_back_round
@@ -60426,6 +60869,7 @@ exports[`DateRangePicker component
60426
60869
  </h5>
60427
60870
  <i
60428
60871
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
60872
+ role="button"
60429
60873
  style="font-size: 16px; width: 16px;"
60430
60874
  >
60431
60875
  keyboard_arrow_down_round
@@ -60442,6 +60886,7 @@ exports[`DateRangePicker component
60442
60886
  </h5>
60443
60887
  <i
60444
60888
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
60889
+ role="button"
60445
60890
  style="font-size: 16px; width: 16px;"
60446
60891
  >
60447
60892
  keyboard_arrow_down_round
@@ -60460,6 +60905,7 @@ exports[`DateRangePicker component
60460
60905
  <i
60461
60906
  class="material-icons material-icons-round Icon Icon--default"
60462
60907
  data-test="DesignSystem-Button--Icon"
60908
+ role="button"
60463
60909
  style="font-size: 16px; width: 16px;"
60464
60910
  >
60465
60911
  arrow_forward_round
@@ -61041,6 +61487,7 @@ exports[`DateRangePicker component
61041
61487
  <i
61042
61488
  class="material-icons material-icons-round Icon Icon--default"
61043
61489
  data-test="DesignSystem-Button--Icon"
61490
+ role="button"
61044
61491
  style="font-size: 16px; width: 16px;"
61045
61492
  >
61046
61493
  arrow_back_round
@@ -61061,6 +61508,7 @@ exports[`DateRangePicker component
61061
61508
  </h5>
61062
61509
  <i
61063
61510
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
61511
+ role="button"
61064
61512
  style="font-size: 16px; width: 16px;"
61065
61513
  >
61066
61514
  keyboard_arrow_down_round
@@ -61077,6 +61525,7 @@ exports[`DateRangePicker component
61077
61525
  </h5>
61078
61526
  <i
61079
61527
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
61528
+ role="button"
61080
61529
  style="font-size: 16px; width: 16px;"
61081
61530
  >
61082
61531
  keyboard_arrow_down_round
@@ -61095,6 +61544,7 @@ exports[`DateRangePicker component
61095
61544
  <i
61096
61545
  class="material-icons material-icons-round Icon Icon--default"
61097
61546
  data-test="DesignSystem-Button--Icon"
61547
+ role="button"
61098
61548
  style="font-size: 16px; width: 16px;"
61099
61549
  >
61100
61550
  arrow_forward_round
@@ -61676,6 +62126,7 @@ exports[`DateRangePicker component
61676
62126
  <i
61677
62127
  class="material-icons material-icons-round Icon Icon--default"
61678
62128
  data-test="DesignSystem-Button--Icon"
62129
+ role="button"
61679
62130
  style="font-size: 16px; width: 16px;"
61680
62131
  >
61681
62132
  arrow_back_round
@@ -61696,6 +62147,7 @@ exports[`DateRangePicker component
61696
62147
  </h5>
61697
62148
  <i
61698
62149
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
62150
+ role="button"
61699
62151
  style="font-size: 16px; width: 16px;"
61700
62152
  >
61701
62153
  keyboard_arrow_down_round
@@ -61712,6 +62164,7 @@ exports[`DateRangePicker component
61712
62164
  </h5>
61713
62165
  <i
61714
62166
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
62167
+ role="button"
61715
62168
  style="font-size: 16px; width: 16px;"
61716
62169
  >
61717
62170
  keyboard_arrow_down_round
@@ -61730,6 +62183,7 @@ exports[`DateRangePicker component
61730
62183
  <i
61731
62184
  class="material-icons material-icons-round Icon Icon--default"
61732
62185
  data-test="DesignSystem-Button--Icon"
62186
+ role="button"
61733
62187
  style="font-size: 16px; width: 16px;"
61734
62188
  >
61735
62189
  arrow_forward_round
@@ -62311,6 +62765,7 @@ exports[`DateRangePicker component
62311
62765
  <i
62312
62766
  class="material-icons material-icons-round Icon Icon--default"
62313
62767
  data-test="DesignSystem-Button--Icon"
62768
+ role="button"
62314
62769
  style="font-size: 16px; width: 16px;"
62315
62770
  >
62316
62771
  arrow_back_round
@@ -62331,6 +62786,7 @@ exports[`DateRangePicker component
62331
62786
  </h5>
62332
62787
  <i
62333
62788
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
62789
+ role="button"
62334
62790
  style="font-size: 16px; width: 16px;"
62335
62791
  >
62336
62792
  keyboard_arrow_down_round
@@ -62347,6 +62803,7 @@ exports[`DateRangePicker component
62347
62803
  </h5>
62348
62804
  <i
62349
62805
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
62806
+ role="button"
62350
62807
  style="font-size: 16px; width: 16px;"
62351
62808
  >
62352
62809
  keyboard_arrow_down_round
@@ -62365,6 +62822,7 @@ exports[`DateRangePicker component
62365
62822
  <i
62366
62823
  class="material-icons material-icons-round Icon Icon--default"
62367
62824
  data-test="DesignSystem-Button--Icon"
62825
+ role="button"
62368
62826
  style="font-size: 16px; width: 16px;"
62369
62827
  >
62370
62828
  arrow_forward_round
@@ -62946,6 +63404,7 @@ exports[`DateRangePicker component
62946
63404
  <i
62947
63405
  class="material-icons material-icons-round Icon Icon--default"
62948
63406
  data-test="DesignSystem-Button--Icon"
63407
+ role="button"
62949
63408
  style="font-size: 16px; width: 16px;"
62950
63409
  >
62951
63410
  arrow_back_round
@@ -62966,6 +63425,7 @@ exports[`DateRangePicker component
62966
63425
  </h5>
62967
63426
  <i
62968
63427
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
63428
+ role="button"
62969
63429
  style="font-size: 16px; width: 16px;"
62970
63430
  >
62971
63431
  keyboard_arrow_down_round
@@ -62982,6 +63442,7 @@ exports[`DateRangePicker component
62982
63442
  </h5>
62983
63443
  <i
62984
63444
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
63445
+ role="button"
62985
63446
  style="font-size: 16px; width: 16px;"
62986
63447
  >
62987
63448
  keyboard_arrow_down_round
@@ -63000,6 +63461,7 @@ exports[`DateRangePicker component
63000
63461
  <i
63001
63462
  class="material-icons material-icons-round Icon Icon--default"
63002
63463
  data-test="DesignSystem-Button--Icon"
63464
+ role="button"
63003
63465
  style="font-size: 16px; width: 16px;"
63004
63466
  >
63005
63467
  arrow_forward_round
@@ -63581,6 +64043,7 @@ exports[`DateRangePicker component
63581
64043
  <i
63582
64044
  class="material-icons material-icons-round Icon Icon--default"
63583
64045
  data-test="DesignSystem-Button--Icon"
64046
+ role="button"
63584
64047
  style="font-size: 16px; width: 16px;"
63585
64048
  >
63586
64049
  arrow_back_round
@@ -63601,6 +64064,7 @@ exports[`DateRangePicker component
63601
64064
  </h5>
63602
64065
  <i
63603
64066
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64067
+ role="button"
63604
64068
  style="font-size: 16px; width: 16px;"
63605
64069
  >
63606
64070
  keyboard_arrow_down_round
@@ -63617,6 +64081,7 @@ exports[`DateRangePicker component
63617
64081
  </h5>
63618
64082
  <i
63619
64083
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64084
+ role="button"
63620
64085
  style="font-size: 16px; width: 16px;"
63621
64086
  >
63622
64087
  keyboard_arrow_down_round
@@ -63635,6 +64100,7 @@ exports[`DateRangePicker component
63635
64100
  <i
63636
64101
  class="material-icons material-icons-round Icon Icon--default"
63637
64102
  data-test="DesignSystem-Button--Icon"
64103
+ role="button"
63638
64104
  style="font-size: 16px; width: 16px;"
63639
64105
  >
63640
64106
  arrow_forward_round
@@ -64216,6 +64682,7 @@ exports[`DateRangePicker component
64216
64682
  <i
64217
64683
  class="material-icons material-icons-round Icon Icon--default"
64218
64684
  data-test="DesignSystem-Button--Icon"
64685
+ role="button"
64219
64686
  style="font-size: 16px; width: 16px;"
64220
64687
  >
64221
64688
  arrow_back_round
@@ -64234,6 +64701,7 @@ exports[`DateRangePicker component
64234
64701
  />
64235
64702
  <i
64236
64703
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64704
+ role="button"
64237
64705
  style="font-size: 16px; width: 16px;"
64238
64706
  >
64239
64707
  keyboard_arrow_down_round
@@ -64250,6 +64718,7 @@ exports[`DateRangePicker component
64250
64718
  </h5>
64251
64719
  <i
64252
64720
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64721
+ role="button"
64253
64722
  style="font-size: 16px; width: 16px;"
64254
64723
  >
64255
64724
  keyboard_arrow_down_round
@@ -64268,6 +64737,7 @@ exports[`DateRangePicker component
64268
64737
  <i
64269
64738
  class="material-icons material-icons-round Icon Icon--default"
64270
64739
  data-test="DesignSystem-Button--Icon"
64740
+ role="button"
64271
64741
  style="font-size: 16px; width: 16px;"
64272
64742
  >
64273
64743
  arrow_forward_round
@@ -64362,6 +64832,7 @@ exports[`DateRangePicker component
64362
64832
  <i
64363
64833
  class="material-icons material-icons-round Icon Icon--default"
64364
64834
  data-test="DesignSystem-Button--Icon"
64835
+ role="button"
64365
64836
  style="font-size: 16px; width: 16px;"
64366
64837
  >
64367
64838
  arrow_back_round
@@ -64380,6 +64851,7 @@ exports[`DateRangePicker component
64380
64851
  />
64381
64852
  <i
64382
64853
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64854
+ role="button"
64383
64855
  style="font-size: 16px; width: 16px;"
64384
64856
  >
64385
64857
  keyboard_arrow_down_round
@@ -64396,6 +64868,7 @@ exports[`DateRangePicker component
64396
64868
  </h5>
64397
64869
  <i
64398
64870
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
64871
+ role="button"
64399
64872
  style="font-size: 16px; width: 16px;"
64400
64873
  >
64401
64874
  keyboard_arrow_down_round
@@ -64414,6 +64887,7 @@ exports[`DateRangePicker component
64414
64887
  <i
64415
64888
  class="material-icons material-icons-round Icon Icon--default"
64416
64889
  data-test="DesignSystem-Button--Icon"
64890
+ role="button"
64417
64891
  style="font-size: 16px; width: 16px;"
64418
64892
  >
64419
64893
  arrow_forward_round
@@ -64508,6 +64982,7 @@ exports[`DateRangePicker component
64508
64982
  <i
64509
64983
  class="material-icons material-icons-round Icon Icon--default"
64510
64984
  data-test="DesignSystem-Button--Icon"
64985
+ role="button"
64511
64986
  style="font-size: 16px; width: 16px;"
64512
64987
  >
64513
64988
  arrow_back_round
@@ -64526,6 +65001,7 @@ exports[`DateRangePicker component
64526
65001
  />
64527
65002
  <i
64528
65003
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65004
+ role="button"
64529
65005
  style="font-size: 16px; width: 16px;"
64530
65006
  >
64531
65007
  keyboard_arrow_down_round
@@ -64542,6 +65018,7 @@ exports[`DateRangePicker component
64542
65018
  </h5>
64543
65019
  <i
64544
65020
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65021
+ role="button"
64545
65022
  style="font-size: 16px; width: 16px;"
64546
65023
  >
64547
65024
  keyboard_arrow_down_round
@@ -64560,6 +65037,7 @@ exports[`DateRangePicker component
64560
65037
  <i
64561
65038
  class="material-icons material-icons-round Icon Icon--default"
64562
65039
  data-test="DesignSystem-Button--Icon"
65040
+ role="button"
64563
65041
  style="font-size: 16px; width: 16px;"
64564
65042
  >
64565
65043
  arrow_forward_round
@@ -64654,6 +65132,7 @@ exports[`DateRangePicker component
64654
65132
  <i
64655
65133
  class="material-icons material-icons-round Icon Icon--default"
64656
65134
  data-test="DesignSystem-Button--Icon"
65135
+ role="button"
64657
65136
  style="font-size: 16px; width: 16px;"
64658
65137
  >
64659
65138
  arrow_back_round
@@ -64672,6 +65151,7 @@ exports[`DateRangePicker component
64672
65151
  />
64673
65152
  <i
64674
65153
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65154
+ role="button"
64675
65155
  style="font-size: 16px; width: 16px;"
64676
65156
  >
64677
65157
  keyboard_arrow_down_round
@@ -64688,6 +65168,7 @@ exports[`DateRangePicker component
64688
65168
  </h5>
64689
65169
  <i
64690
65170
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65171
+ role="button"
64691
65172
  style="font-size: 16px; width: 16px;"
64692
65173
  >
64693
65174
  keyboard_arrow_down_round
@@ -64706,6 +65187,7 @@ exports[`DateRangePicker component
64706
65187
  <i
64707
65188
  class="material-icons material-icons-round Icon Icon--default"
64708
65189
  data-test="DesignSystem-Button--Icon"
65190
+ role="button"
64709
65191
  style="font-size: 16px; width: 16px;"
64710
65192
  >
64711
65193
  arrow_forward_round
@@ -64800,6 +65282,7 @@ exports[`DateRangePicker component
64800
65282
  <i
64801
65283
  class="material-icons material-icons-round Icon Icon--default"
64802
65284
  data-test="DesignSystem-Button--Icon"
65285
+ role="button"
64803
65286
  style="font-size: 16px; width: 16px;"
64804
65287
  >
64805
65288
  arrow_back_round
@@ -64818,6 +65301,7 @@ exports[`DateRangePicker component
64818
65301
  />
64819
65302
  <i
64820
65303
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65304
+ role="button"
64821
65305
  style="font-size: 16px; width: 16px;"
64822
65306
  >
64823
65307
  keyboard_arrow_down_round
@@ -64834,6 +65318,7 @@ exports[`DateRangePicker component
64834
65318
  </h5>
64835
65319
  <i
64836
65320
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65321
+ role="button"
64837
65322
  style="font-size: 16px; width: 16px;"
64838
65323
  >
64839
65324
  keyboard_arrow_down_round
@@ -64852,6 +65337,7 @@ exports[`DateRangePicker component
64852
65337
  <i
64853
65338
  class="material-icons material-icons-round Icon Icon--default"
64854
65339
  data-test="DesignSystem-Button--Icon"
65340
+ role="button"
64855
65341
  style="font-size: 16px; width: 16px;"
64856
65342
  >
64857
65343
  arrow_forward_round
@@ -64946,6 +65432,7 @@ exports[`DateRangePicker component
64946
65432
  <i
64947
65433
  class="material-icons material-icons-round Icon Icon--default"
64948
65434
  data-test="DesignSystem-Button--Icon"
65435
+ role="button"
64949
65436
  style="font-size: 16px; width: 16px;"
64950
65437
  >
64951
65438
  arrow_back_round
@@ -64964,6 +65451,7 @@ exports[`DateRangePicker component
64964
65451
  />
64965
65452
  <i
64966
65453
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65454
+ role="button"
64967
65455
  style="font-size: 16px; width: 16px;"
64968
65456
  >
64969
65457
  keyboard_arrow_down_round
@@ -64980,6 +65468,7 @@ exports[`DateRangePicker component
64980
65468
  </h5>
64981
65469
  <i
64982
65470
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65471
+ role="button"
64983
65472
  style="font-size: 16px; width: 16px;"
64984
65473
  >
64985
65474
  keyboard_arrow_down_round
@@ -64998,6 +65487,7 @@ exports[`DateRangePicker component
64998
65487
  <i
64999
65488
  class="material-icons material-icons-round Icon Icon--default"
65000
65489
  data-test="DesignSystem-Button--Icon"
65490
+ role="button"
65001
65491
  style="font-size: 16px; width: 16px;"
65002
65492
  >
65003
65493
  arrow_forward_round
@@ -65092,6 +65582,7 @@ exports[`DateRangePicker component
65092
65582
  <i
65093
65583
  class="material-icons material-icons-round Icon Icon--default"
65094
65584
  data-test="DesignSystem-Button--Icon"
65585
+ role="button"
65095
65586
  style="font-size: 16px; width: 16px;"
65096
65587
  >
65097
65588
  arrow_back_round
@@ -65110,6 +65601,7 @@ exports[`DateRangePicker component
65110
65601
  />
65111
65602
  <i
65112
65603
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65604
+ role="button"
65113
65605
  style="font-size: 16px; width: 16px;"
65114
65606
  >
65115
65607
  keyboard_arrow_down_round
@@ -65126,6 +65618,7 @@ exports[`DateRangePicker component
65126
65618
  </h5>
65127
65619
  <i
65128
65620
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65621
+ role="button"
65129
65622
  style="font-size: 16px; width: 16px;"
65130
65623
  >
65131
65624
  keyboard_arrow_down_round
@@ -65144,6 +65637,7 @@ exports[`DateRangePicker component
65144
65637
  <i
65145
65638
  class="material-icons material-icons-round Icon Icon--default"
65146
65639
  data-test="DesignSystem-Button--Icon"
65640
+ role="button"
65147
65641
  style="font-size: 16px; width: 16px;"
65148
65642
  >
65149
65643
  arrow_forward_round
@@ -65238,6 +65732,7 @@ exports[`DateRangePicker component
65238
65732
  <i
65239
65733
  class="material-icons material-icons-round Icon Icon--default"
65240
65734
  data-test="DesignSystem-Button--Icon"
65735
+ role="button"
65241
65736
  style="font-size: 16px; width: 16px;"
65242
65737
  >
65243
65738
  arrow_back_round
@@ -65256,6 +65751,7 @@ exports[`DateRangePicker component
65256
65751
  />
65257
65752
  <i
65258
65753
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65754
+ role="button"
65259
65755
  style="font-size: 16px; width: 16px;"
65260
65756
  >
65261
65757
  keyboard_arrow_down_round
@@ -65272,6 +65768,7 @@ exports[`DateRangePicker component
65272
65768
  </h5>
65273
65769
  <i
65274
65770
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65771
+ role="button"
65275
65772
  style="font-size: 16px; width: 16px;"
65276
65773
  >
65277
65774
  keyboard_arrow_down_round
@@ -65290,6 +65787,7 @@ exports[`DateRangePicker component
65290
65787
  <i
65291
65788
  class="material-icons material-icons-round Icon Icon--default"
65292
65789
  data-test="DesignSystem-Button--Icon"
65790
+ role="button"
65293
65791
  style="font-size: 16px; width: 16px;"
65294
65792
  >
65295
65793
  arrow_forward_round
@@ -65384,6 +65882,7 @@ exports[`DateRangePicker component
65384
65882
  <i
65385
65883
  class="material-icons material-icons-round Icon Icon--default"
65386
65884
  data-test="DesignSystem-Button--Icon"
65885
+ role="button"
65387
65886
  style="font-size: 16px; width: 16px;"
65388
65887
  >
65389
65888
  arrow_back_round
@@ -65402,6 +65901,7 @@ exports[`DateRangePicker component
65402
65901
  />
65403
65902
  <i
65404
65903
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65904
+ role="button"
65405
65905
  style="font-size: 16px; width: 16px;"
65406
65906
  >
65407
65907
  keyboard_arrow_down_round
@@ -65418,6 +65918,7 @@ exports[`DateRangePicker component
65418
65918
  </h5>
65419
65919
  <i
65420
65920
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
65921
+ role="button"
65421
65922
  style="font-size: 16px; width: 16px;"
65422
65923
  >
65423
65924
  keyboard_arrow_down_round
@@ -65436,6 +65937,7 @@ exports[`DateRangePicker component
65436
65937
  <i
65437
65938
  class="material-icons material-icons-round Icon Icon--default"
65438
65939
  data-test="DesignSystem-Button--Icon"
65940
+ role="button"
65439
65941
  style="font-size: 16px; width: 16px;"
65440
65942
  >
65441
65943
  arrow_forward_round
@@ -65530,6 +66032,7 @@ exports[`DateRangePicker component
65530
66032
  <i
65531
66033
  class="material-icons material-icons-round Icon Icon--default"
65532
66034
  data-test="DesignSystem-Button--Icon"
66035
+ role="button"
65533
66036
  style="font-size: 16px; width: 16px;"
65534
66037
  >
65535
66038
  arrow_back_round
@@ -65548,6 +66051,7 @@ exports[`DateRangePicker component
65548
66051
  />
65549
66052
  <i
65550
66053
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66054
+ role="button"
65551
66055
  style="font-size: 16px; width: 16px;"
65552
66056
  >
65553
66057
  keyboard_arrow_down_round
@@ -65564,6 +66068,7 @@ exports[`DateRangePicker component
65564
66068
  </h5>
65565
66069
  <i
65566
66070
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66071
+ role="button"
65567
66072
  style="font-size: 16px; width: 16px;"
65568
66073
  >
65569
66074
  keyboard_arrow_down_round
@@ -65582,6 +66087,7 @@ exports[`DateRangePicker component
65582
66087
  <i
65583
66088
  class="material-icons material-icons-round Icon Icon--default"
65584
66089
  data-test="DesignSystem-Button--Icon"
66090
+ role="button"
65585
66091
  style="font-size: 16px; width: 16px;"
65586
66092
  >
65587
66093
  arrow_forward_round
@@ -65676,6 +66182,7 @@ exports[`DateRangePicker component
65676
66182
  <i
65677
66183
  class="material-icons material-icons-round Icon Icon--default"
65678
66184
  data-test="DesignSystem-Button--Icon"
66185
+ role="button"
65679
66186
  style="font-size: 16px; width: 16px;"
65680
66187
  >
65681
66188
  arrow_back_round
@@ -65694,6 +66201,7 @@ exports[`DateRangePicker component
65694
66201
  />
65695
66202
  <i
65696
66203
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66204
+ role="button"
65697
66205
  style="font-size: 16px; width: 16px;"
65698
66206
  >
65699
66207
  keyboard_arrow_down_round
@@ -65710,6 +66218,7 @@ exports[`DateRangePicker component
65710
66218
  </h5>
65711
66219
  <i
65712
66220
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66221
+ role="button"
65713
66222
  style="font-size: 16px; width: 16px;"
65714
66223
  >
65715
66224
  keyboard_arrow_down_round
@@ -65728,6 +66237,7 @@ exports[`DateRangePicker component
65728
66237
  <i
65729
66238
  class="material-icons material-icons-round Icon Icon--default"
65730
66239
  data-test="DesignSystem-Button--Icon"
66240
+ role="button"
65731
66241
  style="font-size: 16px; width: 16px;"
65732
66242
  >
65733
66243
  arrow_forward_round
@@ -65822,6 +66332,7 @@ exports[`DateRangePicker component
65822
66332
  <i
65823
66333
  class="material-icons material-icons-round Icon Icon--default"
65824
66334
  data-test="DesignSystem-Button--Icon"
66335
+ role="button"
65825
66336
  style="font-size: 16px; width: 16px;"
65826
66337
  >
65827
66338
  arrow_back_round
@@ -65840,6 +66351,7 @@ exports[`DateRangePicker component
65840
66351
  />
65841
66352
  <i
65842
66353
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66354
+ role="button"
65843
66355
  style="font-size: 16px; width: 16px;"
65844
66356
  >
65845
66357
  keyboard_arrow_down_round
@@ -65856,6 +66368,7 @@ exports[`DateRangePicker component
65856
66368
  </h5>
65857
66369
  <i
65858
66370
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66371
+ role="button"
65859
66372
  style="font-size: 16px; width: 16px;"
65860
66373
  >
65861
66374
  keyboard_arrow_down_round
@@ -65874,6 +66387,7 @@ exports[`DateRangePicker component
65874
66387
  <i
65875
66388
  class="material-icons material-icons-round Icon Icon--default"
65876
66389
  data-test="DesignSystem-Button--Icon"
66390
+ role="button"
65877
66391
  style="font-size: 16px; width: 16px;"
65878
66392
  >
65879
66393
  arrow_forward_round
@@ -65968,6 +66482,7 @@ exports[`DateRangePicker component
65968
66482
  <i
65969
66483
  class="material-icons material-icons-round Icon Icon--default"
65970
66484
  data-test="DesignSystem-Button--Icon"
66485
+ role="button"
65971
66486
  style="font-size: 16px; width: 16px;"
65972
66487
  >
65973
66488
  arrow_back_round
@@ -65986,6 +66501,7 @@ exports[`DateRangePicker component
65986
66501
  />
65987
66502
  <i
65988
66503
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66504
+ role="button"
65989
66505
  style="font-size: 16px; width: 16px;"
65990
66506
  >
65991
66507
  keyboard_arrow_down_round
@@ -66002,6 +66518,7 @@ exports[`DateRangePicker component
66002
66518
  </h5>
66003
66519
  <i
66004
66520
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66521
+ role="button"
66005
66522
  style="font-size: 16px; width: 16px;"
66006
66523
  >
66007
66524
  keyboard_arrow_down_round
@@ -66020,6 +66537,7 @@ exports[`DateRangePicker component
66020
66537
  <i
66021
66538
  class="material-icons material-icons-round Icon Icon--default"
66022
66539
  data-test="DesignSystem-Button--Icon"
66540
+ role="button"
66023
66541
  style="font-size: 16px; width: 16px;"
66024
66542
  >
66025
66543
  arrow_forward_round
@@ -66114,6 +66632,7 @@ exports[`DateRangePicker component
66114
66632
  <i
66115
66633
  class="material-icons material-icons-round Icon Icon--default"
66116
66634
  data-test="DesignSystem-Button--Icon"
66635
+ role="button"
66117
66636
  style="font-size: 16px; width: 16px;"
66118
66637
  >
66119
66638
  arrow_back_round
@@ -66132,6 +66651,7 @@ exports[`DateRangePicker component
66132
66651
  />
66133
66652
  <i
66134
66653
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66654
+ role="button"
66135
66655
  style="font-size: 16px; width: 16px;"
66136
66656
  >
66137
66657
  keyboard_arrow_down_round
@@ -66148,6 +66668,7 @@ exports[`DateRangePicker component
66148
66668
  </h5>
66149
66669
  <i
66150
66670
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66671
+ role="button"
66151
66672
  style="font-size: 16px; width: 16px;"
66152
66673
  >
66153
66674
  keyboard_arrow_down_round
@@ -66166,6 +66687,7 @@ exports[`DateRangePicker component
66166
66687
  <i
66167
66688
  class="material-icons material-icons-round Icon Icon--default"
66168
66689
  data-test="DesignSystem-Button--Icon"
66690
+ role="button"
66169
66691
  style="font-size: 16px; width: 16px;"
66170
66692
  >
66171
66693
  arrow_forward_round
@@ -66260,6 +66782,7 @@ exports[`DateRangePicker component
66260
66782
  <i
66261
66783
  class="material-icons material-icons-round Icon Icon--default"
66262
66784
  data-test="DesignSystem-Button--Icon"
66785
+ role="button"
66263
66786
  style="font-size: 16px; width: 16px;"
66264
66787
  >
66265
66788
  arrow_back_round
@@ -66278,6 +66801,7 @@ exports[`DateRangePicker component
66278
66801
  />
66279
66802
  <i
66280
66803
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66804
+ role="button"
66281
66805
  style="font-size: 16px; width: 16px;"
66282
66806
  >
66283
66807
  keyboard_arrow_down_round
@@ -66294,6 +66818,7 @@ exports[`DateRangePicker component
66294
66818
  </h5>
66295
66819
  <i
66296
66820
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66821
+ role="button"
66297
66822
  style="font-size: 16px; width: 16px;"
66298
66823
  >
66299
66824
  keyboard_arrow_down_round
@@ -66312,6 +66837,7 @@ exports[`DateRangePicker component
66312
66837
  <i
66313
66838
  class="material-icons material-icons-round Icon Icon--default"
66314
66839
  data-test="DesignSystem-Button--Icon"
66840
+ role="button"
66315
66841
  style="font-size: 16px; width: 16px;"
66316
66842
  >
66317
66843
  arrow_forward_round
@@ -66406,6 +66932,7 @@ exports[`DateRangePicker component
66406
66932
  <i
66407
66933
  class="material-icons material-icons-round Icon Icon--default"
66408
66934
  data-test="DesignSystem-Button--Icon"
66935
+ role="button"
66409
66936
  style="font-size: 16px; width: 16px;"
66410
66937
  >
66411
66938
  arrow_back_round
@@ -66424,6 +66951,7 @@ exports[`DateRangePicker component
66424
66951
  />
66425
66952
  <i
66426
66953
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66954
+ role="button"
66427
66955
  style="font-size: 16px; width: 16px;"
66428
66956
  >
66429
66957
  keyboard_arrow_down_round
@@ -66440,6 +66968,7 @@ exports[`DateRangePicker component
66440
66968
  </h5>
66441
66969
  <i
66442
66970
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
66971
+ role="button"
66443
66972
  style="font-size: 16px; width: 16px;"
66444
66973
  >
66445
66974
  keyboard_arrow_down_round
@@ -66458,6 +66987,7 @@ exports[`DateRangePicker component
66458
66987
  <i
66459
66988
  class="material-icons material-icons-round Icon Icon--default"
66460
66989
  data-test="DesignSystem-Button--Icon"
66990
+ role="button"
66461
66991
  style="font-size: 16px; width: 16px;"
66462
66992
  >
66463
66993
  arrow_forward_round
@@ -66552,6 +67082,7 @@ exports[`DateRangePicker component
66552
67082
  <i
66553
67083
  class="material-icons material-icons-round Icon Icon--default"
66554
67084
  data-test="DesignSystem-Button--Icon"
67085
+ role="button"
66555
67086
  style="font-size: 16px; width: 16px;"
66556
67087
  >
66557
67088
  arrow_back_round
@@ -66572,6 +67103,7 @@ exports[`DateRangePicker component
66572
67103
  </h5>
66573
67104
  <i
66574
67105
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
67106
+ role="button"
66575
67107
  style="font-size: 16px; width: 16px;"
66576
67108
  >
66577
67109
  keyboard_arrow_down_round
@@ -66588,6 +67120,7 @@ exports[`DateRangePicker component
66588
67120
  </h5>
66589
67121
  <i
66590
67122
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
67123
+ role="button"
66591
67124
  style="font-size: 16px; width: 16px;"
66592
67125
  >
66593
67126
  keyboard_arrow_down_round
@@ -66606,6 +67139,7 @@ exports[`DateRangePicker component
66606
67139
  <i
66607
67140
  class="material-icons material-icons-round Icon Icon--default"
66608
67141
  data-test="DesignSystem-Button--Icon"
67142
+ role="button"
66609
67143
  style="font-size: 16px; width: 16px;"
66610
67144
  >
66611
67145
  arrow_forward_round
@@ -67187,6 +67721,7 @@ exports[`DateRangePicker component
67187
67721
  <i
67188
67722
  class="material-icons material-icons-round Icon Icon--default"
67189
67723
  data-test="DesignSystem-Button--Icon"
67724
+ role="button"
67190
67725
  style="font-size: 16px; width: 16px;"
67191
67726
  >
67192
67727
  arrow_back_round
@@ -67207,6 +67742,7 @@ exports[`DateRangePicker component
67207
67742
  </h5>
67208
67743
  <i
67209
67744
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
67745
+ role="button"
67210
67746
  style="font-size: 16px; width: 16px;"
67211
67747
  >
67212
67748
  keyboard_arrow_down_round
@@ -67223,6 +67759,7 @@ exports[`DateRangePicker component
67223
67759
  </h5>
67224
67760
  <i
67225
67761
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
67762
+ role="button"
67226
67763
  style="font-size: 16px; width: 16px;"
67227
67764
  >
67228
67765
  keyboard_arrow_down_round
@@ -67241,6 +67778,7 @@ exports[`DateRangePicker component
67241
67778
  <i
67242
67779
  class="material-icons material-icons-round Icon Icon--default"
67243
67780
  data-test="DesignSystem-Button--Icon"
67781
+ role="button"
67244
67782
  style="font-size: 16px; width: 16px;"
67245
67783
  >
67246
67784
  arrow_forward_round
@@ -67822,6 +68360,7 @@ exports[`DateRangePicker component
67822
68360
  <i
67823
68361
  class="material-icons material-icons-round Icon Icon--default"
67824
68362
  data-test="DesignSystem-Button--Icon"
68363
+ role="button"
67825
68364
  style="font-size: 16px; width: 16px;"
67826
68365
  >
67827
68366
  arrow_back_round
@@ -67842,6 +68381,7 @@ exports[`DateRangePicker component
67842
68381
  </h5>
67843
68382
  <i
67844
68383
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
68384
+ role="button"
67845
68385
  style="font-size: 16px; width: 16px;"
67846
68386
  >
67847
68387
  keyboard_arrow_down_round
@@ -67858,6 +68398,7 @@ exports[`DateRangePicker component
67858
68398
  </h5>
67859
68399
  <i
67860
68400
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
68401
+ role="button"
67861
68402
  style="font-size: 16px; width: 16px;"
67862
68403
  >
67863
68404
  keyboard_arrow_down_round
@@ -67876,6 +68417,7 @@ exports[`DateRangePicker component
67876
68417
  <i
67877
68418
  class="material-icons material-icons-round Icon Icon--default"
67878
68419
  data-test="DesignSystem-Button--Icon"
68420
+ role="button"
67879
68421
  style="font-size: 16px; width: 16px;"
67880
68422
  >
67881
68423
  arrow_forward_round
@@ -68457,6 +68999,7 @@ exports[`DateRangePicker component
68457
68999
  <i
68458
69000
  class="material-icons material-icons-round Icon Icon--default"
68459
69001
  data-test="DesignSystem-Button--Icon"
69002
+ role="button"
68460
69003
  style="font-size: 16px; width: 16px;"
68461
69004
  >
68462
69005
  arrow_back_round
@@ -68477,6 +69020,7 @@ exports[`DateRangePicker component
68477
69020
  </h5>
68478
69021
  <i
68479
69022
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
69023
+ role="button"
68480
69024
  style="font-size: 16px; width: 16px;"
68481
69025
  >
68482
69026
  keyboard_arrow_down_round
@@ -68493,6 +69037,7 @@ exports[`DateRangePicker component
68493
69037
  </h5>
68494
69038
  <i
68495
69039
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
69040
+ role="button"
68496
69041
  style="font-size: 16px; width: 16px;"
68497
69042
  >
68498
69043
  keyboard_arrow_down_round
@@ -68511,6 +69056,7 @@ exports[`DateRangePicker component
68511
69056
  <i
68512
69057
  class="material-icons material-icons-round Icon Icon--default"
68513
69058
  data-test="DesignSystem-Button--Icon"
69059
+ role="button"
68514
69060
  style="font-size: 16px; width: 16px;"
68515
69061
  >
68516
69062
  arrow_forward_round
@@ -69092,6 +69638,7 @@ exports[`DateRangePicker component
69092
69638
  <i
69093
69639
  class="material-icons material-icons-round Icon Icon--default"
69094
69640
  data-test="DesignSystem-Button--Icon"
69641
+ role="button"
69095
69642
  style="font-size: 16px; width: 16px;"
69096
69643
  >
69097
69644
  arrow_back_round
@@ -69112,6 +69659,7 @@ exports[`DateRangePicker component
69112
69659
  </h5>
69113
69660
  <i
69114
69661
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
69662
+ role="button"
69115
69663
  style="font-size: 16px; width: 16px;"
69116
69664
  >
69117
69665
  keyboard_arrow_down_round
@@ -69128,6 +69676,7 @@ exports[`DateRangePicker component
69128
69676
  </h5>
69129
69677
  <i
69130
69678
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
69679
+ role="button"
69131
69680
  style="font-size: 16px; width: 16px;"
69132
69681
  >
69133
69682
  keyboard_arrow_down_round
@@ -69146,6 +69695,7 @@ exports[`DateRangePicker component
69146
69695
  <i
69147
69696
  class="material-icons material-icons-round Icon Icon--default"
69148
69697
  data-test="DesignSystem-Button--Icon"
69698
+ role="button"
69149
69699
  style="font-size: 16px; width: 16px;"
69150
69700
  >
69151
69701
  arrow_forward_round
@@ -69727,6 +70277,7 @@ exports[`DateRangePicker component
69727
70277
  <i
69728
70278
  class="material-icons material-icons-round Icon Icon--default"
69729
70279
  data-test="DesignSystem-Button--Icon"
70280
+ role="button"
69730
70281
  style="font-size: 16px; width: 16px;"
69731
70282
  >
69732
70283
  arrow_back_round
@@ -69747,6 +70298,7 @@ exports[`DateRangePicker component
69747
70298
  </h5>
69748
70299
  <i
69749
70300
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
70301
+ role="button"
69750
70302
  style="font-size: 16px; width: 16px;"
69751
70303
  >
69752
70304
  keyboard_arrow_down_round
@@ -69763,6 +70315,7 @@ exports[`DateRangePicker component
69763
70315
  </h5>
69764
70316
  <i
69765
70317
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
70318
+ role="button"
69766
70319
  style="font-size: 16px; width: 16px;"
69767
70320
  >
69768
70321
  keyboard_arrow_down_round
@@ -69781,6 +70334,7 @@ exports[`DateRangePicker component
69781
70334
  <i
69782
70335
  class="material-icons material-icons-round Icon Icon--default"
69783
70336
  data-test="DesignSystem-Button--Icon"
70337
+ role="button"
69784
70338
  style="font-size: 16px; width: 16px;"
69785
70339
  >
69786
70340
  arrow_forward_round
@@ -70362,6 +70916,7 @@ exports[`DateRangePicker component
70362
70916
  <i
70363
70917
  class="material-icons material-icons-round Icon Icon--default"
70364
70918
  data-test="DesignSystem-Button--Icon"
70919
+ role="button"
70365
70920
  style="font-size: 16px; width: 16px;"
70366
70921
  >
70367
70922
  arrow_back_round
@@ -70382,6 +70937,7 @@ exports[`DateRangePicker component
70382
70937
  </h5>
70383
70938
  <i
70384
70939
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
70940
+ role="button"
70385
70941
  style="font-size: 16px; width: 16px;"
70386
70942
  >
70387
70943
  keyboard_arrow_down_round
@@ -70398,6 +70954,7 @@ exports[`DateRangePicker component
70398
70954
  </h5>
70399
70955
  <i
70400
70956
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
70957
+ role="button"
70401
70958
  style="font-size: 16px; width: 16px;"
70402
70959
  >
70403
70960
  keyboard_arrow_down_round
@@ -70416,6 +70973,7 @@ exports[`DateRangePicker component
70416
70973
  <i
70417
70974
  class="material-icons material-icons-round Icon Icon--default"
70418
70975
  data-test="DesignSystem-Button--Icon"
70976
+ role="button"
70419
70977
  style="font-size: 16px; width: 16px;"
70420
70978
  >
70421
70979
  arrow_forward_round
@@ -70997,6 +71555,7 @@ exports[`DateRangePicker component
70997
71555
  <i
70998
71556
  class="material-icons material-icons-round Icon Icon--default"
70999
71557
  data-test="DesignSystem-Button--Icon"
71558
+ role="button"
71000
71559
  style="font-size: 16px; width: 16px;"
71001
71560
  >
71002
71561
  arrow_back_round
@@ -71017,6 +71576,7 @@ exports[`DateRangePicker component
71017
71576
  </h5>
71018
71577
  <i
71019
71578
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
71579
+ role="button"
71020
71580
  style="font-size: 16px; width: 16px;"
71021
71581
  >
71022
71582
  keyboard_arrow_down_round
@@ -71033,6 +71593,7 @@ exports[`DateRangePicker component
71033
71593
  </h5>
71034
71594
  <i
71035
71595
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
71596
+ role="button"
71036
71597
  style="font-size: 16px; width: 16px;"
71037
71598
  >
71038
71599
  keyboard_arrow_down_round
@@ -71051,6 +71612,7 @@ exports[`DateRangePicker component
71051
71612
  <i
71052
71613
  class="material-icons material-icons-round Icon Icon--default"
71053
71614
  data-test="DesignSystem-Button--Icon"
71615
+ role="button"
71054
71616
  style="font-size: 16px; width: 16px;"
71055
71617
  >
71056
71618
  arrow_forward_round
@@ -71632,6 +72194,7 @@ exports[`DateRangePicker component
71632
72194
  <i
71633
72195
  class="material-icons material-icons-round Icon Icon--default"
71634
72196
  data-test="DesignSystem-Button--Icon"
72197
+ role="button"
71635
72198
  style="font-size: 16px; width: 16px;"
71636
72199
  >
71637
72200
  arrow_back_round
@@ -71652,6 +72215,7 @@ exports[`DateRangePicker component
71652
72215
  </h5>
71653
72216
  <i
71654
72217
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
72218
+ role="button"
71655
72219
  style="font-size: 16px; width: 16px;"
71656
72220
  >
71657
72221
  keyboard_arrow_down_round
@@ -71668,6 +72232,7 @@ exports[`DateRangePicker component
71668
72232
  </h5>
71669
72233
  <i
71670
72234
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
72235
+ role="button"
71671
72236
  style="font-size: 16px; width: 16px;"
71672
72237
  >
71673
72238
  keyboard_arrow_down_round
@@ -71686,6 +72251,7 @@ exports[`DateRangePicker component
71686
72251
  <i
71687
72252
  class="material-icons material-icons-round Icon Icon--default"
71688
72253
  data-test="DesignSystem-Button--Icon"
72254
+ role="button"
71689
72255
  style="font-size: 16px; width: 16px;"
71690
72256
  >
71691
72257
  arrow_forward_round
@@ -72267,6 +72833,7 @@ exports[`DateRangePicker component
72267
72833
  <i
72268
72834
  class="material-icons material-icons-round Icon Icon--default"
72269
72835
  data-test="DesignSystem-Button--Icon"
72836
+ role="button"
72270
72837
  style="font-size: 16px; width: 16px;"
72271
72838
  >
72272
72839
  arrow_back_round
@@ -72287,6 +72854,7 @@ exports[`DateRangePicker component
72287
72854
  </h5>
72288
72855
  <i
72289
72856
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
72857
+ role="button"
72290
72858
  style="font-size: 16px; width: 16px;"
72291
72859
  >
72292
72860
  keyboard_arrow_down_round
@@ -72303,6 +72871,7 @@ exports[`DateRangePicker component
72303
72871
  </h5>
72304
72872
  <i
72305
72873
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
72874
+ role="button"
72306
72875
  style="font-size: 16px; width: 16px;"
72307
72876
  >
72308
72877
  keyboard_arrow_down_round
@@ -72321,6 +72890,7 @@ exports[`DateRangePicker component
72321
72890
  <i
72322
72891
  class="material-icons material-icons-round Icon Icon--default"
72323
72892
  data-test="DesignSystem-Button--Icon"
72893
+ role="button"
72324
72894
  style="font-size: 16px; width: 16px;"
72325
72895
  >
72326
72896
  arrow_forward_round
@@ -72902,6 +73472,7 @@ exports[`DateRangePicker component
72902
73472
  <i
72903
73473
  class="material-icons material-icons-round Icon Icon--default"
72904
73474
  data-test="DesignSystem-Button--Icon"
73475
+ role="button"
72905
73476
  style="font-size: 16px; width: 16px;"
72906
73477
  >
72907
73478
  arrow_back_round
@@ -72922,6 +73493,7 @@ exports[`DateRangePicker component
72922
73493
  </h5>
72923
73494
  <i
72924
73495
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
73496
+ role="button"
72925
73497
  style="font-size: 16px; width: 16px;"
72926
73498
  >
72927
73499
  keyboard_arrow_down_round
@@ -72938,6 +73510,7 @@ exports[`DateRangePicker component
72938
73510
  </h5>
72939
73511
  <i
72940
73512
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
73513
+ role="button"
72941
73514
  style="font-size: 16px; width: 16px;"
72942
73515
  >
72943
73516
  keyboard_arrow_down_round
@@ -72956,6 +73529,7 @@ exports[`DateRangePicker component
72956
73529
  <i
72957
73530
  class="material-icons material-icons-round Icon Icon--default"
72958
73531
  data-test="DesignSystem-Button--Icon"
73532
+ role="button"
72959
73533
  style="font-size: 16px; width: 16px;"
72960
73534
  >
72961
73535
  arrow_forward_round
@@ -73537,6 +74111,7 @@ exports[`DateRangePicker component
73537
74111
  <i
73538
74112
  class="material-icons material-icons-round Icon Icon--default"
73539
74113
  data-test="DesignSystem-Button--Icon"
74114
+ role="button"
73540
74115
  style="font-size: 16px; width: 16px;"
73541
74116
  >
73542
74117
  arrow_back_round
@@ -73557,6 +74132,7 @@ exports[`DateRangePicker component
73557
74132
  </h5>
73558
74133
  <i
73559
74134
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
74135
+ role="button"
73560
74136
  style="font-size: 16px; width: 16px;"
73561
74137
  >
73562
74138
  keyboard_arrow_down_round
@@ -73573,6 +74149,7 @@ exports[`DateRangePicker component
73573
74149
  </h5>
73574
74150
  <i
73575
74151
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
74152
+ role="button"
73576
74153
  style="font-size: 16px; width: 16px;"
73577
74154
  >
73578
74155
  keyboard_arrow_down_round
@@ -73591,6 +74168,7 @@ exports[`DateRangePicker component
73591
74168
  <i
73592
74169
  class="material-icons material-icons-round Icon Icon--default"
73593
74170
  data-test="DesignSystem-Button--Icon"
74171
+ role="button"
73594
74172
  style="font-size: 16px; width: 16px;"
73595
74173
  >
73596
74174
  arrow_forward_round
@@ -74172,6 +74750,7 @@ exports[`DateRangePicker component
74172
74750
  <i
74173
74751
  class="material-icons material-icons-round Icon Icon--default"
74174
74752
  data-test="DesignSystem-Button--Icon"
74753
+ role="button"
74175
74754
  style="font-size: 16px; width: 16px;"
74176
74755
  >
74177
74756
  arrow_back_round
@@ -74192,6 +74771,7 @@ exports[`DateRangePicker component
74192
74771
  </h5>
74193
74772
  <i
74194
74773
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
74774
+ role="button"
74195
74775
  style="font-size: 16px; width: 16px;"
74196
74776
  >
74197
74777
  keyboard_arrow_down_round
@@ -74208,6 +74788,7 @@ exports[`DateRangePicker component
74208
74788
  </h5>
74209
74789
  <i
74210
74790
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
74791
+ role="button"
74211
74792
  style="font-size: 16px; width: 16px;"
74212
74793
  >
74213
74794
  keyboard_arrow_down_round
@@ -74226,6 +74807,7 @@ exports[`DateRangePicker component
74226
74807
  <i
74227
74808
  class="material-icons material-icons-round Icon Icon--default"
74228
74809
  data-test="DesignSystem-Button--Icon"
74810
+ role="button"
74229
74811
  style="font-size: 16px; width: 16px;"
74230
74812
  >
74231
74813
  arrow_forward_round
@@ -74807,6 +75389,7 @@ exports[`DateRangePicker component
74807
75389
  <i
74808
75390
  class="material-icons material-icons-round Icon Icon--default"
74809
75391
  data-test="DesignSystem-Button--Icon"
75392
+ role="button"
74810
75393
  style="font-size: 16px; width: 16px;"
74811
75394
  >
74812
75395
  arrow_back_round
@@ -74827,6 +75410,7 @@ exports[`DateRangePicker component
74827
75410
  </h5>
74828
75411
  <i
74829
75412
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
75413
+ role="button"
74830
75414
  style="font-size: 16px; width: 16px;"
74831
75415
  >
74832
75416
  keyboard_arrow_down_round
@@ -74843,6 +75427,7 @@ exports[`DateRangePicker component
74843
75427
  </h5>
74844
75428
  <i
74845
75429
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
75430
+ role="button"
74846
75431
  style="font-size: 16px; width: 16px;"
74847
75432
  >
74848
75433
  keyboard_arrow_down_round
@@ -74861,6 +75446,7 @@ exports[`DateRangePicker component
74861
75446
  <i
74862
75447
  class="material-icons material-icons-round Icon Icon--default"
74863
75448
  data-test="DesignSystem-Button--Icon"
75449
+ role="button"
74864
75450
  style="font-size: 16px; width: 16px;"
74865
75451
  >
74866
75452
  arrow_forward_round
@@ -75442,6 +76028,7 @@ exports[`DateRangePicker component
75442
76028
  <i
75443
76029
  class="material-icons material-icons-round Icon Icon--default"
75444
76030
  data-test="DesignSystem-Button--Icon"
76031
+ role="button"
75445
76032
  style="font-size: 16px; width: 16px;"
75446
76033
  >
75447
76034
  arrow_back_round
@@ -75462,6 +76049,7 @@ exports[`DateRangePicker component
75462
76049
  </h5>
75463
76050
  <i
75464
76051
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
76052
+ role="button"
75465
76053
  style="font-size: 16px; width: 16px;"
75466
76054
  >
75467
76055
  keyboard_arrow_down_round
@@ -75478,6 +76066,7 @@ exports[`DateRangePicker component
75478
76066
  </h5>
75479
76067
  <i
75480
76068
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
76069
+ role="button"
75481
76070
  style="font-size: 16px; width: 16px;"
75482
76071
  >
75483
76072
  keyboard_arrow_down_round
@@ -75496,6 +76085,7 @@ exports[`DateRangePicker component
75496
76085
  <i
75497
76086
  class="material-icons material-icons-round Icon Icon--default"
75498
76087
  data-test="DesignSystem-Button--Icon"
76088
+ role="button"
75499
76089
  style="font-size: 16px; width: 16px;"
75500
76090
  >
75501
76091
  arrow_forward_round
@@ -76077,6 +76667,7 @@ exports[`DateRangePicker component
76077
76667
  <i
76078
76668
  class="material-icons material-icons-round Icon Icon--default"
76079
76669
  data-test="DesignSystem-Button--Icon"
76670
+ role="button"
76080
76671
  style="font-size: 16px; width: 16px;"
76081
76672
  >
76082
76673
  arrow_back_round
@@ -76097,6 +76688,7 @@ exports[`DateRangePicker component
76097
76688
  </h5>
76098
76689
  <i
76099
76690
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
76691
+ role="button"
76100
76692
  style="font-size: 16px; width: 16px;"
76101
76693
  >
76102
76694
  keyboard_arrow_down_round
@@ -76113,6 +76705,7 @@ exports[`DateRangePicker component
76113
76705
  </h5>
76114
76706
  <i
76115
76707
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
76708
+ role="button"
76116
76709
  style="font-size: 16px; width: 16px;"
76117
76710
  >
76118
76711
  keyboard_arrow_down_round
@@ -76131,6 +76724,7 @@ exports[`DateRangePicker component
76131
76724
  <i
76132
76725
  class="material-icons material-icons-round Icon Icon--default"
76133
76726
  data-test="DesignSystem-Button--Icon"
76727
+ role="button"
76134
76728
  style="font-size: 16px; width: 16px;"
76135
76729
  >
76136
76730
  arrow_forward_round
@@ -76712,6 +77306,7 @@ exports[`DateRangePicker component
76712
77306
  <i
76713
77307
  class="material-icons material-icons-round Icon Icon--default"
76714
77308
  data-test="DesignSystem-Button--Icon"
77309
+ role="button"
76715
77310
  style="font-size: 16px; width: 16px;"
76716
77311
  >
76717
77312
  arrow_back_round
@@ -76732,6 +77327,7 @@ exports[`DateRangePicker component
76732
77327
  </h5>
76733
77328
  <i
76734
77329
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
77330
+ role="button"
76735
77331
  style="font-size: 16px; width: 16px;"
76736
77332
  >
76737
77333
  keyboard_arrow_down_round
@@ -76748,6 +77344,7 @@ exports[`DateRangePicker component
76748
77344
  </h5>
76749
77345
  <i
76750
77346
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
77347
+ role="button"
76751
77348
  style="font-size: 16px; width: 16px;"
76752
77349
  >
76753
77350
  keyboard_arrow_down_round
@@ -76766,6 +77363,7 @@ exports[`DateRangePicker component
76766
77363
  <i
76767
77364
  class="material-icons material-icons-round Icon Icon--default"
76768
77365
  data-test="DesignSystem-Button--Icon"
77366
+ role="button"
76769
77367
  style="font-size: 16px; width: 16px;"
76770
77368
  >
76771
77369
  arrow_forward_round
@@ -77347,6 +77945,7 @@ exports[`DateRangePicker component
77347
77945
  <i
77348
77946
  class="material-icons material-icons-round Icon Icon--default"
77349
77947
  data-test="DesignSystem-Button--Icon"
77948
+ role="button"
77350
77949
  style="font-size: 16px; width: 16px;"
77351
77950
  >
77352
77951
  arrow_back_round
@@ -77367,6 +77966,7 @@ exports[`DateRangePicker component
77367
77966
  </h5>
77368
77967
  <i
77369
77968
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
77969
+ role="button"
77370
77970
  style="font-size: 16px; width: 16px;"
77371
77971
  >
77372
77972
  keyboard_arrow_down_round
@@ -77383,6 +77983,7 @@ exports[`DateRangePicker component
77383
77983
  </h5>
77384
77984
  <i
77385
77985
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
77986
+ role="button"
77386
77987
  style="font-size: 16px; width: 16px;"
77387
77988
  >
77388
77989
  keyboard_arrow_down_round
@@ -77401,6 +78002,7 @@ exports[`DateRangePicker component
77401
78002
  <i
77402
78003
  class="material-icons material-icons-round Icon Icon--default"
77403
78004
  data-test="DesignSystem-Button--Icon"
78005
+ role="button"
77404
78006
  style="font-size: 16px; width: 16px;"
77405
78007
  >
77406
78008
  arrow_forward_round
@@ -77982,6 +78584,7 @@ exports[`DateRangePicker component
77982
78584
  <i
77983
78585
  class="material-icons material-icons-round Icon Icon--default"
77984
78586
  data-test="DesignSystem-Button--Icon"
78587
+ role="button"
77985
78588
  style="font-size: 16px; width: 16px;"
77986
78589
  >
77987
78590
  arrow_back_round
@@ -78002,6 +78605,7 @@ exports[`DateRangePicker component
78002
78605
  </h5>
78003
78606
  <i
78004
78607
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
78608
+ role="button"
78005
78609
  style="font-size: 16px; width: 16px;"
78006
78610
  >
78007
78611
  keyboard_arrow_down_round
@@ -78018,6 +78622,7 @@ exports[`DateRangePicker component
78018
78622
  </h5>
78019
78623
  <i
78020
78624
  class="material-icons material-icons-round Icon Icon--inverse pl-3"
78625
+ role="button"
78021
78626
  style="font-size: 16px; width: 16px;"
78022
78627
  >
78023
78628
  keyboard_arrow_down_round
@@ -78036,6 +78641,7 @@ exports[`DateRangePicker component
78036
78641
  <i
78037
78642
  class="material-icons material-icons-round Icon Icon--default"
78038
78643
  data-test="DesignSystem-Button--Icon"
78644
+ role="button"
78039
78645
  style="font-size: 16px; width: 16px;"
78040
78646
  >
78041
78647
  arrow_forward_round