15 lines
551 B
TypeScript
15 lines
551 B
TypeScript
import { Plus } from 'iconoir-react';
|
|
|
|
export const ChatModal = () => {
|
|
return (
|
|
<div className="group inline-flex items-center gap-2 rounded-md px-2.5 py-1.5 hover:bg-zinc-900">
|
|
<div className="group-hover:800 inline-flex h-5 w-5 shrink items-center justify-center rounded bg-zinc-900 group-hover:bg-zinc-800">
|
|
<Plus width={12} height={12} className="text-zinc-500" />
|
|
</div>
|
|
<div>
|
|
<h5 className="text-sm font-medium text-zinc-500 group-hover:text-zinc-400">Add a new chat</h5>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|