Remove "button-theme-muted"

This commit is contained in:
danidfra 2024-11-12 13:01:42 -03:00
parent 278d8b7099
commit 6862a6fd2d
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ const NativeCaptchaField: React.FC<INativeCaptchaField> = ({ captcha, onChange,
return ( return (
<Stack space={2}> <Stack space={2}>
<div className='flex w-full items-center justify-center rounded-md border border-solid border-gray-300 bg-white dark:border-gray-600'> <div className='flex w-full items-center justify-center rounded-md border border-solid border-gray-300 bg-white dark:border-gray-600'>
<button className='button-theme-muted !block space-x-2 !border-none !p-0 !py-2 !text-primary-600 hover:!underline focus:!ring-transparent focus:!ring-offset-0 dark:!text-accent-blue rtl:space-x-reverse' onClick={onClick}> <button className='!block space-x-2 !border-none !p-0 !py-2 !text-primary-600 hover:!underline focus:!ring-transparent focus:!ring-offset-0 dark:!text-accent-blue rtl:space-x-reverse' onClick={onClick}>
<img alt={intl.formatMessage(messages.captcha)} src={captcha.get('url')} /> <img alt={intl.formatMessage(messages.captcha)} src={captcha.get('url')} />
</button> </button>
</div> </div>