item
Integration items with connect actions
Integration items with connect actions
Загрузка превью…
src/item/c-item-11.vue
<script setup lang="ts">
import { Badge } from "@/components/reui/badge"
import { Button } from "@/components/ui/button"
import { Item, ItemActions, ItemContent, ItemDescription, ItemGroup, ItemMedia, ItemTitle } from "@/components/ui/item"
</script>
<template>
<div class="mx-auto flex w-full max-w-md flex-col">
<ItemGroup>
<Item variant="outline" size="xs">
<ItemMedia variant="icon">
<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"
>
<ellipse cx="12" cy="5" rx="9" ry="3" />
<path d="M3 5V19A9 3 0 0 0 21 19V5" />
<path d="M3 12A9 3 0 0 0 21 12" />
</svg>
</ItemMedia>
<ItemContent>
<ItemTitle>Database</ItemTitle>
<ItemDescription>
Sync records from your data warehouse
</ItemDescription>
</ItemContent>
<ItemActions>
<Badge variant="success-light" size="sm">
Connected
</Badge>
</ItemActions>
</Item>
<Item variant="outline" size="xs">
<ItemMedia variant="icon">
<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"
>
<path d="M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2" />
<path d="m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06" />
<path d="m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8" />
</svg>
</ItemMedia>
<ItemContent>
<ItemTitle>Webhooks</ItemTitle>
<ItemDescription>
Push realtime events to your endpoints
</ItemDescription>
</ItemContent>
<ItemActions>
<Badge variant="success-light" size="sm">
Connected
</Badge>
</ItemActions>
</Item>
<Item variant="outline" size="xs">
<ItemMedia variant="icon">
<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"
>
<path d="m16 18 6-6-6-6" />
<path d="m8 6-6 6 6 6" />
</svg>
</ItemMedia>
<ItemContent>
<ItemTitle>API access</ItemTitle>
<ItemDescription>
Build custom integrations with the REST API
</ItemDescription>
</ItemContent>
<ItemActions>
<Button variant="outline" size="sm">
Connect
</Button>
</ItemActions>
</Item>
</ItemGroup>
</div>
</template>