[#17] Set the cursor to pointer for the download button

This commit is contained in:
Justin Walrath 2025-05-14 22:01:17 -04:00
parent 1a5093dfdf
commit 0705cc331c

View File

@ -39,7 +39,24 @@ export default function IconExpandTextButton({
return (
<a
download={download}
className={`flex items-center group transition-all duration-200 bg-transparent rounded-sm hover:bg-purple-400 hover:shadow pl-1 pr-2 py-1 text-sm select-none ${className}`}
className={`
flex
items-center
group
transition-all
duration-200
bg-transparent
rounded-sm
hover:bg-purple-400
hover:shadow
pl-1
pr-2
py-1
text-sm
select-none
cursor-pointer
${className}
`}
onClick={handleClick}
tabIndex={isDisabled ? -1 : 0}
aria-disabled={isDisabled}