mirror of
https://github.com/versia-pub/docs.git
synced 2025-12-06 14:28:20 +01:00
20 lines
710 B
TypeScript
20 lines
710 B
TypeScript
|
|
import type { ComponentPropsWithoutRef } from "react";
|
||
|
|
|
||
|
|
export function ChatBubbleIcon(props: ComponentPropsWithoutRef<"svg">) {
|
||
|
|
return (
|
||
|
|
<svg viewBox="0 0 20 20" aria-hidden="true" {...props}>
|
||
|
|
<path
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="M10 16.5c4.142 0 7.5-3.134 7.5-7s-3.358-7-7.5-7c-4.142 0-7.5 3.134-7.5 7 0 1.941.846 3.698 2.214 4.966L3.5 17.5c2.231 0 3.633-.553 4.513-1.248A8.014 8.014 0 0 0 10 16.5Z"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
fill="none"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
d="M7.5 8.5h5M8.5 11.5h3"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|