export const NormalGridIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      fill="none"
      viewBox="0 0 18 18"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M16.6996 0.599976H1.29961C0.913209 0.599976 0.599609 0.913575 0.599609 1.29998V7.59997C0.599609 7.98637 0.913209 8.29997 1.29961 8.29997H16.6996C17.086 8.29997 17.3996 7.98637 17.3996 7.59997V1.29998C17.3996 0.913575 17.086 0.599976 16.6996 0.599976Z"
        fill="currentColor"
      />
      <path
        d="M16.6996 9.59998H1.29961C0.913209 9.59998 0.599609 9.91358 0.599609 10.3V16.6C0.599609 16.9864 0.913209 17.3 1.29961 17.3H16.6996C17.086 17.3 17.3996 16.9864 17.3996 16.6V10.3C17.3996 9.91358 17.086 9.59998 16.6996 9.59998Z"
        fill="currentColor"
      />
    </svg>
  );
};
