Components
ReUI Item with the first 10 official ReUI examples, preserved from the MIT-licensed source registry.

import {
Avatar,
AvatarFallback,
AvatarImage,
} from "@/components/ui/reui-item-utils/avatar"
import { Button } from "@/components/ui/reui-item-utils/button"
import {
Item,
ItemActions,
ItemContent,
ItemDescription,
ItemMedia,
ItemTitle,
} from "@/components/ui/reui-item"
export default function Pattern() {
return (
<div className="mx-auto flex w-full max-w-md flex-col gap-2">
<Item variant="outline" size="xs">
<ItemMedia>
<Avatar>
<AvatarImage
src="https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=96&h=96&dpr=2&q=80"
alt="Alex Johnson"
/>
<AvatarFallback>AJ</AvatarFallback>
</Avatar>
</ItemMedia>
<ItemContent>
<ItemTitle>Alex Johnson</ItemTitle>
<ItemDescription>Senior Software Engineer</ItemDescription>
</ItemContent>
<ItemActions>
<Button variant="outline" size="sm">
Follow
</Button>
</ItemActions>
</Item>
<Item variant="outline" size="xs">
<ItemMedia>
<Avatar>
<AvatarImage
src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=96&h=96&dpr=2&q=80"
alt="Sarah Chen"
/>
<AvatarFallback>SC</AvatarFallback>
</Avatar>
</ItemMedia>
<ItemContent>
<ItemTitle>Sarah Chen</ItemTitle>
<ItemDescription>Product Designer</ItemDescription>
</ItemContent>
<ItemActions>
<Button size="sm">Following</Button>
</ItemActions>
</Item>
</div>
)
}







