item
Items with icon media and action buttons
Items with icon media and action buttons
Загрузка превью…
src/item/c-item-2.vue
<script setup lang="ts">
import { Button } from "@/components/ui/button"
import { Item, ItemActions, ItemContent, ItemDescription, ItemMedia, ItemTitle } from "@/components/ui/item"
</script>
<template>
<div class="mx-auto flex w-full max-w-md flex-col gap-2">
<Item variant="outline">
<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="m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7" />
<rect x="2" y="4" width="20" height="16" rx="2" />
</svg>
</ItemMedia>
<ItemContent>
<ItemTitle>Email Notifications</ItemTitle>
<ItemDescription>Receive updates via email</ItemDescription>
</ItemContent>
<ItemActions>
<Button variant="outline" size="sm">
Configure
</Button>
</ItemActions>
</Item>
<Item variant="outline">
<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="M10.268 21a2 2 0 0 0 3.464 0" />
<path d="M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326" />
</svg>
</ItemMedia>
<ItemContent>
<ItemTitle>Push Notifications</ItemTitle>
<ItemDescription>Get notified on your device</ItemDescription>
</ItemContent>
<ItemActions>
<Button size="sm">Enable</Button>
</ItemActions>
</Item>
</div>
</template>