Nav Item

Sidebar item with icon, active state, right-edge indicator dot. Mono label by default; sans available.

Add to your project

One command adds this component to your project.

1

Run the following command. New project? Run npx shadcn@latest init first to set up Tailwind and path aliases.

npx shadcn@latest add @aicanvas/andromeda-nav-item

Props

Every prop this component accepts. Any other prop is forwarded to the underlying element.

PropTypeDefaultDescription
iconReact.ComponentType<{ size?: number, weight?: string }>-Optional icon component rendered at 20px before the label.
labelreqReact.ReactNode-Visible content of the nav row.
activebooleanfalseMarks the row as the current selection, applying accent text and the indicator dot.
monobooleantrueRenders the label in uppercase mono type; set false for sans.
asChildbooleanfalseRenders via Radix Slot, merging props onto the child instead of a native button.
type'button'|'submit'|'reset''button'HTML button type; defaults to 'button' to avoid accidental form submits, and is omitted when asChild is set.
layoutGroupIdstring'andromeda-navitem-indicator'Override only when two distinct nav lists share a viewport and you don't want the active dot to animate between them. To get the slide between sibling NavItems, wrap the list in framer's <LayoutGroup>.
classNamestring-Extra classes merged onto the root element.
styleReact.CSSProperties-Inline styles merged onto the root element.

More Andromeda components