/home/ivoiecob/email.hirewise-va.com/modules/AdminPanelWebclient/vue/src/assets/icons/TeamGroup.vue
<template>
  <svg
      xmlns="http://www.w3.org/2000/svg"
      version="1.1"
      viewBox="0 0 1024 1024"
      :width="size"
      :height="size"
  >
    <path
      :fill="color"
      d="M510.687 147.375c-59.743 0-107.353 23.892-139.25 62.438-28.45 34.381-44.181 79.901-49.75 130-1.312 2.271-2.085 4.994-2.085 7.899 0 1.527 0.214 3.003 0.613 4.402-0.031-0.071-0.024-0.030-0.028 0.012-11.117 12.446-17.188 29.707-17.188 48.938 0 23.166 10.003 42.515 26.25 54.25 13.986 53.199 42.283 100.998 79.5 133.312-1.162 33.441-10.747 56.671-26.063 74.5-16.32 18.999-39.792 32.465-67.375 42.938-30.092 11.403-67.308 29.141-99.875 54.688s-60.952 59.404-69.812 102.75c-0.211 0.976-0.333 2.097-0.333 3.247 0 8.844 7.17 16.014 16.014 16.014 7.715 0 14.156-5.456 15.675-12.72 6.837-33.462 29.357-61.475 58.206-84.104s63.576-39.356 91.5-49.938c30.402-11.543 59.049-27.247 80.313-52 16.447-19.146 27.716-43.807 32.062-73.938 21.946 12.25 45.858 19.938 71.625 19.938 30.748 0 59.073-10.322 84.188-27.313 3.477 33.426 14.894 60.676 32.625 81.313 21.268 24.753 49.894 40.457 80.312 52 27.909 10.581 62.647 27.307 91.5 49.938s51.368 50.644 58.188 84c1.537 7.368 7.978 12.823 15.693 12.823 8.844 0 16.014-7.17 16.014-16.014 0-1.15-0.121-2.271-0.351-3.352-8.842-43.243-37.223-77.099-69.794-102.645s-69.8-43.285-99.875-54.688c-27.598-10.473-51.051-23.939-67.375-42.938s-26.5-43.667-26.5-80.812c0.002-0.082 0.002-0.178 0.002-0.275 0-1.412-0.183-2.782-0.527-4.086 31.017-31.404 54.404-74.458 66.963-121.326 17.937-11.017 29.25-31.211 29.25-55.562 0-20.347-7.717-37.757-20.25-50.25-4.318-54.827-20.492-104.846-51.437-141.812-31.889-38.093-79.262-61.625-138.625-61.625zM510.687 179.375c51.197 0 87.808 18.825 114.063 50.187 17.716 21.162 30.037 48.863 37.5 80.313-30.984 2.865-53.466-6.867-74.062-31.188-2.953-3.456-7.316-5.633-12.188-5.633-0.176 0-0.351 0.003-0.525 0.008-5.461 0.161-10.236 3.061-12.999 7.373-31.894 50.755-84.994 63.862-133.101 64.439-36.026 0.431-61.518-5.45-75.062-9 5.795-42.099 19.622-78.947 41.75-105.687 26.28-31.758 63.104-50.812 114.625-50.812zM578.625 310c24.671 22.015 54.412 34.951 89.125 31.875 0.618 5.283 1.648 10.309 2 15.75 0.334 5.068 2.98 9.455 6.884 12.153 5.337 3.651 12.366 15.811 12.366 31.285 0 19.011-10.397 31.355-15.375 32.625-5.663 1.502-10.028 5.888-11.475 11.451-21.879 85.925-83.742 152.861-151.462 152.861-67.971 0-130.076-67.453-151.687-153.687-1.278-5.041-4.822-9.057-9.456-10.961-5.233-2.077-14.544-14.505-14.544-32.289 0-14.134 5.797-25.642 10.938-30.062 1.154-1.026 2.147-2.199 2.959-3.495 16.503 4.11 43.178 9.822 80.852 9.37 49.615-0.595 109.038-16.222 148.875-66.875z"
    ></path>
  </svg>
</template>

<script>
export default {
  name: 'TeamGroup',

  props: {
    size: {
      type: Number,
      default: 32
    },
    color: {
      type: String,
      default: '#000'
    },
  },
}
</script>

<style scoped>

</style>