Skip to content

Conversation

@Khizarshah01
Copy link
Contributor

@Khizarshah01 Khizarshah01 commented Jan 11, 2026

this PR fixes the documentation example for the Dock component. The current example shows multiple icons wrapped inside a single DockIcon component, which creates a break layout where icons are stacked vertically within one dock item. this does not match the demo shown on the website

Changes Made:

  • Updated the usage example in /apps/www/content/docs/components/dock.mdx
  • Changed from single DockIcon containing all icons to multiple DockIcon components

Before:

<Dock>
  <DockIcon>
    <Home />
    <Settings />
    <Search />
  </DockIcon>
</Dock>

After:

<Dock>
  <DockIcon>
    <Home />
  </DockIcon>
  <DockIcon>
    <Settings />
  </DockIcon>
  <DockIcon>
    <Search />
  </DockIcon>
</Dock>

issue #870

@vercel
Copy link

vercel bot commented Jan 11, 2026

@Khizarshah01 is attempting to deploy a commit to the product-studio Team on Vercel.

A member of the Team first needs to authorize it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant