mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-09 22:31:10 +00:00
17 lines
No EOL
497 B
TypeScript
17 lines
No EOL
497 B
TypeScript
const ChatBubbleWing = ({ className, pathClassName }: {className?:string , pathClassName?:string}) => {
|
|
return (
|
|
<svg
|
|
className={`${className || ""}`}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="26"
|
|
height="37"
|
|
>
|
|
<path
|
|
className={`${pathClassName || ""}`}
|
|
d="M21.843 37.001c3.564 0 5.348-4.309 2.829-6.828L3.515 9.015A12 12 0 0 1 0 .53v36.471h21.843z"
|
|
/>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default ChatBubbleWing; |