AuthorizeRejectButtons: fix styles, make less fragile

This commit is contained in:
Alex Gleason 2023-03-20 20:11:21 -05:00
parent 3a12b316d9
commit b87af6a71c
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 4 additions and 4 deletions

View File

@ -37,15 +37,15 @@ const AuthorizeRejectButtons: React.FC<IAuthorizeRejectButtons> = ({ onAuthorize
<IconButton <IconButton
src={require('@tabler/icons/x.svg')} src={require('@tabler/icons/x.svg')}
onClick={handleReject} onClick={handleReject}
theme='outlined' theme='seamless'
className='h-10 w-10 items-center justify-center border-2 border-danger-600/10 hover:border-danger-600 dark:border-danger-600/10 dark:hover:border-danger-600' className='h-10 w-10 items-center justify-center border-2 border-danger-600/10 hover:border-danger-600'
iconClassName='h-6 w-6 text-danger-600' iconClassName='h-6 w-6 text-danger-600'
/> />
<IconButton <IconButton
src={require('@tabler/icons/check.svg')} src={require('@tabler/icons/check.svg')}
onClick={handleAuthorize} onClick={handleAuthorize}
theme='outlined' theme='seamless'
className='h-10 w-10 items-center justify-center border-2 border-primary-500/10 hover:border-primary-500 dark:border-primary-500/10 dark:hover:border-primary-500' className='h-10 w-10 items-center justify-center border-2 border-primary-500/10 hover:border-primary-500'
iconClassName='h-6 w-6 text-primary-500' iconClassName='h-6 w-6 text-primary-500'
/> />
</HStack> </HStack>