summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkInfo.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/client/src/components/MkInfo.vue')
-rw-r--r--packages/client/src/components/MkInfo.vue34
1 files changed, 0 insertions, 34 deletions
diff --git a/packages/client/src/components/MkInfo.vue b/packages/client/src/components/MkInfo.vue
deleted file mode 100644
index 7aaf2c5bcb..0000000000
--- a/packages/client/src/components/MkInfo.vue
+++ /dev/null
@@ -1,34 +0,0 @@
-<template>
-<div class="fpezltsf" :class="{ warn }">
- <i v-if="warn" class="ti ti-alert-triangle"></i>
- <i v-else class="ti ti-info-circle"></i>
- <slot></slot>
-</div>
-</template>
-
-<script lang="ts" setup>
-import { } from 'vue';
-
-const props = defineProps<{
- warn?: boolean;
-}>();
-</script>
-
-<style lang="scss" scoped>
-.fpezltsf {
- padding: 12px 14px;
- font-size: 90%;
- background: var(--infoBg);
- color: var(--infoFg);
- border-radius: var(--radius);
-
- &.warn {
- background: var(--infoWarnBg);
- color: var(--infoWarnFg);
- }
-
- > i {
- margin-right: 4px;
- }
-}
-</style>