diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx
index 244442d97..b56fe3499 100644
--- a/desktop/plugins/public/ui-debugger/components/Tree.tsx
+++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx
@@ -332,6 +332,11 @@ function HighlightedText(props: {text: string}) {
function nodeIcon(node: UINode) {
if (node.tags.includes('Litho')) {
return ;
+ } else if (node.tags.includes('CK')) {
+ if (node.tags.includes('iOS')) {
+ return ;
+ }
+ return ;
}
}
diff --git a/desktop/plugins/public/ui-debugger/types.tsx b/desktop/plugins/public/ui-debugger/types.tsx
index 3dd076e5c..ca9128c1e 100644
--- a/desktop/plugins/public/ui-debugger/types.tsx
+++ b/desktop/plugins/public/ui-debugger/types.tsx
@@ -124,7 +124,7 @@ export type Id = number;
export type MetadataId = number;
export type TreeState = {expandedNodes: Id[]};
-export type Tag = 'Native' | 'Declarative' | 'Android' | 'Litho';
+export type Tag = 'Native' | 'Declarative' | 'Android' | 'Litho' | 'CK' | 'iOS';
export type Inspectable =
| InspectableObject
diff --git a/desktop/static/icons/ck-logo.png b/desktop/static/icons/ck-logo.png
new file mode 100644
index 000000000..fb7fda108
Binary files /dev/null and b/desktop/static/icons/ck-logo.png differ
diff --git a/desktop/static/icons/ck-mounted-logo.png b/desktop/static/icons/ck-mounted-logo.png
new file mode 100644
index 000000000..2409575f4
Binary files /dev/null and b/desktop/static/icons/ck-mounted-logo.png differ