16 lines
576 B
TypeScript
16 lines
576 B
TypeScript
function ChatIcon() {
|
|
return (
|
|
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path
|
|
d="M2.5 11.049c0 1.155.864 2.162 2.082 2.33q1.255.174 2.533.267V17l3.136-2.944c.212-.198.498-.313.798-.32a40 40 0 0 0 4.369-.357c1.218-.168 2.082-1.174 2.082-2.33V6.701c0-1.157-.864-2.163-2.082-2.331A40 40 0 0 0 10 4c-1.84 0-3.65.126-5.418.37C3.364 4.54 2.5 5.547 2.5 6.703z"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default ChatIcon;
|