Skip to content

feat(ui): add Mosaic Menu component updates - #9279

Merged
austincalvelage merged 14 commits into
carp/mosaic-menufrom
austin/mosaic-menu-updates
Jul 30, 2026
Merged

feat(ui): add Mosaic Menu component updates#9279
austincalvelage merged 14 commits into
carp/mosaic-menufrom
austin/mosaic-menu-updates

Conversation

@austincalvelage

@austincalvelage austincalvelage commented Jul 30, 2026

Copy link
Copy Markdown
Member

Description

Preview: https://swingset-bajt81n81.clerkstage.dev/components/menu

Updates the Mosaic Menu to match the Figma:

  • Aligns the menu dimensions, spacing, interaction states, and shadows with the design.
  • Composes item icons and labels through Menu.Item children instead of an icon prop.
  • Adds a color prop supporting neutral and negative, with neutral as the default.
import { Icon } from '@clerk/ui/mosaic/components/icon';
import { Menu } from '@clerk/ui/mosaic/components/menu';

<Menu.Root>
  <Menu.Trigger />
  <Menu.Content>
    <Menu.Item label='Add workspace'>
      <Icon name='plus' />
      Add workspace
    </Menu.Item>
    <Menu.Item
      label='Sign out'
      onClick={signOut}
    >
      <Icon name='log-out' />
      Sign out
    </Menu.Item>
    <Menu.Item
      label='Delete user'
      color='negative'
      onClick={deleteUser}
    >
      <Icon name='close' />
      Delete user
    </Menu.Item>
  </Menu.Content>
</Menu.Root>;
Mosaic Menu example

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

@changeset-bot

changeset-bot Bot commented Jul 30, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 6ed1076

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 0 packages

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel

vercel Bot commented Jul 30, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
clerk-js-sandbox Ready Ready Preview Jul 30, 2026 6:31pm
swingset Ready Ready Preview Jul 30, 2026 6:31pm

Request Review

@alexcarpenter alexcarpenter left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no changeset needed as this is not public facing atm. so we can just do an empty changeset for now.

Comment thread .changeset/tidy-menus-wave.md Outdated
@austincalvelage
austincalvelage merged commit 5f341d8 into carp/mosaic-menu Jul 30, 2026
11 checks passed
@austincalvelage
austincalvelage deleted the austin/mosaic-menu-updates branch July 30, 2026 18:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants