export const LayoutIcon: React.FC<React.SVGAttributes<{}>> = (props) => {
  return (
    <svg
      viewBox="0 0 18 18"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      {...props}
    >
      <path
        d="M14.7857 0H3.21427C1.43995 0.00210937 0.00210937 1.43995 0 3.21427V14.7857C0.00210937 16.56 1.43995 17.9979 3.21427 18H14.7857C16.56 17.9979 17.9979 16.56 18 14.7857V3.21427C17.9979 1.43995 16.56 0.00210937 14.7857 0ZM8.35715 16.7143H3.21427C2.14915 16.7143 1.2857 15.8508 1.2857 14.7857V3.21427C1.2857 2.14915 2.14915 1.2857 3.21427 1.2857H8.35711V16.7143H8.35715ZM16.7143 14.7857C16.7143 15.8508 15.8508 16.7143 14.7857 16.7143H9.64285V9.64285H16.7143V14.7857ZM16.7143 8.35715H9.64285V1.2857H14.7857C15.8508 1.2857 16.7143 2.14915 16.7143 3.21427V8.35715Z"
        fill="currentColor"
      />
    </svg>
  );
};
