// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';

const SvgSocialKakao24 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 25 24"
		{...props}
	>
		<path
			fill="#252113"
			fillRule="evenodd"
			d="M8.207 1.685c-7.32 2.497-9.544 9.585-4.57 14.57.672.67 1.462 1.298 1.76 1.392.678.215.673.884-.026 3.446-.846 3.1-.697 3.128 3.098.59 2.047-1.37 3.068-1.88 3.767-1.88 10.844 0 16.63-9.317 9.755-15.711-3.09-2.876-9.255-3.953-13.784-2.407Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgSocialKakao24;
