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

const SvgSettings32 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 32 32"
		{...props}
	>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="m7.495 19.95 1.468.23c1.083.17 1.857 1.162 1.777 2.28l-.108 1.515c-.031.442.204.857.593 1.05l1.086.535c.39.192.854.12 1.172-.18l1.091-1.03a2.066 2.066 0 0 1 2.85 0l1.091 1.03c.319.301.783.372 1.173.18l1.088-.536c.388-.192.623-.606.591-1.046l-.108-1.518c-.08-1.118.694-2.11 1.777-2.28l1.468-.23c.427-.066.772-.394.868-.826l.268-1.2a1.087 1.087 0 0 0-.431-1.13l-1.226-.857a2.178 2.178 0 0 1-.634-2.843l.74-1.317c.216-.383.18-.863-.09-1.209l-.75-.963a1.04 1.04 0 0 0-1.133-.36l-1.42.446c-1.049.328-2.167-.223-2.57-1.266l-.544-1.41a1.055 1.055 0 0 0-.983-.682l-1.203.004a1.055 1.055 0 0 0-.98.687l-.53 1.394c-.398 1.05-1.522 1.604-2.574 1.274l-1.478-.464a1.04 1.04 0 0 0-1.136.36l-.745.965c-.27.349-.303.83-.083 1.214l.757 1.32c.557.972.284 2.222-.625 2.858l-1.21.849c-.357.25-.529.698-.432 1.129l.268 1.2c.095.433.44.76.867.827Z"
		/>
		<path
			stroke="currentColor"
			strokeLinecap="round"
			strokeLinejoin="round"
			strokeWidth={1.5}
			d="M18.122 13.879a3 3 0 1 1-4.245 4.243 3 3 0 0 1 4.245-4.243Z"
		/>
	</svg>
);
export default SvgSettings32;
