This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/feedback/alerts/with_accent_border.vue
2024-01-24 19:02:44 +08:00

20 lines
640 B
Vue

<template>
<div class="border-l-4 border-yellow-400 bg-yellow-50 p-4">
<div class="flex">
<div class="flex-shrink-0">
<ExclamationTriangleIcon class="h-5 w-5 text-yellow-400" aria-hidden="true" />
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">
You have no credits left.
{{ ' ' }}
<a href="#" class="font-medium text-yellow-700 underline hover:text-yellow-600">Upgrade your account to add more credits.</a>
</p>
</div>
</div>
</div>
</template>
<script setup>
import { ExclamationTriangleIcon } from '@heroicons/vue/20/solid'
</script>