Server IP : 104.21.93.192 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/near.llc/wp-content/plugins/extendify/src/Library/components/ |
Upload File : |
import { __ } from '@wordpress/i18n'; import { Icon } from '@wordpress/icons'; import { useActivityStore } from '@shared/state/activity'; import { extendifyLogo } from '@library/icons/extendify-logo'; import { useGlobalsStore } from '@library/state/global'; export const MainButton = () => { const { setOpen } = useGlobalsStore(); const { incrementActivity } = useActivityStore(); const handleClick = () => { // Minimize HC if its open window.dispatchEvent(new CustomEvent('extendify-hc:minimize')); setOpen(true); incrementActivity('library-button-click'); }; return ( <div role="button" onClick={handleClick} className="components-button has-icon is-primary h-8 min-w-0 cursor-pointer px-2 xs:h-9 sm:ml-2 xl:pr-3"> <Icon icon={extendifyLogo} size={24} /> <span className="ml-1 hidden xl:inline"> {__('Design Library', 'extendify-local')} </span> </div> ); };