primevue-mirror/components/lib/icons/blank/index.vue

14 lines
351 B
Vue
Raw Normal View History

2024-01-24 10:17:05 +00:00
<template>
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" v-bind="pti()">
<rect width="1" height="1" fill="currentColor" fill-opacity="0" />
</svg>
</template>
<script>
import BaseIcon from 'primevue/baseicon';
export default {
name: 'BlankIcon',
extends: BaseIcon
};
</script>