diff --git a/images/dark/icon-unfold.svg b/images/dark/icon-unfold.svg
new file mode 100644
index 0000000..a7b1d66
--- /dev/null
+++ b/images/dark/icon-unfold.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/images/light/icon-unfold.svg b/images/light/icon-unfold.svg
new file mode 100644
index 0000000..963d56d
--- /dev/null
+++ b/images/light/icon-unfold.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/src/views/explorerNode.ts b/src/views/explorerNode.ts
index a89c02e..b720375 100644
--- a/src/views/explorerNode.ts
+++ b/src/views/explorerNode.ts
@@ -73,8 +73,8 @@ export class PagerNode extends ExplorerNode {
item.contextValue = this.resourceType;
item.command = this.getCommand();
item.iconPath = {
- dark: this.context.asAbsolutePath('images/dark/icon-sync.svg'),
- light: this.context.asAbsolutePath('images/light/icon-sync.svg')
+ dark: this.context.asAbsolutePath('images/dark/icon-unfold.svg'),
+ light: this.context.asAbsolutePath('images/light/icon-unfold.svg')
};
return item;
}