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

const SvgSocialGithub24 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 24 24"
		{...props}
	>
		<path
			fill="currentColor"
			d="M8.865 21.495a.868.868 0 0 0 .525-.799v-2.348c0-.084.007-.174.019-.266-.007.002-.012.005-.019.005H7.825c-.652 0-1.216-.262-1.478-.783-.303-.564-.434-1.522-1.216-2.043-.131-.087-.044-.218.218-.218.259.044.826.393 1.172.87.393.478.783.87 1.479.87 1.08 0 1.661-.055 2.01-.24.406-.604.969-1.063 1.556-1.063v-.012c-2.465-.08-4.04-.9-4.774-2.164a26.31 26.31 0 0 0-3.77.307 8.794 8.794 0 0 1-.067-.429c.782-.129 2.107-.28 3.628-.31a3.332 3.332 0 0 1-.126-.37 27.838 27.838 0 0 0-3.56.044c-.009-.144-.02-.289-.023-.436.719-.057 2-.117 3.487-.048a4.237 4.237 0 0 1-.055-.67c0-.74.26-1.522.739-2.174-.218-.739-.524-2.304.085-2.871 1.175 0 2.001.567 2.391.913A6.439 6.439 0 0 1 12 6.784c.914 0 1.74.172 2.435.478a3.623 3.623 0 0 1 2.392-.914c.651.608.303 2.174.087 2.871.477.652.739 1.391.695 2.174 0 .209-.02.413-.048.613a28.455 28.455 0 0 1 3.567.043c0 .147-.014.29-.023.434a28.252 28.252 0 0 0-3.633-.039 3.35 3.35 0 0 1-.143.427c1.543.02 2.9.17 3.718.3a9.224 9.224 0 0 1-.066.43c-.83-.133-2.25-.29-3.86-.299-.723 1.254-2.27 2.068-4.687 2.165v.014c1.131 0 2.176 1.693 2.176 2.868v2.348c0 .358.215.666.525.8C19.117 20.175 22 16.417 22 12c0-5.513-4.485-10-10-10S2 6.487 2 12c0 4.418 2.883 8.175 6.865 9.495Z"
		/>
	</svg>
);
export default SvgSocialGithub24;
