7 lines
No EOL
558 B
TypeScript
Executable file
7 lines
No EOL
558 B
TypeScript
Executable file
import React from 'react';
|
|
|
|
export const ChatBubbleIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M20.25 8.511c.884.284 1.5 1.128 1.5 2.097v4.286c0 1.136-.847 2.1-1.98 2.193l-3.72 3.72a1.5 1.5 0 01-2.12 0l-3.72-3.72C6.347 20.77 5.5 19.796 5.5 18.66v-4.286c0-.97.616-1.813 1.5-2.097m6.5-3.511a.75.75 0 00-1.5 0v1.5a.75.75 0 001.5 0v-1.5z" />
|
|
</svg>
|
|
); |