shapes.js 495 Bytes
Newer Older
Robin Borgogno's avatar
Robin Borgogno committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import Icon from '../components/Icon.vue'

Icon.register({
  shapes: {
    width: 512,
    height: 512,
    paths: [
      {
        d: 'M128 256c70.6 0 128 57.4 128 128s-57.4 128-128 128-128-57.4-128-128 57.4-128 128-128zM507 201.1c14.2 24.4-3.6 54.9-32.1 54.9h-213.8c-28.5 0-46.3-30.5-32.1-54.9l106.9-182.8c6.5-11 18.4-18.3 32-18.3 13.7 0 25.6 7.4 32.1 18.3zM480 288c17.7 0 32 14.3 32 32v160c0 17.7-14.3 32-32 32h-160c-17.7 0-32-14.3-32-32v-160c0-17.7 14.3-32 32-32h160z'
      }
    ]
  }
})