item
agentmesh/itemFreeComponent
shadcn/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://raw.githubusercontent.com/ombhanushaliii/agentmesh/main/example/ui/apps/v4/public/r/styles/base-vega/item.jsonSource
1import * as React from "react"2import { mergeProps } from "@base-ui/react/merge-props"3import { useRender } from "@base-ui/react/use-render"4import { cva, type VariantProps } from "class-variance-authority"56import { cn } from "@/registry/base-vega/lib/utils"7import { Separator } from "@/registry/base-vega/ui/separator"89function ItemGroup({ className, ...props }: React.ComponentProps<"div">) {10 return (11 <div12 role="list"13 data-slot="item-group"14 className={cn(15 "group/item-group flex w-full flex-col gap-4 has-data-[size=sm]:gap-2.5 has-data-[size=xs]:gap-2",16 className17 )}18 {...props}19 />20 )21}2223function ItemSeparator({24 className,25 ...props26}: React.ComponentProps<typeof Separator>) {27 return (28 <Separator29 data-slot="item-separator"30 orientation="horizontal"31 className={cn("my-2", className)}32 {...props}33 />34 )35}3637const itemVariants = cva(38 "group/item flex w-full flex-wrap items-center rounded-md border text-sm transition-colors duration-100 outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 [a]:transition-colors [a]:hover:bg-muted",39 {40 variants: {41 variant: {42 default: "border-transparent",43 outline: "border-border",44 muted: "border-transparent bg-muted/50",45 },46 size: {47 default: "gap-3.5 px-4 py-3.5",48 sm: "gap-2.5 px-3 py-2.5",49 xs: "gap-2 px-2.5 py-2 in-data-[slot=dropdown-menu-content]:p-0",50 },51 },52 defaultVariants: {53 variant: "default",54 size: "default",55 },56 }57)5859function Item({60 className,61 variant = "default",62 size = "default",63 render,64 ...props65}: useRender.ComponentProps<"div"> & VariantProps<typeof itemVariants>) {66 return useRender({67 defaultTagName: "div",68 props: mergeProps<"div">(69 {70 className: cn(itemVariants({ variant, size, className })),71 },72 props73 ),74 render,75 state: {76 slot: "item",77 variant,78 size,79 },80 })81}8283const itemMediaVariants = cva(84 "flex shrink-0 items-center justify-center gap-2 group-has-data-[slot=item-description]/item:translate-y-0.5 group-has-data-[slot=item-description]/item:self-start [&_svg]:pointer-events-none",85 {86 variants: {87 variant: {88 default: "bg-transparent",89 icon: "[&_svg:not([class*='size-'])]:size-4",90 image:91// … truncated
What it pulls in
Other registry items
Files it writes
More from shadcn/ui
All 201 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordionaccordion | shadcn/ui | Components | Free | no deps | |
| alertalert | shadcn/ui | Components | Free | no deps | |
| alert-dialogalert-dialog | shadcn/ui | Components | Free | no deps | |
| aspect-ratioaspect-ratio | shadcn/ui | Components | Free | no deps | |
| avataravatar | shadcn/ui | Components | Free | no deps | |
| badgebadge | shadcn/ui | Components | Free | no deps | |
| breadcrumbbreadcrumb | shadcn/ui | Components | Free | no deps | |
| buttonbutton | shadcn/ui | Components | Free | no deps |
