diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx index 687b9d94eb1..3dbfa1b9218 100644 --- a/desktop/plugins/public/ui-debugger/components/Tree.tsx +++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx @@ -461,7 +461,9 @@ function HighlightedText(props: {text: string}) { } function nodeIcon(node: UINode) { - if (node.tags.includes('Litho')) { + if (node.tags.includes('LithoMountable')) { + return ; + } else if (node.tags.includes('Litho')) { return ; } else if (node.tags.includes('CK')) { if (node.tags.includes('iOS')) { diff --git a/desktop/plugins/public/ui-debugger/types.tsx b/desktop/plugins/public/ui-debugger/types.tsx index 56ddf5be149..3b814b41ef8 100644 --- a/desktop/plugins/public/ui-debugger/types.tsx +++ b/desktop/plugins/public/ui-debugger/types.tsx @@ -221,6 +221,7 @@ export type Tag = | 'Declarative' | 'Android' | 'Litho' + | 'LithoMountable' | 'CK' | 'iOS' | 'BloksBoundTree' diff --git a/desktop/static/icons/litho-logo-blue.png b/desktop/static/icons/litho-logo-blue.png new file mode 100644 index 00000000000..9fb7034e197 Binary files /dev/null and b/desktop/static/icons/litho-logo-blue.png differ