diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/panel.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/panel.tsx index 301614bd007..953902ec069 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/panel.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/panel.tsx @@ -693,7 +693,7 @@ export const Panel = memo(function Panel() { diff --git a/apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx b/apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx index ee944c23228..0b0515f5b59 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/components/sidebar/sidebar.tsx @@ -271,7 +271,7 @@ const SidebarChatItem = memo(function SidebarChatItem({ isMenuOpen && 'opacity-100' )} > - + )} @@ -1612,7 +1612,7 @@ export const Sidebar = memo(function Sidebar({ {isImporting || isCreatingFolder ? ( ) : ( - + )} diff --git a/packages/emcn/src/icons/more-horizontal.tsx b/packages/emcn/src/icons/more-horizontal.tsx index 505c0ef01d2..0f513b96d2c 100644 --- a/packages/emcn/src/icons/more-horizontal.tsx +++ b/packages/emcn/src/icons/more-horizontal.tsx @@ -2,31 +2,32 @@ import type { SVGProps } from 'react' /** * MoreHorizontal icon component (three horizontal dots) + * + * The exact transpose of {@link MoreVertical} about (10.25, 9.75) — same radius, + * same stroke, same 6-unit spacing. The two are the same glyph rotated 90deg and + * appear in the same overflow-menu role, so they must match by construction + * rather than by coincidence. + * * @param props - SVG properties including className, fill, etc. */ export function MoreHorizontal(props: SVGProps) { return ( ) } diff --git a/packages/emcn/src/icons/terminal-window.tsx b/packages/emcn/src/icons/terminal-window.tsx index 9eb411955a6..fa2cd63ad26 100644 --- a/packages/emcn/src/icons/terminal-window.tsx +++ b/packages/emcn/src/icons/terminal-window.tsx @@ -2,26 +2,33 @@ import type { SVGProps } from 'react' /** * Terminal window icon component + * + * Redrawn on the house geometry (24-box, 1.55 stroke, round joins) so it sits at + * the weight of the icons it shares the resource registry tab strip with. The + * original character is kept: a window with a title bar and three chrome dots. + * * @param props - SVG properties including className, fill, etc. */ export function TerminalWindow(props: SVGProps) { return ( ) }