style: changed scroll icon size via size attribute as suggested (#263)

This commit is contained in:
Dasun Nimantha 2023-03-28 19:29:31 +05:30 committed by GitHub
parent abdcd4508d
commit cd49445491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ export const Chat: FC<Props> = memo(
className="flex h-7 w-7 items-center justify-center rounded-full bg-white shadow-md hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-[#515152d7]" className="flex h-7 w-7 items-center justify-center rounded-full bg-white shadow-md hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-blue-500 dark:bg-[#515152d7]"
onClick={handleScrollDown} onClick={handleScrollDown}
> >
<IconArrowDown className="h-4 w-4" /> <IconArrowDown size={18}/>
</button> </button>
</div> </div>
)} )}