Spaces:
Sleeping
Sleeping
File size: 628 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import type React from 'react';
import classNames from 'classnames';
interface ChatBubbleIconProps {
className?: string;
}
const ChatBubbleIcon: React.FC<ChatBubbleIconProps> = ({ className }) => {
return (
<svg
className={classNames('w-4 h-4', className)}
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<path
d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
/>
</svg>
);
};
export default ChatBubbleIcon;
|