You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
463 B
23 lines
463 B
<template> |
|
<svg |
|
xmlns="http://www.w3.org/2000/svg" |
|
:width="width" |
|
:height="height" |
|
:viewBox="`0 0 24 24`" |
|
:aria-labelledby="iconName" |
|
role="presentation" |
|
> |
|
<title lang="en">{{ iconName }} icon</title> |
|
<slot></slot> |
|
</svg> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
props: { |
|
iconName: { type: String }, |
|
width: { type: [Number, String], default: 20 }, |
|
height: { type: [Number, String], default: 20 } |
|
} |
|
}; |
|
</script>
|
|
|