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

const SvgThumbDownStroke24 = (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="M20.219 10.328c0-2.664-1.711-4.86-3.899-4.86h-2.5c-1.015-.523-2.234-.82-3.57-.82H9.195c-.992 0-1.82.055-2.375.196C5.703 5.117 5 5.914 5 6.898c0 .18.023.344.07.508-.515.407-.812 1-.812 1.649 0 .304.062.601.164.843a2.184 2.184 0 0 0-.547 1.47c0 .359.086.734.234 1.015-.203.32-.328.765-.328 1.234 0 1.203.922 2.14 2.133 2.14h2.813c.156 0 .257.071.25.212-.04.781-1.266 2.664-1.266 4.203 0 1.133.797 1.953 1.89 1.953.797 0 1.352-.414 1.868-1.406.945-1.813 2.094-3.422 3.781-5.492h1.36c2.046 0 3.609-2.18 3.609-4.899Zm-4.719.063c0 1.609-.36 2.64-1.383 4.015-1.148 1.531-2.742 3.375-3.883 5.656-.25.493-.406.602-.648.602-.29 0-.477-.203-.477-.57 0-1.133 1.282-3.008 1.282-4.235 0-.914-.735-1.5-1.727-1.5H5.945a.748.748 0 0 1-.765-.765c0-.32.101-.524.36-.79.202-.187.226-.468.054-.663-.219-.32-.313-.516-.313-.774 0-.312.149-.578.453-.812.258-.18.344-.477.204-.782-.172-.312-.25-.468-.25-.703 0-.367.234-.64.71-.898.243-.133.305-.39.204-.625-.157-.399-.18-.469-.18-.64 0-.321.242-.579.75-.704.437-.117 1.156-.164 2.094-.164h.906c3.195.016 5.328 1.813 5.328 4.352Zm3.344-.063c0 1.922-.992 3.461-2.125 3.508-.196 0-.39.008-.586.008.531-1.047.765-2.14.765-3.446 0-1.39-.476-2.609-1.351-3.57h.851c1.32.047 2.446 1.602 2.446 3.5Z"
		/>
	</svg>
);
export default SvgThumbDownStroke24;
