icon-tile
List row
Icon tile in a list row
Загрузка превью…
src/icon-tile/c-icon-tile-10.vue
<!--
Расхождение с апстримом: `IconPlaceholder` заменена инлайновым `<svg>`
(lucide-react v0.545.0 "file-text") — см. docs/PORTING.md §5.
-->
<script setup lang="ts">
import { IconTile } from "@/components/reui/icon-tile"
import { Item, ItemContent, ItemDescription, ItemMedia, ItemTitle } from "@/components/ui/item"
</script>
<template>
<div class="flex w-full max-w-sm items-center justify-center">
<Item variant="outline">
<ItemMedia>
<IconTile variant="elevated" size="sm" aria-hidden="true">
<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-file-text"
><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" /><path d="M14 2v4a2 2 0 0 0 2 2h4" /><path d="M10 9H8" /><path d="M16 13H8" /><path d="M16 17H8" /></svg>
</IconTile>
</ItemMedia>
<ItemContent>
<ItemTitle>Quarterly report</ItemTitle>
<ItemDescription>Updated 2 hours ago by Anna</ItemDescription>
</ItemContent>
</Item>
</div>
</template>