Skip to content

Commit

Permalink
fix(fuselage): ContextualbarAction size (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris authored Oct 10, 2023
1 parent 6b78071 commit 44f8515
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cuddly-flowers-crash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@rocket.chat/fuselage": patch
---

feat(fuselage): `ContextualbarAction` size
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ContextualbarAction = ({
name,
...props
}: ContextualbarActionProps): ReactElement => (
<IconButton flexShrink={0} icon={name} {...props} tiny />
<IconButton {...props} small flexShrink={0} icon={name} />
);

export default memo(ContextualbarAction);

0 comments on commit 44f8515

Please sign in to comment.