File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
packages/react/src/ActionBar Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,11 @@ export const Groups = () => (
4343 < ActionBar . IconButton icon = { FileAddedIcon } aria-label = "File Added" > </ ActionBar . IconButton >
4444 < ActionBar . IconButton icon = { SearchIcon } aria-label = "Search" > </ ActionBar . IconButton >
4545 </ ActionBar . Group >
46- < ActionBar . IconButton icon = { TasklistIcon } aria-label = "Task List" > </ ActionBar . IconButton >
4746 < ActionBar . Group label = "Lists" >
4847 < ActionBar . IconButton icon = { ListUnorderedIcon } aria-label = "Unordered List" > </ ActionBar . IconButton >
4948 < ActionBar . IconButton icon = { ListOrderedIcon } aria-label = "Ordered List" > </ ActionBar . IconButton >
50- < ActionBar . IconButton icon = { TasklistIcon } aria-label = "Task List" > </ ActionBar . IconButton >
5149 </ ActionBar . Group >
50+ < ActionBar . IconButton icon = { TasklistIcon } aria-label = "Task List" > </ ActionBar . IconButton >
5251 < ActionBar . IconButton icon = { ReplyIcon } aria-label = "Saved Replies" > </ ActionBar . IconButton >
5352 </ ActionBar >
5453)
Original file line number Diff line number Diff line change 3333 background : var (--borderColor-muted );
3434 }
3535}
36+
37+ .Group {
38+ display : flex;
39+ }
Original file line number Diff line number Diff line change @@ -413,7 +413,9 @@ export const ActionBarGroup = forwardRef(
413413
414414 return (
415415 < ActionBarGroupContext . Provider value = { { groupId : id , label} } >
416- < div ref = { ref } > { children } </ div >
416+ < div className = { styles . Group } ref = { ref } >
417+ { children }
418+ </ div >
417419 </ ActionBarGroupContext . Provider >
418420 )
419421 } ,
You can’t perform that action at this time.
0 commit comments