import React from 'react'

export const ExpandGroup: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
  return (
    <svg
      width="11"
      height="11"
      {...props}
      fill="none"
      viewBox="0 0 11 11"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M6.625 6.125H6.125V6.625V8.35714H5.875V6.625V6.125H5.375H3.64286V5.875H5.375H5.875V5.375V3.64286H6.125V5.375V5.875H6.625H8.35714V6.125H6.625ZM10.5 2.07143V9.92857C10.5 10.2439 10.2439 10.5 9.92857 10.5H2.07143C1.75605 10.5 1.5 10.2439 1.5 9.92857V2.07143C1.5 1.75605 1.75605 1.5 2.07143 1.5H9.92857C10.2439 1.5 10.5 1.75605 10.5 2.07143ZM10.4286 9.79464V2.20536C10.4286 1.85556 10.1444 1.57143 9.79464 1.57143H2.20536C1.85555 1.57143 1.57143 1.85555 1.57143 2.20536V9.79464C1.57143 10.1444 1.85556 10.4286 2.20536 10.4286H9.79464C10.1444 10.4286 10.4286 10.1444 10.4286 9.79464Z"
        stroke="#9D9EA9"
      />
    </svg>
  )
}
