From 3e48a1cdcd4737aa0b8a51386f309e160d597bb0 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Sat, 15 Jul 2023 17:13:08 +0800 Subject: [PATCH] Fix UI inconsistencies Update button colors, as well as cursor for menumultiselect. --- .../react/src/components/ActionButton/index.tsx | 6 +++--- .../react/src/components/MenuMultiSelect/index.tsx | 2 +- .../react/src/components/LinkButton/index.tsx | 14 +++++++++----- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/categories/action/react/src/components/ActionButton/index.tsx b/categories/action/react/src/components/ActionButton/index.tsx index c8fafac..2bbfe9f 100644 --- a/categories/action/react/src/components/ActionButton/index.tsx +++ b/categories/action/react/src/components/ActionButton/index.tsx @@ -87,9 +87,9 @@ export const ActionButton = React.forwardRef { - const Component = disabled ? 'span' : EnabledComponent; + const Component = disabled ? 'button' : EnabledComponent; return (