Files
stream.graff.tech-client/src/components/icons/ChatIcon.tsx
T
2024-02-09 19:46:26 +05:00

20 lines
483 B
TypeScript

function ChatIcon() {
return (
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M17 6H6C4.89543 6 4 6.89543 4 8V15C4 16.1046 4.89543 17 6 17H11L14.3753 19.7002C15.0301 20.2241 16 19.7579 16 18.9194V17H17C18.1046 17 19 16.1046 19 15V8C19 6.89543 18.1046 6 17 6Z"
stroke="currentColor"
stroke-width="1.5"
/>
</svg>
);
}
export default ChatIcon;