31 lines
994 B
Vue
31 lines
994 B
Vue
|
<template>
|
||
|
<span v-bind="$attrs" :aria-hidden="!title" :aria-label="title" class="material-design-icon dots-horizontal-icon"
|
||
|
role="img" @click="$emit('click', $event)">
|
||
|
<svg :fill="fillColor" class="material-design-icon__svg" :width="size" :height="size" viewBox="0 0 24 24">
|
||
|
<path
|
||
|
d="M16,12A2,2 0 0,1 18,10A2,2 0 0,1 20,12A2,2 0 0,1 18,14A2,2 0 0,1 16,12M10,12A2,2 0 0,1 12,10A2,2 0 0,1 14,12A2,2 0 0,1 12,14A2,2 0 0,1 10,12M4,12A2,2 0 0,1 6,10A2,2 0 0,1 8,12A2,2 0 0,1 6,14A2,2 0 0,1 4,12Z">
|
||
|
<title v-if="title">{{ title }}</title>
|
||
|
</path>
|
||
|
</svg>
|
||
|
</span>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "DotsHorizontalIcon",
|
||
|
emits: ['click'],
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String,
|
||
|
},
|
||
|
fillColor: {
|
||
|
type: String,
|
||
|
default: "currentColor"
|
||
|
},
|
||
|
size: {
|
||
|
type: Number,
|
||
|
default: 24
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|