Skip to content
Snippets Groups Projects
Unverified Commit 26a591f0 authored by Matiss Janis Aboltins's avatar Matiss Janis Aboltins Committed by GitHub
Browse files

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

parent fe8851c7
No related branches found
No related tags found
No related merge requests found
...@@ -141,6 +141,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>( ...@@ -141,6 +141,7 @@ export const Button = forwardRef<HTMLButtonElement, ButtonProps>(
...(variant !== 'bare' && styles.shadow), ...(variant !== 'bare' && styles.shadow),
backgroundColor: backgroundColorHover[variant], backgroundColor: backgroundColorHover[variant],
color: textColorHover[variant], color: textColorHover[variant],
cursor: 'pointer',
}; };
const pressedStyle = { const pressedStyle = {
..._getActiveStyles(variant, bounce), ..._getActiveStyles(variant, bounce),
......
---
category: Bugfix
authors: [MatissJanis]
---
Add missing `:hover` cursor to the new `Button` component.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment