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

const SvgTag16 = (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"
			d="m8.486 14.426 5.79-5.795c.486-.486.562-.797.562-1.535V4.88c0-.686-.164-.961-.691-1.483l-1.33-1.336c-.528-.521-.797-.685-1.483-.685h-2.22c-.733 0-1.032.088-1.518.574L1.8 7.741c-.932.93-.944 1.962 0 2.905l3.785 3.78c.943.937 1.969.937 2.9 0Zm-.937-1.201c-.34.34-.674.345-1.026 0L3.002 9.709c-.357-.352-.334-.697-.006-1.025l5.678-5.672c.117-.117.21-.176.387-.176h2.191c.164 0 .281.059.387.164l1.576 1.576c.1.1.164.223.164.387v2.191c0 .194-.047.287-.158.399l-5.672 5.672Zm2.988-6.645a.893.893 0 0 0 .908-.902.894.894 0 0 0-.908-.908.894.894 0 0 0-.908.908c0 .504.393.902.908.902Z"
		/>
	</svg>
);
export default SvgTag16;
