export default function Offer({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 24}
      height={height || 24}
      viewBox="0 0 24 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M7.53953 1.23085C8.28261 0.92305 9.11753 0.923049 9.86061 1.23085L11.6037 1.9529C11.8567 2.05733 12.141 2.0572 12.3938 1.95231L12.3958 1.95149L14.1404 1.23192C14.8832 0.92453 15.7183 0.92443 16.4611 1.23209C17.204 1.53984 17.7943 2.13006 18.1021 2.87295L18.8073 4.57552C18.8136 4.58896 18.8196 4.60259 18.8253 4.61641C18.9298 4.86924 19.1304 5.07024 19.383 5.1753L21.1279 5.8981C21.871 6.20591 22.4614 6.7963 22.7692 7.53939C23.0769 8.28247 23.0769 9.11739 22.7692 9.86048L22.0468 11.6045C21.9417 11.8581 21.942 12.1423 22.0468 12.394L22.0476 12.3961L22.7684 14.1388C22.9209 14.5068 22.9996 14.9015 22.9996 15.2998C22.9997 15.6982 22.9213 16.0927 22.7688 16.4608C22.6163 16.8289 22.3929 17.1634 22.1111 17.445C21.8294 17.7266 21.495 17.95 21.127 18.1024L19.383 18.8247C19.1303 18.9292 18.9288 19.13 18.8237 19.3824L18.1008 21.1277C17.793 21.8708 17.2027 22.4612 16.4596 22.769C15.7165 23.0768 14.8816 23.0768 14.1385 22.769L12.3954 22.0469C12.1424 21.9424 11.8582 21.9426 11.6053 22.0475L11.6043 22.048L9.85912 22.7698C9.11645 23.0769 8.28215 23.0767 7.53967 22.7691C6.7972 22.4616 6.20716 21.8719 5.89917 21.1296L5.17583 19.3833C5.07122 19.1302 4.87017 18.9286 4.61734 18.8236L2.87297 18.101C2.13021 17.7933 1.54002 17.2033 1.23213 16.4606C0.924227 15.718 0.923809 14.8835 1.23096 14.1405L1.95324 12.3967C2.05767 12.1437 2.05754 11.8593 1.95265 11.6065L1.23121 9.85975C1.07879 9.49188 1.00006 9.09699 1 8.69879C0.999936 8.30038 1.07838 7.90585 1.23084 7.53776C1.3833 7.16967 1.6068 6.83523 1.88856 6.55355C2.17025 6.27194 2.50465 6.04858 2.87267 5.89623L4.6166 5.17384C4.86916 5.06941 5.0706 4.86887 5.17575 4.61659L5.8983 2.87214C6.20608 2.12905 6.79645 1.53866 7.53953 1.23085ZM16.7071 8.70711C17.0976 8.31658 17.0976 7.68342 16.7071 7.29289C16.3166 6.90237 15.6834 6.90237 15.2929 7.29289L7.29289 15.2929C6.90237 15.6834 6.90237 16.3166 7.29289 16.7071C7.68342 17.0976 8.31658 17.0976 8.70711 16.7071L16.7071 8.70711ZM7.5 9C7.5 8.17157 8.17157 7.5 9 7.5C9.82843 7.5 10.5 8.17157 10.5 9C10.5 9.82843 9.82843 10.5 9 10.5C8.17157 10.5 7.5 9.82843 7.5 9ZM13.5 15C13.5 14.1716 14.1716 13.5 15 13.5C15.8284 13.5 16.5 14.1716 16.5 15C16.5 15.8284 15.8284 16.5 15 16.5C14.1716 16.5 13.5 15.8284 13.5 15Z"
        fill="currentColor"
      />
    </svg>
  );
}
