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

const SvgThumbUpStroke24 = (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="M3.781 14.234c0 2.664 1.711 4.86 3.899 4.86h2.5c1.015.523 2.234.82 3.57.82h1.055c.992 0 1.828-.055 2.375-.195 1.117-.274 1.82-1.07 1.82-2.055 0-.18-.023-.344-.07-.5a2.11 2.11 0 0 0 .812-1.656c0-.305-.062-.602-.164-.844.352-.375.547-.906.547-1.469 0-.36-.086-.734-.234-1.015.203-.32.328-.766.328-1.235 0-1.203-.922-2.14-2.125-2.14h-2.82c-.157 0-.258-.07-.25-.211.039-.781 1.265-2.664 1.265-4.203 0-1.133-.797-1.954-1.89-1.954-.797 0-1.352.415-1.868 1.407-.937 1.812-2.094 3.422-3.781 5.492H7.39c-2.046 0-3.609 2.18-3.609 4.898Zm4.719-.062c0-1.61.36-2.64 1.383-4.016 1.148-1.531 2.742-3.375 3.883-5.656.25-.492.406-.602.648-.602.29 0 .477.204.477.57 0 1.134-1.282 3.009-1.282 4.235 0 .914.735 1.5 1.727 1.5h2.719c.437 0 .765.328.765.766 0 .32-.101.523-.36.789-.202.187-.226.469-.054.664.219.32.313.515.313.773 0 .313-.149.578-.453.813-.258.18-.344.476-.203.781.171.313.25.469.25.703 0 .367-.235.64-.711.899-.243.132-.305.39-.204.625.157.398.18.468.18.64 0 .32-.242.578-.75.703-.437.118-1.156.164-2.094.164h-.906c-3.195-.007-5.328-1.812-5.328-4.351Zm-3.344.062c0-1.921.992-3.46 2.125-3.507.196 0 .39 0 .586-.008-.531 1.054-.765 2.14-.765 3.453 0 1.383.476 2.601 1.351 3.562h-.851c-1.32-.047-2.446-1.601-2.446-3.5Z"
		/>
	</svg>
);
export default SvgThumbUpStroke24;
