export default function Building2({
  width,
  height,
  className,
}: {
  width?: number;
  height?: number;
  className?: string;
}) {
  return (
    <svg
      width={width || 20}
      height={height || 20}
      viewBox="0 0 20 20"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M6.2474 5.83333H8.53906M6.2474 9.16667H8.53906M6.2474 12.5H8.53906M11.4557 5.83333H13.7474M11.4557 9.16667H13.7474M11.4557 12.5H13.7474M16.6641 17.5V5.16667C16.6641 4.23325 16.6641 3.76653 16.4824 3.41002C16.3226 3.09641 16.0676 2.84144 15.7541 2.68166C15.3976 2.5 14.9308 2.5 13.9974 2.5H5.9974C5.06397 2.5 4.59726 2.5 4.24075 2.68166C3.92714 2.84144 3.67217 3.09641 3.51239 3.41002C3.33073 3.76653 3.33073 4.23325 3.33073 5.16667V17.5M18.3307 17.5H1.66406"
        stroke="currentColor"
        strokeWidth="1.5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  );
}
