
import React from 'react'

export default props => <svg {...props}

  viewBox="0 0 24 24"
  fill="none"
  xmlns="http://www.w3.org/2000/svg"
>
  <rect
    opacity="0.5"
    x="6"
    y="6"
    width="8"
    height="8"
    stroke="currentColor"
    stroke-width="2"
  />
  <path
    fill-rule="evenodd"
    clip-rule="evenodd"
    d="M9 9H19V19H9V9ZM15 11H17V17H11V15H15V11Z"
    fill="currentColor"
  />
</svg>

