2
0
mirror of https://github.com/frappe/books.git synced 2025-04-06 10:11:51 +00:00

feat(ui): neupos icon

This commit is contained in:
akshayitzme 2023-08-22 12:13:38 +05:30 committed by akshayitzme
parent 65018bd750
commit 4f3e3536d2
2 changed files with 17 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import Inventory from './inventory.vue';
import Invoice from './invoice.vue';
import Item from './item.vue';
import Mail from './mail.vue';
import NeuPOS from './neupos.vue';
import OpeningAc from './opening-ac.vue';
import Percentage from './percentage.vue';
import Property from './property.vue';
@ -36,6 +37,7 @@ export default {
'invoice': Invoice,
'item': Item,
'mail': Mail,
'neupos': NeuPOS,
'opening-ac': OpeningAc,
'percentage': Percentage,
'property': Property,

View File

@ -0,0 +1,15 @@
<template>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path fill="none" d="M0 0h24v24H0z"></path>
<path
:fill="darkColor"
d="M21 13V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V13H2V11L3 6H21L22 11V13H21ZM5 13V19H19V13H5ZM6 14H14V17H6V14ZM3 3H21V5H3V3Z"
></path>
</svg>
</template>
<script>
import Base from '../base.vue';
export default {
extends: Base,
};
</script>