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

const SvgThumbUpStroke32 = (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="M6.227 19.543c0 3.33 2.138 6.074 4.873 6.074h3.125c1.27.654 2.793 1.026 4.463 1.026h1.318c1.24 0 2.285-.069 2.969-.245 1.396-.341 2.275-1.337 2.275-2.568 0-.224-.03-.43-.088-.625.645-.517 1.016-1.26 1.016-2.07 0-.381-.078-.752-.205-1.055.44-.469.683-1.133.683-1.836 0-.45-.107-.918-.293-1.27.254-.4.41-.956.41-1.542 0-1.504-1.152-2.676-2.656-2.676h-3.525c-.195 0-.322-.088-.313-.264.05-.976 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.172 2.265-2.617 4.277-4.727 6.865h-1.699c-2.558 0-4.511 2.725-4.511 6.123Zm5.898-.078c0-2.012.45-3.3 1.729-5.02 1.435-1.914 3.427-4.218 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.143.918 1.875 2.158 1.875h3.398c.547 0 .957.41.957.957 0 .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.391.313.586.313.88 0 .458-.293.8-.889 1.122-.303.166-.38.489-.254.782.195.498.225.585.225.8 0 .4-.303.723-.938.88-.547.146-1.445.204-2.617.204h-1.133c-3.994-.01-6.66-2.265-6.66-5.44Zm-4.18.078c0-2.402 1.24-4.326 2.657-4.385.244 0 .488 0 .732-.01-.664 1.319-.957 2.676-.957 4.317 0 1.728.596 3.252 1.69 4.453h-1.065c-1.65-.059-3.057-2.002-3.057-4.375Z"
		/>
	</svg>
);
export default SvgThumbUpStroke32;
