| 1 |
import { __ } from '@wordpress/i18n'; |
| 2 |
|
| 3 |
export default function ProIcon() { |
| 4 |
const handleClick = (e) => { |
| 5 |
e.stopPropagation(); |
| 6 |
window.open( |
| 7 |
'https://discoplugin.com/?utm_source=display_tab&utm_medium=text_button&utm_campaign=free-pro&utm_id=1', |
| 8 |
'_blank' |
| 9 |
); |
| 10 |
}; |
| 11 |
|
| 12 |
return ( |
| 13 |
<div |
| 14 |
onClick={handleClick} |
| 15 |
className="disco-bg-[linear-gradient(0deg,#FFCF56_-0.01%,#F8B203_37.95%,#FFCE32_58.84%,#FFDB00_86.4%,#FFE259_97.52%,#FFD000_100%)] disco-px-1 disco-py-0 disco-rounded disco-cursor-pointer" |
| 16 |
> |
| 17 |
<div className="disco-text-[#24292E] disco-text-sm disco-font-semibold"> |
| 18 |
{__('Pro', 'disco')} |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
); |
| 22 |
} |
| 23 |
|