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

const SvgThumbDownFill12 = (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_down_fill_12_svg__a)">
			<path
				fill="currentColor"
				d="M8.7 3.811c-.006 1.361-.358 2.229-1.123 3.238-.88 1.168-2.025 2.53-2.893 4.202-.238.471-.46.749-.884.749-.488 0-.845-.34-.845-.902 0-1.038.97-2.467.97-3.232 0-.403-.324-.652-.817-.652H1.06c-.6 0-1.06-.477-1.06-1.06 0-.33.113-.602.295-.766.085-.069.096-.12.017-.193-.148-.148-.233-.437-.233-.715 0-.38.182-.714.443-.879.09-.05.102-.119.045-.198a1.092 1.092 0 0 1-.198-.658c0-.454.283-.8.657-.97.057-.023.069-.08.029-.142A1.032 1.032 0 0 1 .93 1.13c0-.562.437-.868.924-.987C2.184.057 2.75 0 3.494 0h.788c2.716.006 4.423 1.65 4.417 3.811Zm2.892-.045c0 1.814-1.015 3.232-2.337 3.232h-.788c.539-.709 1.05-1.747 1.055-3.176.011-1.321-.443-2.484-1.47-3.266h.988c1.457 0 2.552 1.452 2.552 3.21Z"
			/>
		</g>
		<defs>
			<clipPath id="thumb_down_fill_12_svg__a">
				<path fill="#fff" d="M0 0h12v12H0z" />
			</clipPath>
		</defs>
	</svg>
);
export default SvgThumbDownFill12;
