File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @launchpad-ui/button ' : patch
3
+ ' @launchpad-ui/pagination ' : patch
4
+ ' @launchpad-ui/modal ' : patch
5
+ ' @launchpad-ui/core ' : patch
6
+ ---
7
+
8
+ [ Button] : Switch from circular IconButton to rounded
9
+ [ Modal] : Update close button size to small
10
+ [ Pagination] : Update PaginationButton IconButton size to small
Original file line number Diff line number Diff line change 381
381
.Button .Button--icon {
382
382
padding : 0 ;
383
383
line-height : 1 ;
384
- border-radius : 50% ;
385
384
height : 3.2rem ;
386
385
width : 3.2rem ;
387
386
min-height : auto;
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ const ModalHeader = ({
39
39
{ withCloseButton && (
40
40
< IconButton
41
41
aria-label = "close"
42
+ size = "small"
42
43
icon = { < Close size = "medium" /> }
43
44
className = { styles . closeButton }
44
45
onClick = { onCancel }
Original file line number Diff line number Diff line change @@ -56,9 +56,10 @@ const PaginationButton = ({
56
56
< IconButton
57
57
disabled = { disabled }
58
58
className = { classes }
59
+ size = "small"
59
60
data-test-id = { testId }
60
61
onClick = { ( ) => onClick ( kind ) }
61
- icon = { < Icon size = "small" /> }
62
+ icon = { < Icon /> }
62
63
aria-label = { label }
63
64
/>
64
65
) ;
You can’t perform that action at this time.
0 commit comments