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

const SvgNft24 = (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"
			fillRule="evenodd"
			d="M7.125 4.5a.75.75 0 0 0-1.5 0v1.125H4.5a.75.75 0 0 0 0 1.5h1.125V8.25a.75.75 0 0 0 1.5 0V7.125H8.25a.75.75 0 0 0 0-1.5H7.125V4.5Zm6.325.48a.75.75 0 0 0-1.4 0l-1.3 3.382c-.226.586-.297.755-.394.891a1.501 1.501 0 0 1-.353.353c-.136.097-.305.168-.89.393L5.73 11.3a.75.75 0 0 0 0 1.4L9.112 14c.586.226.755.297.891.394.137.097.256.216.353.353.097.136.168.305.393.89l1.301 3.382a.75.75 0 0 0 1.4 0l1.3-3.381c.226-.586.297-.755.394-.891.097-.137.216-.256.353-.353.136-.097.305-.168.89-.393L19.77 12.7a.75.75 0 0 0 0-1.4L16.388 10c-.586-.226-.755-.297-.891-.394a1.502 1.502 0 0 1-.353-.353c-.097-.136-.168-.305-.393-.89L13.45 4.98Zm-1.3 3.92.6-1.56.6 1.56.03.077c.183.476.32.835.541 1.145.195.274.433.512.707.707.31.22.669.358 1.145.541l.076.03 1.562.6-1.562.6-.076.03c-.476.183-.835.32-1.145.541a3.003 3.003 0 0 0-.707.707c-.22.31-.358.669-.541 1.145l-.03.076-.6 1.562-.6-1.562-.03-.076c-.183-.476-.32-.835-.541-1.145a3.003 3.003 0 0 0-.707-.707c-.31-.22-.669-.358-1.145-.541l-.076-.03-1.562-.6 1.562-.6.076-.03c.476-.183.835-.32 1.145-.541.274-.195.512-.433.707-.707.22-.31.358-.669.541-1.145l.03-.076ZM8.23 16.83a.75.75 0 1 0-1.06-1.061l-.796.795-.795-.795a.75.75 0 0 0-1.061 1.06l.795.796-.795.796a.75.75 0 0 0 1.06 1.06l.796-.795.795.795a.75.75 0 1 0 1.061-1.06l-.795-.796.795-.796Z"
			clipRule="evenodd"
		/>
	</svg>
);
export default SvgNft24;
