| 123456789101112131415 |
- <script setup lang="ts">
- import { statusTipProps } from 'wot-design-uni/components/wd-status-tip/types'
- const props = defineProps({ ...statusTipProps, image: { type: String, default: '' }, imageSize: { type: String, default: '248rpx' } })
- </script>
- <template>
- <wd-status-tip v-bind="props">
- <template #image>
- <i class="iconfont text-[var(--them-color)]" :style="{ fontSize: imageSize }"></i>
- </template>
- </wd-status-tip>
- </template>
- <style lang="scss" scoped></style>
|