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