2023-03-03 23:17:11 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import PlusIcon from '@icon/PlusIcon';
|
|
|
|
|
2023-03-04 18:41:44 +01:00
|
|
|
import useAddChat from '@hooks/useAddChat';
|
2023-03-03 23:17:11 +01:00
|
|
|
|
|
|
|
const NewChat = () => {
|
2023-03-04 18:41:44 +01:00
|
|
|
const addChat = useAddChat();
|
2023-03-03 23:17:11 +01:00
|
|
|
|
|
|
|
return (
|
|
|
|
<a
|
|
|
|
className='max-md:hidden flex py-3 px-3 items-center gap-3 rounded-md hover:bg-gray-500/10 transition-colors duration-200 text-white cursor-pointer text-sm md:mb-2 flex-shrink-0 md:border md:border-white/20'
|
|
|
|
onClick={addChat}
|
|
|
|
>
|
|
|
|
<PlusIcon />{' '}
|
|
|
|
<span className='hidden md:inline-flex text-white text-sm'>New chat</span>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default NewChat;
|