From aa5b1d5569ddab6ad49e32ea4c80573f896ac91b Mon Sep 17 00:00:00 2001 From: Waleed Date: Thu, 9 Jul 2026 15:55:58 -0700 Subject: [PATCH] fix(suggested-actions): swap unaudited filled icons for EMCN outline set (#5548) * fix(suggested-actions): swap unaudited filled icons for EMCN outline set Suggested-action template icons on the home page mixed filled/solid icons in with the app's outline icon convention. Swapped them for consistent outline icons and removed the unused filled Card icon. - gmail.ts: Card -> ClipboardList - clickhouse.ts, sftp.ts: Trash -> TrashOutline - ssh.ts: TerminalWindow (emcn) -> SshTerminalIcon (moved to components/icons.tsx alongside the other block/brand icons) - deleted unused packages/emcn/src/icons/card.tsx - regenerated docs * fix(docs): revert jira.mdx regen regression generate-docs.ts is dropping the Configuration and generic-webhook Output tables for Jira triggers even though the trigger schemas still define those fields (caught by Greptile review). Unrelated to the icon changes in this PR, so reverting jira.mdx to its prior content rather than debugging the generator here. * fix(build): remove last Card icon consumer in playground gallery apps/sim/app/playground/page.tsx imported Card from the top-level @sim/emcn barrel for the icon showcase grid, which I missed when auditing @sim/emcn/icons consumers. Broke the production build after card.tsx was deleted. Removed the import and its gallery entry. Verified with a local `bun run build`. --- apps/docs/components/icons.tsx | 77 +++++++++++++++++++ .../content/docs/en/integrations/ashby.mdx | 9 ++- .../content/docs/en/integrations/gitlab.mdx | 4 +- .../content/docs/en/integrations/gmail.mdx | 2 +- apps/sim/app/playground/page.tsx | 2 - apps/sim/blocks/blocks/clickhouse.ts | 13 +++- apps/sim/blocks/blocks/gmail.ts | 4 +- apps/sim/blocks/blocks/sftp.ts | 12 ++- apps/sim/blocks/blocks/ssh.ts | 14 +--- apps/sim/components/icons.tsx | 21 +++++ apps/sim/lib/integrations/integrations.json | 7 +- packages/emcn/src/icons/card.tsx | 26 ------- packages/emcn/src/icons/index.ts | 1 - 13 files changed, 140 insertions(+), 52 deletions(-) delete mode 100644 packages/emcn/src/icons/card.tsx diff --git a/apps/docs/components/icons.tsx b/apps/docs/components/icons.tsx index c213134b0e..fe869a5b77 100644 --- a/apps/docs/components/icons.tsx +++ b/apps/docs/components/icons.tsx @@ -3687,6 +3687,62 @@ export const SakanaIcon = (props: SVGProps) => ( ) +export function MetaIcon(props: SVGProps) { + const id = useId() + const gradient1Id = `meta_gradient_1_${id}` + const gradient2Id = `meta_gradient_2_${id}` + + return ( + + Meta + + + + + + + + + + + + + + + + + ) +} + export function GeminiIcon(props: SVGProps) { const id = useId() const gradientId = `gemini_gradient_${id}` @@ -5572,6 +5628,27 @@ export function SshIcon(props: SVGProps) { ) } +export function SshTerminalIcon(props: SVGProps) { + return ( + + + + + + + ) +} + export function SftpIcon(props: SVGProps) { return ( ) { ) } +export function SshTerminalIcon(props: SVGProps) { + return ( + + + + + + + ) +} + export function SftpIcon(props: SVGProps) { return ( ) { - return ( - - ) -} diff --git a/packages/emcn/src/icons/index.ts b/packages/emcn/src/icons/index.ts index 1af0459200..6cf6d1bbf2 100644 --- a/packages/emcn/src/icons/index.ts +++ b/packages/emcn/src/icons/index.ts @@ -12,7 +12,6 @@ export { BubbleChatDelay } from './bubble-chat-delay' export { BubbleChatPreview } from './bubble-chat-preview' export { Bug } from './bug' export { Calendar } from './calendar' -export { Card } from './card' export { Check } from './check' export { ChevronDown } from './chevron-down' export { CircleAlert } from './circle-alert'