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

const SvgCoins16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<path
			fill="currentColor"
			fillRule="evenodd"
			d="M10 .25c-1.443 0-2.782.207-3.787.565-.5.177-.956.406-1.303.698-.343.289-.66.713-.66 1.267v2.796a.75.75 0 0 0 1.5 0V4.558a5.9 5.9 0 0 0 .463.187c1.005.357 2.344.564 3.787.564 1.118 0 2.174-.124 3.06-.346a.669.669 0 0 0 0 .037v3a.75.75 0 0 0 1.039.692c.419-.175.806-.397 1.1-.676.296-.28.551-.675.551-1.169V2.78c0-.554-.317-.978-.66-1.267-.347-.292-.804-.52-1.303-.698C12.782.457 11.443.25 10 .25ZM5.876 2.66a.618.618 0 0 0-.115.12c.016.024.05.064.115.118.16.135.434.289.84.433.805.287 1.966.478 3.284.478 1.318 0 2.48-.191 3.284-.478a3.08 3.08 0 0 0 .773-.38l.127-.236a.95.95 0 0 0-.06-.054c-.16-.134-.434-.289-.84-.433-.805-.287-1.966-.478-3.284-.478-1.318 0-2.48.191-3.284.478-.406.144-.68.299-.84.433Z"
			clipRule="evenodd"
		/>
		<path
			fill="currentColor"
			fillRule="evenodd"
			d="M6 7.25c-1.438 0-2.77.19-3.768.515-.496.162-.95.371-1.298.639-.336.26-.684.669-.684 1.23v3.733c0 .56.348.969.684 1.229.347.268.802.477 1.298.639.998.326 2.33.515 3.768.515 1.438 0 2.77-.19 3.768-.515.496-.162.95-.371 1.297-.639.337-.26.685-.669.685-1.23V9.634c0-.56-.348-.969-.684-1.229-.347-.268-.802-.477-1.298-.639C8.77 7.44 7.438 7.25 6 7.25ZM1.851 9.591a.951.951 0 0 0-.05.042c.013.013.03.027.05.043.16.122.437.266.846.4.811.264 1.98.44 3.303.44 1.324 0 2.492-.176 3.303-.44.41-.134.687-.278.846-.4a.94.94 0 0 0 .05-.043.944.944 0 0 0-.05-.042c-.16-.123-.437-.266-.846-.4C8.492 8.926 7.323 8.75 6 8.75c-1.324 0-2.492.176-3.303.441-.41.134-.687.277-.846.4Zm7.917 1.91c.166-.054.328-.114.482-.179v1.994a.63.63 0 0 1-.101.093c-.16.123-.437.266-.846.4-.811.265-1.98.441-3.303.441-1.324 0-2.492-.176-3.303-.441-.41-.134-.687-.277-.846-.4a.632.632 0 0 1-.101-.093v-1.994c.154.066.316.125.482.18.998.325 2.33.515 3.768.515 1.438 0 2.77-.19 3.768-.516Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgCoins16;
