<template functional> <span :aria-hidden="props.decorative" :aria-label="props.title" :class="[data.class, data.staticClass]" class="material-design-icon code-brackets-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="M15,4V6H18V18H15V20H20V4M4,4V20H9V18H6V6H9V4H4Z"> <title>{{ props.title }}</title> </path> </svg> </span> </template> <script> export default { name: "CodeBracketsIcon", props: { title: { type: String, default: "Code Brackets icon" }, decorative: { type: Boolean, default: false }, fillColor: { type: String, default: "currentColor" }, size: { type: Number, default: 24 } } } </script>