
import React from 'react';
export const GridOutline = ({fill="currentColor",...other}) => {
  return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<rect x="48" y="48" width="176" height="176" rx="20" ry="20" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>

<rect x="288" y="48" width="176" height="176" rx="20" ry="20" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>

<rect x="48" y="288" width="176" height="176" rx="20" ry="20" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>

<rect x="288" y="288" width="176" height="176" rx="20" ry="20" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};
