diff --git a/src/plugins/statusPresets/index.tsx b/src/plugins/statusPresets/index.tsx index 28468c806..e2b769e67 100644 --- a/src/plugins/statusPresets/index.tsx +++ b/src/plugins/statusPresets/index.tsx @@ -21,7 +21,7 @@ import { definePluginSettings } from "@api/Settings"; import { Devs } from "@utils/constants"; import definePlugin, { OptionType } from "@utils/types"; import { findByPropsLazy } from "@webpack"; -import { Button, Menu, Text, Toasts } from "@webpack/common"; +import { Button, Menu, Text, Toasts, useState } from "@webpack/common"; const Components = findByPropsLazy("Status"); const StatusStyles = findByPropsLazy("statusItem"); @@ -50,8 +50,45 @@ const settings = definePluginSettings({ } }); +const RenderStatusMenuItem = ({ status }) => { + + const [isHovering, setIsHovering] = useState(false); + const handleMouseOver = () => { + setIsHovering(true); + }; + + const handleMouseOut = () => { + setIsHovering(false); + }; + + return