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

const SvgThumbDownFill32 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 32 32"
		{...props}
	>
		<path
			fill="currentColor"
			d="M21.53 12.219c.058-3.721-2.96-6.504-7.637-6.543l-1.358-.01c-1.28-.01-2.256.088-2.822.234-.84.205-1.592.733-1.592 1.7 0 .37.098.654.215.869.068.107.049.205-.049.244-.644.293-1.133.889-1.133 1.67 0 .449.127.85.342 1.133.098.136.078.254-.078.341-.45.284-.762.86-.762 1.514 0 .479.147.977.4 1.23.137.127.118.215-.019.342-.322.274-.517.742-.517 1.309 0 1.006.79 1.826 1.826 1.826h3.525c.85 0 1.406.43 1.406 1.123 0 1.319-1.67 3.78-1.67 5.567 0 .966.625 1.552 1.456 1.552.732 0 1.113-.478 1.523-1.289 1.494-2.88 3.467-5.224 4.98-7.236 1.319-1.738 1.924-3.233 1.963-5.576Zm4.93-.078c0-3.028-1.874-5.528-4.394-5.528h-1.689c1.758 1.348 2.588 3.35 2.559 5.625-.04 2.461-.918 4.248-1.846 5.469h1.348c2.275 0 4.023-2.441 4.023-5.566Z"
		/>
	</svg>
);
export default SvgThumbDownFill32;
