<template functional> <span :aria-hidden="props.decorative" :aria-label="props.title" :class="[data.class, data.staticClass]" class="material-design-icon alpha-h-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="M9,7V17H11V13H13V17H15V7H13V11H11V7H9Z"> <title>{{ props.title }}</title> </path> </svg> </span> </template> <script> export default { name: "AlphaHIcon", props: { title: { type: String, default: "Alpha H icon" }, decorative: { type: Boolean, default: false }, fillColor: { type: String, default: "currentColor" }, size: { type: Number, default: 24 } } } </script>