Added plus icon
This commit is contained in:
parent
c5442f709d
commit
915db146e8
|
@ -21,7 +21,7 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import MiPlus from 'vue-material-design-icons/plus.vue';
|
||||
import { MiPlus } from './MaterialIcon';
|
||||
|
||||
export default {
|
||||
props: [
|
||||
|
|
|
@ -8,3 +8,4 @@ export { default as MiClose } from './materialicons/Close.vue';
|
|||
export { default as MiMinus } from './materialicons/Minus.vue';
|
||||
export { default as MiOpenInNew } from './materialicons/OpenInNew.vue';
|
||||
export { default as MiTwitterCircle } from './materialicons/TwitterCircle.vue';
|
||||
export { default as MiPlus } from './materialicons/Plus.vue';
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
/**
|
||||
* BetterDiscord Material Design Icon
|
||||
* Copyright (c) 2015-present Jiiks/JsSucks - https://github.com/Jiiks / https://github.com/JsSucks
|
||||
* All rights reserved.
|
||||
* https://betterdiscord.net
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* Material Design Icons
|
||||
* Copyright (c) 2014 Google
|
||||
* Apache 2.0 LICENSE
|
||||
* https://www.apache.org/licenses/LICENSE-2.0.txt
|
||||
*/
|
||||
|
||||
<template>
|
||||
<span class="bd-material-design-icon">
|
||||
<svg :width="size || 24" :height="size || 24" viewBox="0 0 24 24">
|
||||
<path d="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z" />
|
||||
</svg>
|
||||
</span>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: ['size']
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue