Added plus icon

This commit is contained in:
Samuel Elliott 2018-02-03 15:00:36 +00:00
parent c5442f709d
commit 915db146e8
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
3 changed files with 29 additions and 1 deletions

View File

@ -21,7 +21,7 @@
</template>
<script>
import MiPlus from 'vue-material-design-icons/plus.vue';
import { MiPlus } from './MaterialIcon';
export default {
props: [

View File

@ -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';

View File

@ -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>