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_link_on_right.vue
2024-01-24 19:02:44 +08:00

22 lines
759 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="rounded-md bg-blue-50 p-4">
<div class="flex">
<div class="flex-shrink-0">
<InformationCircleIcon class="h-5 w-5 text-blue-400" aria-hidden="true" />
</div>
<div class="ml-3 flex-1 md:flex md:justify-between">
<p class="text-sm text-blue-700">A new software update is available. See whats new in version 2.0.4.</p>
<p class="mt-3 text-sm md:ml-6 md:mt-0">
<a href="#" class="whitespace-nowrap font-medium text-blue-700 hover:text-blue-600">
Details
<span aria-hidden="true"> &rarr;</span>
</a>
</p>
</div>
</div>
</div>
</template>
<script setup>
import { InformationCircleIcon } from '@heroicons/vue/20/solid'
</script>