diff --git a/.changeset/big-suns-complain.md b/.changeset/big-suns-complain.md new file mode 100644 index 000000000..963c46797 --- /dev/null +++ b/.changeset/big-suns-complain.md @@ -0,0 +1,5 @@ +--- +"@cube-dev/ui-kit": patch +--- + +Fixes Menu Item disabled styles. diff --git a/src/components/pickers/Menu/Menu.stories.tsx b/src/components/pickers/Menu/Menu.stories.tsx index e27c3c7cc..12d96a8b4 100644 --- a/src/components/pickers/Menu/Menu.stories.tsx +++ b/src/components/pickers/Menu/Menu.stories.tsx @@ -83,6 +83,42 @@ export const Default = ({ ...props }) => { ); }; +export const DisabledKeys = ({ ...props }) => { + const menu = ( + + + Copy + + + Paste + + + Cut + + + ); + + return ( + + {menu} + + +