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

const SvgThumbDownStroke32 = (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="M26.773 12.16c0-3.33-2.138-6.074-4.873-6.074h-3.125c-1.27-.654-2.793-1.025-4.462-1.025h-1.319c-1.24 0-2.275.068-2.969.244C8.63 5.646 7.75 6.643 7.75 7.873c0 .225.03.43.088.635a2.604 2.604 0 0 0-1.016 2.06c0 .381.078.752.205 1.055-.43.469-.683 1.133-.683 1.836 0 .45.107.918.293 1.27-.254.4-.41.957-.41 1.543 0 1.503 1.152 2.675 2.666 2.675h3.515c.196 0 .322.088.313.264-.05.977-1.582 3.33-1.582 5.254 0 1.416.996 2.441 2.363 2.441.996 0 1.69-.517 2.334-1.758 1.182-2.265 2.617-4.277 4.726-6.865h1.7c2.558 0 4.511-2.724 4.511-6.123Zm-5.898.078c0 2.012-.45 3.301-1.729 5.02-1.435 1.914-3.427 4.219-4.853 7.07-.313.615-.508.752-.81.752-.362 0-.596-.254-.596-.713 0-1.416 1.601-3.76 1.601-5.293 0-1.142-.918-1.875-2.158-1.875H8.932a.934.934 0 0 1-.957-.957c0-.4.127-.654.449-.986.254-.235.283-.586.068-.83-.273-.4-.39-.645-.39-.967 0-.39.185-.723.566-1.016.322-.224.43-.595.254-.976-.215-.39-.313-.586-.313-.88 0-.458.293-.8.889-1.122.303-.166.38-.488.254-.781-.195-.498-.225-.586-.225-.801 0-.4.303-.723.938-.88.547-.146 1.445-.204 2.617-.204h1.133c3.994.02 6.66 2.265 6.66 5.44Zm4.18-.078c0 2.402-1.24 4.326-2.657 4.385-.244 0-.488.01-.732.01.664-1.309.957-2.676.957-4.307 0-1.738-.596-3.262-1.69-4.463h1.065c1.65.059 3.057 2.002 3.057 4.375Z"
		/>
	</svg>
);
export default SvgThumbDownStroke32;
