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

const SvgUnpin16 = (props: SVGProps<SVGSVGElement>) => (
	<svg
		xmlns="http://www.w3.org/2000/svg"
		width="1em"
		height="1em"
		fill="none"
		viewBox="0 0 16 16"
		{...props}
	>
		<g clipPath="url(#unpin_16_svg__a)">
			<path
				fill="currentColor"
				d="M2.729 16C.913 16 0 15.105 0 13.306V2.694C0 .895.913 0 2.729 0H13.27C15.096 0 16 .904 16 2.694v10.612c0 1.79-.904 2.694-2.729 2.694H2.729Zm.017-1.4h10.508c.86 0 1.347-.46 1.347-1.364V2.764c0-.904-.487-1.365-1.347-1.365H2.746c-.869 0-1.347.46-1.347 1.365v10.472c0 .904.478 1.365 1.347 1.365ZM4.59 9.639c0-.921.747-1.912 1.99-2.355l.14-2.042c-.627-.348-1.14-.756-1.374-1.052a.744.744 0 0 1-.191-.46c0-.27.208-.461.521-.461h4.676c.313 0 .521.191.521.46 0 .14-.06.296-.174.452-.234.296-.756.704-1.39 1.06l.148 2.043c1.234.443 1.981 1.434 1.981 2.355 0 .383-.243.617-.643.617H8.552v1.556c0 .947-.383 1.73-.539 1.73-.156 0-.539-.783-.539-1.73v-1.556H5.232c-.391 0-.643-.234-.643-.617Z"
			/>
		</g>
		<defs>
			<clipPath id="unpin_16_svg__a">
				<path fill="#fff" d="M0 0h16v16H0z" />
			</clipPath>
		</defs>
	</svg>
);
export default SvgUnpin16;
