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

const SvgThumbUpFill12 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 12 12"
		{...props}
	>
		<g clipPath="url(#thumb_up_fill_12_svg__a)">
			<path
				fill="currentColor"
				d="M2.892 8.189c.006-1.361.358-2.229 1.123-3.238.88-1.168 2.025-2.53 2.892-4.202.239-.471.46-.749.885-.749.488 0 .845.34.845.902 0 1.038-.97 2.467-.97 3.232 0 .403.324.652.817.652h2.047c.601 0 1.06.477 1.06 1.06 0 .33-.113.602-.294.766-.085.069-.097.12-.017.193.147.148.232.437.232.715 0 .38-.181.714-.442.879-.09.05-.102.119-.045.198.124.165.198.397.198.658 0 .454-.284.8-.658.97-.056.023-.068.08-.028.142.068.124.125.289.125.504 0 .562-.437.868-.925.987-.329.085-.896.142-1.639.142H7.31c-2.716-.006-4.423-1.65-4.418-3.811ZM0 8.234C0 6.42 1.015 5.002 2.336 5.002h.789c-.539.709-1.05 1.747-1.055 3.176-.011 1.321.442 2.484 1.469 3.266h-.987C1.095 11.444 0 9.992 0 8.234Z"
			/>
		</g>
		<defs>
			<clipPath id="thumb_up_fill_12_svg__a">
				<path fill="#fff" d="M0 0h12v12H0z" />
			</clipPath>
		</defs>
	</svg>
);
export default SvgThumbUpFill12;
