index.vue 621 Bytes
<template>
  <div
    style="padding: 0 15px;"
    @click="toggleClick"
  >
    <SvgIcon
      :class="{ 'is-active': isActive }"
      class="hamburger"
      icon-class="menu"
    />
  </div>
</template>

<script>
export default {
  name: 'Hamburger',
  props: {
    isActive: {
      type: Boolean
    }
  },
  methods: {
    toggleClick() {
      this.$emit('toggleClick')
    }
  }
}
</script>

<style scoped>
.hamburger {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  color: #ffffff;
  transform: rotate(180deg);
}

.hamburger.is-active {
  transform: rotate(0deg);
}
</style>