<template functional>
  <span :aria-hidden="props.decorative"
        :aria-label="props.title"
        :class="[data.class, data.staticClass]"
        class="material-design-icon mailbox-up-icon"
        role="img"
        @click="listeners.click ? listeners.click : () => true">
    <svg :fill="props.fillColor"
         class="material-design-icon__svg"
         :width="props.size"
         :height="props.size"
         viewBox="0 0 24 24">
      <path d="M5,9H9V11H5V9M22,9V18C22,19.1 21.1,20 20,20H2V9C2,6.24 4.24,4 7,4H17C19.76,4 22,6.24 22,9M10,9C10,7.34 8.66,6 7,6C5.34,6 4,7.34 4,9V18H10V9M16,7H12V13H14V9H16V7Z">
        <title>{{ props.title }}</title>
      </path>
    </svg>
  </span>
</template>

<script>
export default {
  name: "MailboxUpIcon",
  props: {
    title: {
      type: String,
      default: "Mailbox Up icon"
    },
    decorative: {
      type: Boolean,
      default: false
    },
    fillColor: {
      type: String,
      default: "currentColor"
    },
    size: {
      type: Number,
      default: 24
    }
  }
}
</script>