🐛 add missing hover cursor to new button component (#3142)

This commit is contained in:
Matiss Janis Aboltins
2024-07-27 16:41:59 +01:00
committed by GitHub
parent fe8851c797
commit 26a591f07f
2 changed files with 7 additions and 0 deletions

View File

@@ -141,6 +141,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
...(variant !== 'bare' && styles.shadow),
backgroundColor: backgroundColorHover[variant],
color: textColorHover[variant],
cursor: 'pointer',
};
const pressedStyle = {
..._getActiveStyles(variant, bounce),

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
Add missing `:hover` cursor to the new `Button` component.