card
Card with link
Card with link
Загрузка превью…
src/card/c-card-5.vue
<!--
Расхождение с апстримом: `IconPlaceholder` заменена инлайновым `<svg>`
(lucide-react v0.545.0 "external-link") — см. docs/PORTING.md §5.
-->
<script setup lang="ts">
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"
</script>
<template>
<Card class="w-full max-w-xs gap-2 pt-5">
<CardHeader>
<CardTitle>Need a help in Claim?</CardTitle>
</CardHeader>
<CardContent class="mb-2">
<p>
Go to this step by step guideline process on how to certify for your
weekly benefits:
</p>
</CardContent>
<CardFooter class="py-2">
<Button variant="link" class="px-0">
See our guideline
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
class="lucide lucide-external-link"
><path d="M15 3h6v6" /><path d="M10 14 21 3" /><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" /></svg>
</Button>
</CardFooter>
</Card>
</template>