aboutsummaryrefslogtreecommitdiff
path: root/apps/web/app/(landing)/Features/chatbubble.tsx
blob: 96a3f9b782977a09d752328717b63f01db5fccf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;